diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..3729ff0 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,25 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2e3d6fd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,37 @@ +#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. + +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-bionic AS base +WORKDIR /app +EXPOSE 80 +EXPOSE 443 + +FROM mcr.microsoft.com/dotnet/core/sdk:3.1-bionic AS build +WORKDIR /src + +COPY ["squirrowse.web/squirrowse.web.csproj", "squirrowse.web/"] +COPY ["squirrowse.core/squirrowse.core.csproj", "squirrowse.core/"] +COPY ["squirrowse.db/squirrowse.db.csproj", "squirrowse.db/"] +COPY ["squirrowse.web/NuGet.Config", "squirrowse.core/"] +COPY ["squirrowse.web/NuGet.Config", "squirrowse.web/"] +COPY ["squirrowse.web/NuGet.Config", "squirrowse.db/"] +COPY . . +RUN dotnet restore "squirrowse.web/squirrowse.web.csproj" --configfile ./NuGet.Config + +WORKDIR "/src/squirrowse.web" +RUN dotnet build "squirrowse.web.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "squirrowse.web.csproj" -c Release -o /app/publish + +FROM base AS final +RUN apt-get update +RUN apt-get install -y libgtk2.0-dev +RUN apt-get -y update +RUN apt-get -y install wget unzip build-essential checkinstall cmake pkg-config yasm git gfortran libjpeg8-dev libpng-dev software-properties-common +RUN add-apt-repository "deb http://security.ubuntu.com/ubuntu xenial-security main" +RUN apt-get -y update && apt -y install libjasper1 libtiff-dev libavcodec-dev libavformat-dev libswscale-dev libdc1394-22-dev libxine2-dev libv4l-dev +RUN apt-get -y install libgtk2.0-dev libtbb-dev libatlas-base-dev libvorbis-dev libxvidcore-dev libopencore-amrnb-dev libopencore-amrwb-dev libavresample-dev x264 v4l-utils libwebp-dev tesseract-ocr libtesseract-dev libleptonica-dev + +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "squirrowse.web.dll"] \ No newline at end of file diff --git a/NuGet.Config b/NuGet.Config new file mode 100644 index 0000000..fc6d06e --- /dev/null +++ b/NuGet.Config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/squirrowse.client/Connection.cs b/squirrowse.client/Connection.cs new file mode 100644 index 0000000..16d51bd --- /dev/null +++ b/squirrowse.client/Connection.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Text; +using System.Threading.Tasks; +using Microsoft.AspNetCore.SignalR.Client; + +namespace squirrowse.client +{ + public class Connection + { + public string ip { get; set; } + private readonly Webcam _cam; + public Connection() + { + _cam = new Webcam(); + + + } + + + public async IAsyncEnumerable clientStreamData() + { + for (;;) + { + var data = _cam.GetBitmap(); + await Task.Delay(1000 / 33); + yield return data; + + } + //After the for loop has completed and the local function exits the stream completion will be sent. + } + + } +} diff --git a/squirrowse.client/ConnectionManager.cs b/squirrowse.client/ConnectionManager.cs new file mode 100644 index 0000000..3117012 --- /dev/null +++ b/squirrowse.client/ConnectionManager.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; +using Microsoft.AspNetCore.SignalR.Client; + +namespace squirrowse.client +{ + public class ConnectionManager : IConnectionManager + { + private readonly HubConnection _connection; + public bool Connected; + + public ConnectionManager(string url, int port) + { + _connection = new HubConnectionBuilder() + .WithUrl($"{url}:{port}/hub") + .WithAutomaticReconnect() + .Build(); + } + + public async Task GetConnection() + { + if (Connected) return _connection; + + throw new Exception(); + } + + public async Task InitConnection() + { + if (_connection.State == HubConnectionState.Connected) return; + await _connection.StartAsync(); + Connected = true; + } + + public async Task Disconnect() + { + if (_connection.State == HubConnectionState.Disconnected) throw new Exception(); + await _connection.StopAsync(); + Connected = false; + } + + public bool IsConnected() + { + return Connected; + } + } + + public interface IConnectionManager + { + Task GetConnection(); + Task InitConnection(); + Task Disconnect(); + + bool IsConnected(); + } +} diff --git a/squirrowse.client/Program.cs b/squirrowse.client/Program.cs new file mode 100644 index 0000000..75ce340 --- /dev/null +++ b/squirrowse.client/Program.cs @@ -0,0 +1,24 @@ +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +namespace squirrowse.client +{ + class Program + { + public static void Main(string[] args) + { + CreateHostBuilder(args).Build().Run(); + } + + public static IHostBuilder CreateHostBuilder(string[] args) + { + return Host.CreateDefaultBuilder(args) + .ConfigureServices((hostContext, services) => + { + services.AddHostedService(); + services.AddSingleton(x => + new ConnectionManager("http://squirrowse.azurewebsites.net", 80)); //keep as transient for now + }); + } + + } +} diff --git a/squirrowse.client/WebCam.cs b/squirrowse.client/WebCam.cs new file mode 100644 index 0000000..8e41837 --- /dev/null +++ b/squirrowse.client/WebCam.cs @@ -0,0 +1,82 @@ +using System; +using System.Drawing; +using System.Threading; +using OpenCvSharp; +using OpenCvSharp.Extensions; + +namespace squirrowse.client +{ + public class Webcam + { + private static VideoCapture capture; + private static Mat frame; + private static Byte[] image; + private static Thread camera; + private static bool isCameraRunning; + private readonly bool imagetakinginprogress = false; + + public Webcam(bool AutoActivate = true) + { + if (AutoActivate) Initalize(); + } + + public void Initalize() + { + CaptureCamera(); + isCameraRunning = true; + } + + private void CaptureCamera() + { + camera = new Thread(CaptureCameraCallback); + camera.Start(); + } + + private void CaptureCameraCallback() + { + Thread.Sleep(1); + if (!isCameraRunning) return; + frame = new Mat(); + capture = new VideoCapture(0); + capture.Open(0); + if (!capture.IsOpened()) return; + while (isCameraRunning) + { + capture.Read(frame); + image = frame.ToBytes(); + } + } + + public byte[] GetBitmap() + { + if (!isCameraRunning) throw new Exception("Cannot take picutre if the camera is not initalized!"); + while (imagetakinginprogress) + { + } + + try + { + return image; + } + catch + { + return image; + } + + } + + public void Deinitialize() + { + camera.Abort(); + capture.Release(); + isCameraRunning = false; + } + + ~Webcam() + { + Deinitialize(); + capture.Dispose(); + frame.Dispose(); + } + } +} \ No newline at end of file diff --git a/squirrowse.client/Worker.cs b/squirrowse.client/Worker.cs new file mode 100644 index 0000000..d236911 --- /dev/null +++ b/squirrowse.client/Worker.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.AspNetCore.SignalR.Client; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; + +namespace squirrowse.client +{ + public class Worker : IHostedService + { + private readonly ILogger logger; + private readonly IConnectionManager _connectionManager; + private Connection con =new Connection(); + public Worker(ILogger logger, IConnectionManager connectionManager) + { + this.logger = logger; + _connectionManager = connectionManager; + + } + + public async Task StartAsync(CancellationToken cancellationToken) + { + await _connectionManager.InitConnection(); + + //var d = _connectionManager.GetConnection(); + if (_connectionManager.IsConnected()) + { + var d =await _connectionManager.GetConnection(); + await d.SendAsync("UploadStream", con.clientStreamData()); + } + } + + public async Task StopAsync(CancellationToken cancellationToken) + { + await _connectionManager.Disconnect(); + } + } +} diff --git a/squirrowse.client/squirrowse.client.csproj b/squirrowse.client/squirrowse.client.csproj new file mode 100644 index 0000000..f623ecc --- /dev/null +++ b/squirrowse.client/squirrowse.client.csproj @@ -0,0 +1,16 @@ + + + + Exe + netcoreapp3.1 + + + + + + + + + + + diff --git a/squirrowse.core/Common/ConcurentFixedSizeQueue.cs b/squirrowse.core/Common/ConcurentFixedSizeQueue.cs new file mode 100644 index 0000000..5fd8b9d --- /dev/null +++ b/squirrowse.core/Common/ConcurentFixedSizeQueue.cs @@ -0,0 +1,101 @@ +using System; +using System.Collections; +using System.Collections.Concurrent; +using System.Collections.Generic; + +namespace squirrowse.web.Common +{ + public class ConcurrentFixedSizeQueue : IProducerConsumerCollection, IReadOnlyCollection, ICollection + { + private readonly ConcurrentQueue m_concurrentQueue; + private readonly int m_maxSize; + + public ConcurrentFixedSizeQueue(int maxSize) : this(Array.Empty(), maxSize) + { + } + + public ConcurrentFixedSizeQueue(IEnumerable initialCollection, int maxSize) + { + if (initialCollection == null) throw new ArgumentNullException(nameof(initialCollection)); + + m_concurrentQueue = new ConcurrentQueue(initialCollection); + m_maxSize = maxSize; + } + + public bool IsEmpty => m_concurrentQueue.IsEmpty; + + public int Count => m_concurrentQueue.Count; + + public void CopyTo(T[] array, int index) + { + m_concurrentQueue.CopyTo(array, index); + } + + public T[] ToArray() + { + return m_concurrentQueue.ToArray(); + } + + public IEnumerator GetEnumerator() + { + return m_concurrentQueue.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + + // Explicit ICollection implementations. + void ICollection.CopyTo(Array array, int index) + { + ((ICollection) m_concurrentQueue).CopyTo(array, index); + } + + object ICollection.SyncRoot => ((ICollection) m_concurrentQueue).SyncRoot; + bool ICollection.IsSynchronized => ((ICollection) m_concurrentQueue).IsSynchronized; + + // Explicit IProducerConsumerCollection implementations. + bool IProducerConsumerCollection.TryAdd(T item) + { + return ((IProducerConsumerCollection) m_concurrentQueue).TryAdd(item); + } + + bool IProducerConsumerCollection.TryTake(out T item) + { + return ((IProducerConsumerCollection) m_concurrentQueue).TryTake(out item); + } + + public void Enqueue(T item) + { + m_concurrentQueue.Enqueue(item); + + if (m_concurrentQueue.Count > m_maxSize) m_concurrentQueue.TryDequeue(out var result); + } + + public void TryPeek(out T result) + { + m_concurrentQueue.TryPeek(out result); + } + + public bool TryDequeue(out T result) + { + return m_concurrentQueue.TryDequeue(out result); + } + + public override int GetHashCode() + { + return m_concurrentQueue.GetHashCode(); + } + + public override bool Equals(object obj) + { + return m_concurrentQueue.Equals(obj); + } + + public override string ToString() + { + return m_concurrentQueue.ToString(); + } + } +} \ No newline at end of file diff --git a/squirrowse.core/Frame.cs b/squirrowse.core/Frame.cs new file mode 100644 index 0000000..09a084b --- /dev/null +++ b/squirrowse.core/Frame.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using LiteDB; +using Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models; +using OpenCvSharp; + +namespace squirrowse.core +{ + public class Frame + { + public Frame() + { + } + + public Frame(Mat frameMat, IList objects, Uri src) + { + FrameMat = frameMat; + Objects = objects; + ImgSrc = src; + } + + [BsonIgnore] public Mat FrameMat { get; set; } + + public IList Objects { get; set; } + + public Uri ImgSrc { get; set; } + + public Mat CopyMat(Mat xd) + { + var xd2 = new Mat(); + xd.CopyTo(xd2); + return xd2; + } + } +} \ No newline at end of file diff --git a/squirrowse.core/squirrowse.core.csproj b/squirrowse.core/squirrowse.core.csproj new file mode 100644 index 0000000..ab3c922 --- /dev/null +++ b/squirrowse.core/squirrowse.core.csproj @@ -0,0 +1,14 @@ + + + + netstandard2.0 + + + + + + + + + + \ No newline at end of file diff --git a/squirrowse.db/Bloob.cs b/squirrowse.db/Bloob.cs new file mode 100644 index 0000000..78cfdbf --- /dev/null +++ b/squirrowse.db/Bloob.cs @@ -0,0 +1,32 @@ +using System; +using Azure.Storage.Blobs; + +namespace squirrowse.db +{ + public class Bloob + { + private readonly BlobServiceClient _blobServiceClient; + + public BlobContainerClient Container; + + public Bloob() + { + _blobServiceClient = + new BlobServiceClient( + "DefaultEndpointsProtocol=https;AccountName=squirrowse;AccountKey=34EmEpHYAoCybkXwq365I+5Vd4+zoqGfakTBj/1+rh3Ef9vng386JpgbAc5BKGuoTlNdDnMEyX9K4q73j5qlaQ==;EndpointSuffix=core.windows.net"); + Container = CreateImgBloob("squirrowseimg"); + } + + private BlobContainerClient CreateImgBloob(string name) + { + try + { + return _blobServiceClient.CreateBlobContainer(name); + } + catch (Exception) + { + return _blobServiceClient.GetBlobContainerClient(name); + } + } + } +} \ No newline at end of file diff --git a/squirrowse.db/DbContext.cs b/squirrowse.db/DbContext.cs new file mode 100644 index 0000000..38b13d4 --- /dev/null +++ b/squirrowse.db/DbContext.cs @@ -0,0 +1,32 @@ +using LiteDB; +using Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models; +using squirrowse.core; + +namespace squirrowse.db +{ + public class DbContext + { + private readonly LiteDatabase _context; + + public DbContext() + { + //BsonMapper.Global.Entity().DbRef(x => x.Objects); + //BsonMapper.Global.Entity().DbRef(x => x.ObjectProperty); + _context = new LiteDatabase("db.db"); + _context.GetCollection(); + _context.GetCollection(); + _context.GetCollection(); + + + BsonMapper.Global.IncludeFields = true; + using (GetRepository) + { + GetRepository = _context; + } + } + + public ILiteCollection GetFrameCollection => _context.GetCollection(); + + public LiteDatabase GetRepository { get; } + } +} \ No newline at end of file diff --git a/squirrowse.db/squirrowse.db.csproj b/squirrowse.db/squirrowse.db.csproj new file mode 100644 index 0000000..8ffcb57 --- /dev/null +++ b/squirrowse.db/squirrowse.db.csproj @@ -0,0 +1,16 @@ + + + + netcoreapp3.1 + + + + + + + + + + + + diff --git a/squirrowse.sln b/squirrowse.sln new file mode 100644 index 0000000..65ccb28 --- /dev/null +++ b/squirrowse.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29806.167 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "squirrowse.web", "squirrowse.web\squirrowse.web.csproj", "{8A3C08CE-2DB6-4339-9A72-6EB58AD2300F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "squirrowse.db", "squirrowse.db\squirrowse.db.csproj", "{322D1CFC-AEC6-4C8A-9561-8CB25F3C8A4F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "squirrowse.core", "squirrowse.core\squirrowse.core.csproj", "{0C908BE8-729C-4DCA-92DE-07FB7346EBB7}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "squirrowse.client", "squirrowse.client\squirrowse.client.csproj", "{89E3C9E7-94E5-4976-97C0-0703F6C9DF49}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8A3C08CE-2DB6-4339-9A72-6EB58AD2300F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8A3C08CE-2DB6-4339-9A72-6EB58AD2300F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8A3C08CE-2DB6-4339-9A72-6EB58AD2300F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8A3C08CE-2DB6-4339-9A72-6EB58AD2300F}.Release|Any CPU.Build.0 = Release|Any CPU + {322D1CFC-AEC6-4C8A-9561-8CB25F3C8A4F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {322D1CFC-AEC6-4C8A-9561-8CB25F3C8A4F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {322D1CFC-AEC6-4C8A-9561-8CB25F3C8A4F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {322D1CFC-AEC6-4C8A-9561-8CB25F3C8A4F}.Release|Any CPU.Build.0 = Release|Any CPU + {0C908BE8-729C-4DCA-92DE-07FB7346EBB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0C908BE8-729C-4DCA-92DE-07FB7346EBB7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0C908BE8-729C-4DCA-92DE-07FB7346EBB7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0C908BE8-729C-4DCA-92DE-07FB7346EBB7}.Release|Any CPU.Build.0 = Release|Any CPU + {89E3C9E7-94E5-4976-97C0-0703F6C9DF49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {89E3C9E7-94E5-4976-97C0-0703F6C9DF49}.Debug|Any CPU.Build.0 = Debug|Any CPU + {89E3C9E7-94E5-4976-97C0-0703F6C9DF49}.Release|Any CPU.ActiveCfg = Release|Any CPU + {89E3C9E7-94E5-4976-97C0-0703F6C9DF49}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8CE6F2C5-E801-4DB6-8A77-7CA7DB88E070} + EndGlobalSection +EndGlobal diff --git a/squirrowse.web/.config/dotnet-tools.json b/squirrowse.web/.config/dotnet-tools.json new file mode 100644 index 0000000..f2de671 --- /dev/null +++ b/squirrowse.web/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "3.1.1", + "commands": [ + "dotnet-ef" + ] + } + } +} \ No newline at end of file diff --git a/squirrowse.web/App.razor b/squirrowse.web/App.razor new file mode 100644 index 0000000..4d637a8 --- /dev/null +++ b/squirrowse.web/App.razor @@ -0,0 +1,10 @@ + + + + + + +

Sorry, there's nothing at this address.

+
+
+
\ No newline at end of file diff --git a/squirrowse.web/ClientHub.cs b/squirrowse.web/ClientHub.cs new file mode 100644 index 0000000..0c1d44a --- /dev/null +++ b/squirrowse.web/ClientHub.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Threading.Tasks; +using Microsoft.AspNetCore.SignalR; +using squirrowse.web.Data; + +namespace squirrowse.web +{ + public class ClientHub : Hub + { + private readonly VideoQ q; + + public ClientHub(VideoQ q) + { + this.q = q; + } + public async Task UploadStream(IAsyncEnumerable stream) + { + await foreach (var frame in stream) + { + q._framebuffer.Enqueue(frame); + } + } + } +} \ No newline at end of file diff --git a/squirrowse.web/Cognitive/AzureCV.cs b/squirrowse.web/Cognitive/AzureCV.cs new file mode 100644 index 0000000..6766651 --- /dev/null +++ b/squirrowse.web/Cognitive/AzureCV.cs @@ -0,0 +1,64 @@ +using System; +using System.Threading.Tasks; +using Azure.Storage.Blobs.Models; +using Microsoft.Azure.CognitiveServices.Vision.ComputerVision; +using Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models; +using OpenCvSharp; +using squirrowse.core; +using squirrowse.db; + +namespace squirrowse.web.Cognitive +{ + public class AzureCV : IAzureCV + { + private readonly Bloob _blob; + private readonly ComputerVisionClient _client; + private readonly DbContext _db; + + public AzureCV(DbContext db, Bloob blob) + { + _blob = blob; + _db = db; + _client = new ComputerVisionClient(new ApiKeyServiceClientCredentials("64b5ed98d11d41b395e270424088ec83")) + { + Endpoint = + "https://squirrowse.cognitiveservices.azure.com/" + }; + } + + public async Task GetObjects(Mat frame) + { + var response = await _client.DetectObjectsInStreamAsync(frame.ToMemoryStream()); + var blobref = + _blob.Container.GetBlobClient( + $"{DateTime.Now.ToShortDateString()}-{DateTime.Now.ToLongTimeString()}.png"); + + await blobref.UploadAsync(frame.ToMemoryStream(), new BlobHttpHeaders {ContentType = "image/png"}); + + var t = new Frame(frame, response.Objects, blobref.Uri); + _db.GetFrameCollection.Insert(t); + return response; + } + + public Task DrawResults(Mat frame, DetectResult results) + { + foreach (var result in results.Objects) + { + Cv2.PutText(frame, result.ObjectProperty.ToUpper(), + new Point(result.Rectangle.X, result.Rectangle.Y + result.Rectangle.H * 0.9), + HersheyFonts.HersheyComplex, 0.9f, Scalar.Yellow); + + frame.Rectangle( + new Rect(result.Rectangle.X, result.Rectangle.Y, result.Rectangle.W, result.Rectangle.H), + Scalar.White, 2); + } + + return Task.FromResult(frame); + } + + public async Task GetDescription(Mat frame) + { + return await _client.DescribeImageInStreamAsync(frame.ToMemoryStream()); + } + } +} \ No newline at end of file diff --git a/squirrowse.web/Cognitive/IAzureCV.cs b/squirrowse.web/Cognitive/IAzureCV.cs new file mode 100644 index 0000000..ee6878d --- /dev/null +++ b/squirrowse.web/Cognitive/IAzureCV.cs @@ -0,0 +1,12 @@ +using System.Threading.Tasks; +using Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models; +using OpenCvSharp; + +namespace squirrowse.web.Cognitive +{ + public interface IAzureCV + { + Task GetObjects(Mat frame); + Task DrawResults(Mat frame, DetectResult result); + } +} \ No newline at end of file diff --git a/squirrowse.web/Data/Detection.cs b/squirrowse.web/Data/Detection.cs new file mode 100644 index 0000000..7033b97 --- /dev/null +++ b/squirrowse.web/Data/Detection.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using OpenCvSharp; + +namespace squirrowse.web.Data +{ + public class Filters + { + public Filters(bool face, bool lowerBody, bool upperBody) + { + Face = face; + LowerBody = lowerBody; + UpperBody = upperBody; + } + + public bool Face { get; set; } + public bool LowerBody { get; set; } + public bool UpperBody { get; set; } + } + + public class Detection : IDetection + { + private readonly CascadeClassifier CascadeFace = new CascadeClassifier( + @".\StaticFiles\haarcascade_frontalface_alt.xml"); + + private readonly CascadeClassifier CascadeLowerBody = new CascadeClassifier( + @".\StaticFiles\haarcascade_lowerbody.xml"); + + private readonly CascadeClassifier CascadeUpperBody = new CascadeClassifier( + @".\StaticFiles\haarcascade_upperbody.xml"); + + public Mat DetectTypes(Mat frame, Filters filter) + { + if (frame == null || frame.IsDisposed || frame.Empty()) return new Mat(); + var grayImage = new Mat(); + Cv2.CvtColor(frame, grayImage, ColorConversionCodes.BGRA2GRAY); + Cv2.EqualizeHist(grayImage, grayImage); + var listtodraw = new List(); + var rnd = new Random(); + var color = Scalar.FromRgb(rnd.Next(200, 255), rnd.Next(200, 255), rnd.Next(200, 255)); + if (filter.Face) listtodraw.AddRange(FaceDetection(frame)); + if (filter.LowerBody) listtodraw.AddRange(LowerBodyDetect(frame)); + if (filter.UpperBody) listtodraw.AddRange(UpperBodyDetect(frame)); + foreach (var faceRect in listtodraw) + { + var detectedFaceImage = new Mat(frame, faceRect); + + //yield return faceRect; + + Cv2.Rectangle(frame, faceRect, color, 3); + + + var detectedFaceGrayImage = new Mat(); + Cv2.CvtColor(detectedFaceImage, detectedFaceGrayImage, ColorConversionCodes.BGRA2GRAY); + } + + return frame; + } + + public IEnumerable FaceDetection(Mat frame) + { + var faces = CascadeFace.DetectMultiScale( + frame, + 1.1, + 2, + HaarDetectionType.DoRoughSearch | HaarDetectionType.ScaleImage, + new Size(30, 30) + ); + foreach (var faceRect in faces) yield return faceRect; + } + + public IEnumerable UpperBodyDetect(Mat frame) + { + var faces = CascadeUpperBody.DetectMultiScale( + frame, + 1.1, + 3, + HaarDetectionType.DoRoughSearch | HaarDetectionType.ScaleImage, + new Size(30, 30)); + + foreach (var faceRect in faces) yield return faceRect; + } + + public IEnumerable LowerBodyDetect(Mat frame) + { + var faces = CascadeLowerBody.DetectMultiScale( + frame, + 1.1, + 3, + HaarDetectionType.DoRoughSearch | HaarDetectionType.ScaleImage, + new Size(30, 30)); + + foreach (var faceRect in faces) yield return faceRect; + } + } +} \ No newline at end of file diff --git a/squirrowse.web/Data/GaleryService.cs b/squirrowse.web/Data/GaleryService.cs new file mode 100644 index 0000000..8974394 --- /dev/null +++ b/squirrowse.web/Data/GaleryService.cs @@ -0,0 +1,75 @@ +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using LiteDB; +using squirrowse.core; +using squirrowse.db; + +namespace squirrowse.web.Data +{ + public class GaleryService + { + private readonly LiteDatabase db; + + public GaleryService(DbContext db) + { + this.db = db.GetRepository; + } + + public async Task> tags() + { + var tlist = new List(); + // using var db = new LiteDatabase("db.db"); + var t = db.GetCollection(); + + foreach (var frame in t.FindAll().Where(x => x.Objects != null)) + { + var te = frame.Objects.Select(x => x.ObjectProperty).Distinct(); + tlist.AddRange(te); + } + + return tlist.Distinct().ToList(); + } + + public async Task>> galeryEntireView() + { + var tags = await this.tags(); + // using var db = new LiteDatabase("db.db"); + var t = db.GetCollection(); + var d = new Dictionary>(); + + foreach (var tag in tags) + { + var t1 = t.Find(frame => frame.Objects != null); + var t2 = t1.Where(x => x.Objects.Any(y => y.ObjectProperty == tag)); + d.Add(tag, t2.ToList()); + } + + //var temp = t.Query().Select(x => x.Objects.Where().ToArray(); + + // t.Find(x => x.Objects.Any(y => y.ObjectProperty == tag)).ForEach(x => { d.Add(tag, x); }); + //d.Add(tag,temp); + return d; + } + + public async Task>> galerViewbyTag(List tags) + { + // using var db = new LiteDatabase("db.db"); + var t = db.GetCollection(); + var d = new Dictionary>(); + + foreach (var tag in tags) + { + var t1 = t.Find(frame => frame.Objects != null); + var t2 = t1.Where(x => x.Objects.Any(y => y.ObjectProperty == tag)); + d.Add(tag, t2.ToList()); + } + + //var temp = t.Query().Select(x => x.Objects.Where().ToArray(); + + // t.Find(x => x.Objects.Any(y => y.ObjectProperty == tag)).ForEach(x => { d.Add(tag, x); }); + //d.Add(tag,temp); + return d; + } + } +} \ No newline at end of file diff --git a/squirrowse.web/Data/IDetection.cs b/squirrowse.web/Data/IDetection.cs new file mode 100644 index 0000000..75f7d48 --- /dev/null +++ b/squirrowse.web/Data/IDetection.cs @@ -0,0 +1,13 @@ +using System.Collections.Generic; +using OpenCvSharp; + +namespace squirrowse.web.Data +{ + public interface IDetection + { + Mat DetectTypes(Mat frame, Filters filter); + IEnumerable FaceDetection(Mat frame); + IEnumerable UpperBodyDetect(Mat frame); + IEnumerable LowerBodyDetect(Mat frame); + } +} \ No newline at end of file diff --git a/squirrowse.web/Data/ISaveVideo.cs b/squirrowse.web/Data/ISaveVideo.cs new file mode 100644 index 0000000..3dff2cd --- /dev/null +++ b/squirrowse.web/Data/ISaveVideo.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace squirrowse.web.Data +{ + public interface ISaveVideo + { + Task SaveData(IAsyncEnumerable stream); + } +} \ No newline at end of file diff --git a/squirrowse.web/Data/SaveVideo.cs b/squirrowse.web/Data/SaveVideo.cs new file mode 100644 index 0000000..055d96a --- /dev/null +++ b/squirrowse.web/Data/SaveVideo.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using OpenCvSharp; + +namespace squirrowse.web.Data +{ + public class SaveVideo : ISaveVideo + { + public async Task SaveData(IAsyncEnumerable stream) + { + var videoname = DateTime.UtcNow.ToShortDateString(); + var output = new VideoWriter(videoname, FourCC.FromFourCCValues(FourCCValues.DIVX), 24.998, + new Size(640, 480)); + + await foreach (var b in stream) + { + await Task.Delay(1000 / 33); + output.Write(Cv2.ImDecode(b, ImreadModes.Unchanged)); + // await Task.Delay(1000 / 33); + } + } + } +} \ No newline at end of file diff --git a/squirrowse.web/Data/VideoQ.cs b/squirrowse.web/Data/VideoQ.cs new file mode 100644 index 0000000..c7229d0 --- /dev/null +++ b/squirrowse.web/Data/VideoQ.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using OpenCvSharp; +using squirrowse.web.Common; + +namespace squirrowse.web.Data +{ + public class VideoQ + { + public ConcurrentFixedSizeQueue _framebuffer = new ConcurrentFixedSizeQueue(255); + + public Mat getFrame() + { + _framebuffer.TryPeek(out byte[] t); + return Cv2.ImDecode(t, ImreadModes.Color); + } + + } +} diff --git a/squirrowse.web/NuGet.Config b/squirrowse.web/NuGet.Config new file mode 100644 index 0000000..fc6d06e --- /dev/null +++ b/squirrowse.web/NuGet.Config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/squirrowse.web/Pages/Client.razor b/squirrowse.web/Pages/Client.razor new file mode 100644 index 0000000..b51d847 --- /dev/null +++ b/squirrowse.web/Pages/Client.razor @@ -0,0 +1,112 @@ +@page "/client" +@using DevExpress.Blazor +@using OpenCvSharp +@using squirrowse.core +@using squirrowse.web.Cognitive +@using squirrowse.web.Common +@using squirrowse.web.Data + +

live

+ + + + + +
+ +
+
+
+
+
    +
  • + Fetch Data from azure +
  • + @*
  • + Face +
  • +
  • + Upper Body +
  • +
  • + Lower Body +
  • *@ +
+
+@inject SaveVideo save +@inject IAzureCV azureCv +@inject VideoQ Video + +@code { + // private readonly Filters filter = new Filters(false, false, false); + private string _imgSrc; + private string _tempcogni; + private byte[] buffer; + private bool fetchDataFromAzure = true; + + private readonly Frame Frametest = new Frame(); + + private Mat tempory = new Mat(); + + public Action Update(Action set) + { + return v => + { + set(v); + InvokeAsync(StateHasChanged); + }; + } + + protected override async Task OnInitializedAsync() + { + using var temp = new Mat(480, 640, MatType.CV_8UC3, new Scalar(0, 0, 100)); + + Cv2.PutText(temp, "No clients".ToUpper(), + new Point(240, 320), + HersheyFonts.HersheyComplex, 0.9f, Scalar.Yellow); + var base64T = Convert.ToBase64String(temp.ToBytes()); + + + while (true) + { + + try + { + using var frame = Video.getFrame(); + tempory = Frametest.CopyMat(frame); + // var face = detect.DetectTypes(frame, filter); + buffer = frame.ToBytes(); + var base64 = Convert.ToBase64String(buffer); + _imgSrc = $"data:image/gif;base64,{base64}"; + Cv2.WaitKey(1); + await Task.Delay(1000 / 33); + + StateHasChanged(); + } + catch (Exception e) + { + _imgSrc = $"data:image/gif;base64,{base64T}"; + await Task.Delay(1000 / 33); + + StateHasChanged(); + } + } + + } + + private async Task GetDataFromAzure() + { + while (fetchDataFromAzure) + { + var azrespons = await azureCv.GetObjects(tempory); + var azureFrame = azureCv.DrawResults(tempory, azrespons); + var b_tempcogni = Convert.ToBase64String(azureFrame.Result.ToBytes()); + _tempcogni = $"data:image/gif;base64,{b_tempcogni}"; + await Task.Delay(TimeSpan.FromSeconds(5)); + StateHasChanged(); + } + } + +} \ No newline at end of file diff --git a/squirrowse.web/Pages/Error.razor b/squirrowse.web/Pages/Error.razor new file mode 100644 index 0000000..79929d7 --- /dev/null +++ b/squirrowse.web/Pages/Error.razor @@ -0,0 +1,16 @@ +@page "/error" + + +

Error.

+

An error occurred while processing your request.

+ +

Development Mode

+

+ Swapping to Development environment will display more detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

\ No newline at end of file diff --git a/squirrowse.web/Pages/Galery.razor b/squirrowse.web/Pages/Galery.razor new file mode 100644 index 0000000..41b44b2 --- /dev/null +++ b/squirrowse.web/Pages/Galery.razor @@ -0,0 +1,114 @@ +@page "/galery" +@using LiteDB +@using squirrowse.core +@using squirrowse.web.Data +@inject IJSRuntime jsrun; +@inject GaleryService galery; +

Galery

+@* + + + + + + + + + + @foreach (var item in _frames.Keys) + { + + + @foreach (var t in _frames.GetValueOrDefault(item)) + { + + } + + + + + + + + + } + +
TagImg
@item + +
*@ + + + + @foreach (var item in _frames.Keys) + { + + } + + + + @foreach (var item in _frames.Keys) + { + + + + + } + +
+ +
+ +@code { + + private ILiteDatabase repo; + // private GaleryService _galery; + private List _tags; + private readonly Dictionary _tagsSwitch = new Dictionary(); + private Dictionary> _frames; + private bool Collapsed = true; + + protected override async Task OnInitializedAsync() + { + _tags = await galery.tags(); + foreach (var t in _tags) + { + _tagsSwitch.Add(t, true); + } + _frames = await galery.galeryEntireView(); + + + // StateHasChanged(); + } + + //public async Task Colapse() + //{ + // await jsrun.InvokeVoidAsync("colapseD"); + //} + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + await jsrun.InvokeVoidAsync("galeryJs"); + if (firstRender) + { + //_frames = null; + GC.Collect(); + } + } + + +} \ No newline at end of file diff --git a/squirrowse.web/Pages/Index.razor b/squirrowse.web/Pages/Index.razor new file mode 100644 index 0000000..19db2ea --- /dev/null +++ b/squirrowse.web/Pages/Index.razor @@ -0,0 +1,5 @@ +@page "/" + +

Hello, world!

+ +Welcome to aws. \ No newline at end of file diff --git a/squirrowse.web/Pages/_Host.cshtml b/squirrowse.web/Pages/_Host.cshtml new file mode 100644 index 0000000..8409015 --- /dev/null +++ b/squirrowse.web/Pages/_Host.cshtml @@ -0,0 +1,179 @@ +@page "/" +@namespace squirrowse.web.Pages +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@{ + Layout = null; +} + + + + + + + + squirrowse.web + + + + + + + + + + + + +
+ + An error has occurred. This application may no longer respond until reloaded. + + + An unhandled exception has occurred. See browser dev tools for details. + + Reload + 🗙 +
+ + + + + + \ No newline at end of file diff --git a/squirrowse.web/Program.cs b/squirrowse.web/Program.cs new file mode 100644 index 0000000..db9cdd7 --- /dev/null +++ b/squirrowse.web/Program.cs @@ -0,0 +1,19 @@ +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Hosting; + +namespace squirrowse.web +{ + public class Program + { + public static void Main(string[] args) + { + CreateHostBuilder(args).Build().Run(); + } + + public static IHostBuilder CreateHostBuilder(string[] args) + { + return Host.CreateDefaultBuilder(args) + .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup().UseUrls("http://0.0.0.0:5000"); }); + } + } +} diff --git a/squirrowse.web/Properties/launchSettings.json b/squirrowse.web/Properties/launchSettings.json new file mode 100644 index 0000000..98dd5eb --- /dev/null +++ b/squirrowse.web/Properties/launchSettings.json @@ -0,0 +1,35 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://10.230.115.112:80", + "sslPort": 443 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "squirrowse.web": { + "commandName": "Project", + "launchBrowser": true, + "useSSL": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://10.230.115.112:80" + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}", + "publishAllPorts": true, + "useSSL": true + } + } +} \ No newline at end of file diff --git a/squirrowse.web/Shared/MainLayout.razor b/squirrowse.web/Shared/MainLayout.razor new file mode 100644 index 0000000..d5a56e2 --- /dev/null +++ b/squirrowse.web/Shared/MainLayout.razor @@ -0,0 +1,15 @@ +@inherits LayoutComponentBase + + + +
+
+ About +
+ +
+ @Body +
+
\ No newline at end of file diff --git a/squirrowse.web/Shared/NavMenu.razor b/squirrowse.web/Shared/NavMenu.razor new file mode 100644 index 0000000..26c3df0 --- /dev/null +++ b/squirrowse.web/Shared/NavMenu.razor @@ -0,0 +1,38 @@ + + +
+ +
+ +@code { + private bool collapseNavMenu = true; + + private string NavMenuCssClass => collapseNavMenu ? "collapse" : null; + + private void ToggleNavMenu() + { + collapseNavMenu = !collapseNavMenu; + } + +} \ No newline at end of file diff --git a/squirrowse.web/Startup.DevExpress.cs b/squirrowse.web/Startup.DevExpress.cs new file mode 100644 index 0000000..b1e471d --- /dev/null +++ b/squirrowse.web/Startup.DevExpress.cs @@ -0,0 +1,27 @@ +//------------------------------------------------------------------------------ +// Generated by the DevExpress.Blazor package. +// To prevent this operation, add the DxExtendStartupHost property to the project and set this property to False. +// +// squirrowse.web.csproj: +// +// +// +// netcoreapp3.1 +// False +// +//------------------------------------------------------------------------------ +using System; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.AspNetCore.Hosting; + +[assembly: HostingStartup(typeof(squirrowse.web.DevExpressHostingStartup))] + +namespace squirrowse.web { + public partial class DevExpressHostingStartup : IHostingStartup { + void IHostingStartup.Configure(IWebHostBuilder builder) { + builder.ConfigureServices((serviceCollection) => { + serviceCollection.AddDevExpressBlazor(); + }); + } + } +} diff --git a/squirrowse.web/Startup.cs b/squirrowse.web/Startup.cs new file mode 100644 index 0000000..94ff952 --- /dev/null +++ b/squirrowse.web/Startup.cs @@ -0,0 +1,71 @@ +using System; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using squirrowse.db; +using squirrowse.web.Cognitive; +using squirrowse.web.Data; + +namespace squirrowse.web +{ + public class Startup + { + public Startup(IConfiguration configuration) + { + Configuration = configuration; + } + + public IConfiguration Configuration { get; } + + // This method gets called by the runtime. Use this method to add services to the container. + // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 + public void ConfigureServices(IServiceCollection services) + { + services.AddRazorPages(); + services.AddServerSideBlazor().AddHubOptions(x => + { + x.EnableDetailedErrors = true; + x.MaximumReceiveMessageSize = short.MaxValue; + }); + + services.AddSingleton(); + //services.AddSingleton(); + services.AddSingleton(); + services.AddSingleton(); + services.AddSingleton(); + services.AddSingleton(); + services.AddSingleton(); + services.AddSignalR(x => x.MaximumReceiveMessageSize = ((int)(int.MaxValue / 2))); + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) + { + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + else + { + app.UseExceptionHandler("/Error"); + // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. + app.UseHsts(); + } + + app.UsePathBase(new PathString("/extra")); + app.UseHttpsRedirection(); + app.UseStaticFiles(); + app.UseRouting(); + + app.UseEndpoints(endpoints => + { + endpoints.MapBlazorHub(); + endpoints.MapFallbackToPage("/_Host"); + endpoints.MapHub("hub"); + }); + } + } +} \ No newline at end of file diff --git a/squirrowse.web/StaticFiles/haarcascade_frontalface_alt.xml b/squirrowse.web/StaticFiles/haarcascade_frontalface_alt.xml new file mode 100644 index 0000000..fa190b4 --- /dev/null +++ b/squirrowse.web/StaticFiles/haarcascade_frontalface_alt.xml @@ -0,0 +1,39706 @@ + + + + + + BOOST + HAAR + 20 + 20 + + 213 + + + 0 + + 22 + + <_> + 3 + 8.2268941402435303e-01 + + <_> + + 0 -1 0 4.0141958743333817e-03 + + + 3.3794190734624863e-02 8.3781069517135620e-01 + + + <_> + + 0 -1 1 1.5151339583098888e-02 + + + 1.5141320228576660e-01 7.4888122081756592e-01 + + + <_> + + 0 -1 2 4.2109931819140911e-03 + + + 9.0049281716346741e-02 6.3748198747634888e-01 + + + + + <_> + 16 + 6.9566087722778320e+00 + + <_> + + 0 -1 3 1.6227109590545297e-03 + + + 6.9308586418628693e-02 7.1109461784362793e-01 + + + <_> + + 0 -1 4 2.2906649392098188e-03 + + + 1.7958030104637146e-01 6.6686922311782837e-01 + + + <_> + + 0 -1 5 5.0025708042085171e-03 + + + 1.6936729848384857e-01 6.5540069341659546e-01 + + + <_> + + 0 -1 6 7.9659894108772278e-03 + + + 5.8663320541381836e-01 9.1414518654346466e-02 + + + <_> + + 0 -1 7 -3.5227010957896709e-03 + + + 1.4131669700145721e-01 6.0318958759307861e-01 + + + <_> + + 0 -1 8 3.6667689681053162e-02 + + + 3.6756721138954163e-01 7.9203182458877563e-01 + + + <_> + + 0 -1 9 9.3361474573612213e-03 + + + 6.1613857746124268e-01 2.0885099470615387e-01 + + + <_> + + 0 -1 10 8.6961314082145691e-03 + + + 2.8362309932708740e-01 6.3602739572525024e-01 + + + <_> + + 0 -1 11 1.1488880263641477e-03 + + + 2.2235809266567230e-01 5.8007007837295532e-01 + + + <_> + + 0 -1 12 -2.1484689787030220e-03 + + + 2.4064640700817108e-01 5.7870548963546753e-01 + + + <_> + + 0 -1 13 2.1219060290604830e-03 + + + 5.5596548318862915e-01 1.3622370362281799e-01 + + + <_> + + 0 -1 14 -9.3949146568775177e-02 + + + 8.5027372837066650e-01 4.7177401185035706e-01 + + + <_> + + 0 -1 15 1.3777789426967502e-03 + + + 5.9936738014221191e-01 2.8345298767089844e-01 + + + <_> + + 0 -1 16 7.3063157498836517e-02 + + + 4.3418860435485840e-01 7.0600342750549316e-01 + + + <_> + + 0 -1 17 3.6767389974556863e-04 + + + 3.0278879404067993e-01 6.0515749454498291e-01 + + + <_> + + 0 -1 18 -6.0479710809886456e-03 + + + 1.7984339594841003e-01 5.6752568483352661e-01 + + + + + <_> + 21 + 9.4985427856445312e+00 + + <_> + + 0 -1 19 -1.6510689631104469e-02 + + + 6.6442251205444336e-01 1.4248579740524292e-01 + + + <_> + + 0 -1 20 2.7052499353885651e-03 + + + 6.3253521919250488e-01 1.2884770333766937e-01 + + + <_> + + 0 -1 21 2.8069869149476290e-03 + + + 1.2402880191802979e-01 6.1931931972503662e-01 + + + <_> + + 0 -1 22 -1.5402400167658925e-03 + + + 1.4321430027484894e-01 5.6700158119201660e-01 + + + <_> + + 0 -1 23 -5.6386279175058007e-04 + + + 1.6574330627918243e-01 5.9052079916000366e-01 + + + <_> + + 0 -1 24 1.9253729842603207e-03 + + + 2.6955071091651917e-01 5.7388240098953247e-01 + + + <_> + + 0 -1 25 -5.0214841030538082e-03 + + + 1.8935389816761017e-01 5.7827740907669067e-01 + + + <_> + + 0 -1 26 2.6365420781075954e-03 + + + 2.3093290627002716e-01 5.6954258680343628e-01 + + + <_> + + 0 -1 27 -1.5127769438549876e-03 + + + 2.7596020698547363e-01 5.9566420316696167e-01 + + + <_> + + 0 -1 28 -1.0157439857721329e-02 + + + 1.7325380444526672e-01 5.5220472812652588e-01 + + + <_> + + 0 -1 29 -1.1953660286962986e-02 + + + 1.3394099473953247e-01 5.5590140819549561e-01 + + + <_> + + 0 -1 30 4.8859491944313049e-03 + + + 3.6287039518356323e-01 6.1888492107391357e-01 + + + <_> + + 0 -1 31 -8.0132916569709778e-02 + + + 9.1211050748825073e-02 5.4759448766708374e-01 + + + <_> + + 0 -1 32 1.0643280111253262e-03 + + + 3.7151429057121277e-01 5.7113999128341675e-01 + + + <_> + + 0 -1 33 -1.3419450260698795e-03 + + + 5.9533137083053589e-01 3.3180978894233704e-01 + + + <_> + + 0 -1 34 -5.4601140320301056e-02 + + + 1.8440659344196320e-01 5.6028461456298828e-01 + + + <_> + + 0 -1 35 2.9071690514683723e-03 + + + 3.5942441225051880e-01 6.1317151784896851e-01 + + + <_> + + 0 -1 36 7.4718717951327562e-04 + + + 5.9943532943725586e-01 3.4595629572868347e-01 + + + <_> + + 0 -1 37 4.3013808317482471e-03 + + + 4.1726520657539368e-01 6.9908452033996582e-01 + + + <_> + + 0 -1 38 4.5017572119832039e-03 + + + 4.5097151398658752e-01 7.8014570474624634e-01 + + + <_> + + 0 -1 39 2.4138500913977623e-02 + + + 5.4382127523422241e-01 1.3198269903659821e-01 + + + + + <_> + 39 + 1.8412969589233398e+01 + + <_> + + 0 -1 40 1.9212230108678341e-03 + + + 1.4152669906616211e-01 6.1998707056045532e-01 + + + <_> + + 0 -1 41 -1.2748669541906565e-04 + + + 6.1910742521286011e-01 1.8849289417266846e-01 + + + <_> + + 0 -1 42 5.1409931620582938e-04 + + + 1.4873969554901123e-01 5.8579277992248535e-01 + + + <_> + + 0 -1 43 4.1878609918057919e-03 + + + 2.7469098567962646e-01 6.3592398166656494e-01 + + + <_> + + 0 -1 44 5.1015717908740044e-03 + + + 5.8708512783050537e-01 2.1756289899349213e-01 + + + <_> + + 0 -1 45 -2.1448440384119749e-03 + + + 5.8809447288513184e-01 2.9795908927917480e-01 + + + <_> + + 0 -1 46 -2.8977119363844395e-03 + + + 2.3733270168304443e-01 5.8766472339630127e-01 + + + <_> + + 0 -1 47 -2.1610679104924202e-02 + + + 1.2206549942493439e-01 5.1942020654678345e-01 + + + <_> + + 0 -1 48 -4.6299318782985210e-03 + + + 2.6312309503555298e-01 5.8174091577529907e-01 + + + <_> + + 0 -1 49 5.9393711853772402e-04 + + + 3.6386200785636902e-01 5.6985449790954590e-01 + + + <_> + + 0 -1 50 5.3878661245107651e-02 + + + 4.3035310506820679e-01 7.5593662261962891e-01 + + + <_> + + 0 -1 51 1.8887349870055914e-03 + + + 2.1226030588150024e-01 5.6134271621704102e-01 + + + <_> + + 0 -1 52 -2.3635339457541704e-03 + + + 5.6318491697311401e-01 2.6427671313285828e-01 + + + <_> + + 0 -1 53 2.4017799645662308e-02 + + + 5.7971078157424927e-01 2.7517059445381165e-01 + + + <_> + + 0 -1 54 2.0543030404951423e-04 + + + 2.7052420377731323e-01 5.7525688409805298e-01 + + + <_> + + 0 -1 55 8.4790197433903813e-04 + + + 5.4356247186660767e-01 2.3348769545555115e-01 + + + <_> + + 0 -1 56 1.4091329649090767e-03 + + + 5.3194248676300049e-01 2.0631550252437592e-01 + + + <_> + + 0 -1 57 1.4642629539594054e-03 + + + 5.4189807176589966e-01 3.0688610672950745e-01 + + + <_> + + 0 -1 58 1.6352549428120255e-03 + + + 3.6953729391098022e-01 6.1128681898117065e-01 + + + <_> + + 0 -1 59 8.3172752056270838e-04 + + + 3.5650369524955750e-01 6.0252362489700317e-01 + + + <_> + + 0 -1 60 -2.0998890977352858e-03 + + + 1.9139820337295532e-01 5.3628271818161011e-01 + + + <_> + + 0 -1 61 -7.4213981861248612e-04 + + + 3.8355550169944763e-01 5.5293101072311401e-01 + + + <_> + + 0 -1 62 3.2655049581080675e-03 + + + 4.3128961324691772e-01 7.1018958091735840e-01 + + + <_> + + 0 -1 63 8.9134991867467761e-04 + + + 3.9848309755325317e-01 6.3919639587402344e-01 + + + <_> + + 0 -1 64 -1.5284179709851742e-02 + + + 2.3667329549789429e-01 5.4337137937545776e-01 + + + <_> + + 0 -1 65 4.8381411470472813e-03 + + + 5.8175009489059448e-01 3.2391890883445740e-01 + + + <_> + + 0 -1 66 -9.1093179071322083e-04 + + + 5.5405938625335693e-01 2.9118689894676208e-01 + + + <_> + + 0 -1 67 -6.1275060288608074e-03 + + + 1.7752550542354584e-01 5.1966291666030884e-01 + + + <_> + + 0 -1 68 -4.4576259097084403e-04 + + + 3.0241701006889343e-01 5.5335938930511475e-01 + + + <_> + + 0 -1 69 2.2646540775895119e-02 + + + 4.4149309396743774e-01 6.9753772020339966e-01 + + + <_> + + 0 -1 70 -1.8804960418492556e-03 + + + 2.7913948893547058e-01 5.4979521036148071e-01 + + + <_> + + 0 -1 71 7.0889107882976532e-03 + + + 5.2631992101669312e-01 2.3855470120906830e-01 + + + <_> + + 0 -1 72 1.7318050377070904e-03 + + + 4.3193790316581726e-01 6.9836008548736572e-01 + + + <_> + + 0 -1 73 -6.8482700735330582e-03 + + + 3.0820429325103760e-01 5.3909200429916382e-01 + + + <_> + + 0 -1 74 -1.5062530110299122e-05 + + + 5.5219221115112305e-01 3.1203660368919373e-01 + + + <_> + + 0 -1 75 2.9475569725036621e-02 + + + 5.4013228416442871e-01 1.7706030607223511e-01 + + + <_> + + 0 -1 76 8.1387329846620560e-03 + + + 5.1786178350448608e-01 1.2110190093517303e-01 + + + <_> + + 0 -1 77 2.0942950621247292e-02 + + + 5.2902942895889282e-01 3.3112218976020813e-01 + + + <_> + + 0 -1 78 -9.5665529370307922e-03 + + + 7.4719941616058350e-01 4.4519689679145813e-01 + + + + + <_> + 33 + 1.5324139595031738e+01 + + <_> + + 0 -1 79 -2.8206960996612906e-04 + + + 2.0640860497951508e-01 6.0767322778701782e-01 + + + <_> + + 0 -1 80 1.6790600493550301e-03 + + + 5.8519971370697021e-01 1.2553839385509491e-01 + + + <_> + + 0 -1 81 6.9827912375330925e-04 + + + 9.4018429517745972e-02 5.7289612293243408e-01 + + + <_> + + 0 -1 82 7.8959012171253562e-04 + + + 1.7819879949092865e-01 5.6943088769912720e-01 + + + <_> + + 0 -1 83 -2.8560499195009470e-03 + + + 1.6383990645408630e-01 5.7886648178100586e-01 + + + <_> + + 0 -1 84 -3.8122469559311867e-03 + + + 2.0854400098323822e-01 5.5085647106170654e-01 + + + <_> + + 0 -1 85 1.5896620461717248e-03 + + + 5.7027608156204224e-01 1.8572150170803070e-01 + + + <_> + + 0 -1 86 1.0078339837491512e-02 + + + 5.1169431209564209e-01 2.1897700428962708e-01 + + + <_> + + 0 -1 87 -6.3526302576065063e-02 + + + 7.1313798427581787e-01 4.0438130497932434e-01 + + + <_> + + 0 -1 88 -9.1031491756439209e-03 + + + 2.5671818852424622e-01 5.4639732837677002e-01 + + + <_> + + 0 -1 89 -2.4035000242292881e-03 + + + 1.7006659507751465e-01 5.5909740924835205e-01 + + + <_> + + 0 -1 90 1.5226360410451889e-03 + + + 5.4105567932128906e-01 2.6190540194511414e-01 + + + <_> + + 0 -1 91 1.7997439950704575e-02 + + + 3.7324368953704834e-01 6.5352207422256470e-01 + + + <_> + + 0 -1 92 -6.4538191072642803e-03 + + + 2.6264819502830505e-01 5.5374461412429810e-01 + + + <_> + + 0 -1 93 -1.1880760081112385e-02 + + + 2.0037539303302765e-01 5.5447459220886230e-01 + + + <_> + + 0 -1 94 1.2713660253211856e-03 + + + 5.5919027328491211e-01 3.0319759249687195e-01 + + + <_> + + 0 -1 95 1.1376109905540943e-03 + + + 2.7304071187973022e-01 5.6465089321136475e-01 + + + <_> + + 0 -1 96 -4.2651998810470104e-03 + + + 1.4059090614318848e-01 5.4618209600448608e-01 + + + <_> + + 0 -1 97 -2.9602861031889915e-03 + + + 1.7950350046157837e-01 5.4592901468276978e-01 + + + <_> + + 0 -1 98 -8.8448226451873779e-03 + + + 5.7367831468582153e-01 2.8092199563980103e-01 + + + <_> + + 0 -1 99 -6.6430689767003059e-03 + + + 2.3706759512424469e-01 5.5038261413574219e-01 + + + <_> + + 0 -1 100 3.9997808635234833e-03 + + + 5.6081998348236084e-01 3.3042821288108826e-01 + + + <_> + + 0 -1 101 -4.1221720166504383e-03 + + + 1.6401059925556183e-01 5.3789931535720825e-01 + + + <_> + + 0 -1 102 1.5624909661710262e-02 + + + 5.2276492118835449e-01 2.2886039316654205e-01 + + + <_> + + 0 -1 103 -1.0356419719755650e-02 + + + 7.0161938667297363e-01 4.2529278993606567e-01 + + + <_> + + 0 -1 104 -8.7960809469223022e-03 + + + 2.7673470973968506e-01 5.3558301925659180e-01 + + + <_> + + 0 -1 105 1.6226939857006073e-01 + + + 4.3422400951385498e-01 7.4425792694091797e-01 + + + <_> + + 0 -1 106 4.5542530715465546e-03 + + + 5.7264858484268188e-01 2.5821250677108765e-01 + + + <_> + + 0 -1 107 -2.1309209987521172e-03 + + + 2.1068480610847473e-01 5.3610187768936157e-01 + + + <_> + + 0 -1 108 -1.3208420015871525e-02 + + + 7.5937908887863159e-01 4.5524680614471436e-01 + + + <_> + + 0 -1 109 -6.5996676683425903e-02 + + + 1.2524759769439697e-01 5.3440397977828979e-01 + + + <_> + + 0 -1 110 7.9142656177282333e-03 + + + 3.3153840899467468e-01 5.6010431051254272e-01 + + + <_> + + 0 -1 111 2.0894279703497887e-02 + + + 5.5060499906539917e-01 2.7688381075859070e-01 + + + + + <_> + 44 + 2.1010639190673828e+01 + + <_> + + 0 -1 112 1.1961159761995077e-03 + + + 1.7626909911632538e-01 6.1562412977218628e-01 + + + <_> + + 0 -1 113 -1.8679830245673656e-03 + + + 6.1181068420410156e-01 1.8323999643325806e-01 + + + <_> + + 0 -1 114 -1.9579799845814705e-04 + + + 9.9044263362884521e-02 5.7238161563873291e-01 + + + <_> + + 0 -1 115 -8.0255657667294145e-04 + + + 5.5798798799514771e-01 2.3772829771041870e-01 + + + <_> + + 0 -1 116 -2.4510810617357492e-03 + + + 2.2314579784870148e-01 5.8589351177215576e-01 + + + <_> + + 0 -1 117 5.0361850298941135e-04 + + + 2.6539939641952515e-01 5.7941037416458130e-01 + + + <_> + + 0 -1 118 4.0293349884450436e-03 + + + 5.8038270473480225e-01 2.4848650395870209e-01 + + + <_> + + 0 -1 119 -1.4451709575951099e-02 + + + 1.8303519487380981e-01 5.4842048883438110e-01 + + + <_> + + 0 -1 120 2.0380979403853416e-03 + + + 3.3635589480400085e-01 6.0510927438735962e-01 + + + <_> + + 0 -1 121 -1.6155190533027053e-03 + + + 2.2866420447826385e-01 5.4412460327148438e-01 + + + <_> + + 0 -1 122 3.3458340913057327e-03 + + + 5.6259131431579590e-01 2.3923380672931671e-01 + + + <_> + + 0 -1 123 1.6379579901695251e-03 + + + 3.9069938659667969e-01 5.9646219015121460e-01 + + + <_> + + 0 -1 124 3.0251210555434227e-02 + + + 5.2484822273254395e-01 1.5757469832897186e-01 + + + <_> + + 0 -1 125 3.7251990288496017e-02 + + + 4.1943109035491943e-01 6.7484188079833984e-01 + + + <_> + + 0 -1 126 -2.5109790265560150e-02 + + + 1.8825499713420868e-01 5.4734510183334351e-01 + + + <_> + + 0 -1 127 -5.3099058568477631e-03 + + + 1.3399730622768402e-01 5.2271109819412231e-01 + + + <_> + + 0 -1 128 1.2086479691788554e-03 + + + 3.7620881199836731e-01 6.1096358299255371e-01 + + + <_> + + 0 -1 129 -2.1907679736614227e-02 + + + 2.6631429791450500e-01 5.4040068387985229e-01 + + + <_> + + 0 -1 130 5.4116579703986645e-03 + + + 5.3635787963867188e-01 2.2322730720043182e-01 + + + <_> + + 0 -1 131 6.9946326315402985e-02 + + + 5.3582328557968140e-01 2.4536980688571930e-01 + + + <_> + + 0 -1 132 3.4520021290518343e-04 + + + 2.4096719920635223e-01 5.3769302368164062e-01 + + + <_> + + 0 -1 133 1.2627709656953812e-03 + + + 5.4258567094802856e-01 3.1556931138038635e-01 + + + <_> + + 0 -1 134 2.2719509899616241e-02 + + + 4.1584059596061707e-01 6.5978652238845825e-01 + + + <_> + + 0 -1 135 -1.8111000536009669e-03 + + + 2.8112530708312988e-01 5.5052447319030762e-01 + + + <_> + + 0 -1 136 3.3469670452177525e-03 + + + 5.2600282430648804e-01 1.8914650380611420e-01 + + + <_> + + 0 -1 137 4.0791751234792173e-04 + + + 5.6735092401504517e-01 3.3442100882530212e-01 + + + <_> + + 0 -1 138 1.2734799645841122e-02 + + + 5.3435921669006348e-01 2.3956120014190674e-01 + + + <_> + + 0 -1 139 -7.3119727894663811e-03 + + + 6.0108900070190430e-01 4.0222078561782837e-01 + + + <_> + + 0 -1 140 -5.6948751211166382e-02 + + + 8.1991511583328247e-01 4.5431908965110779e-01 + + + <_> + + 0 -1 141 -5.0116591155529022e-03 + + + 2.2002810239791870e-01 5.3577107191085815e-01 + + + <_> + + 0 -1 142 6.0334368608891964e-03 + + + 4.4130811095237732e-01 7.1817511320114136e-01 + + + <_> + + 0 -1 143 3.9437441155314445e-03 + + + 5.4788607358932495e-01 2.7917331457138062e-01 + + + <_> + + 0 -1 144 -3.6591119132936001e-03 + + + 6.3578677177429199e-01 3.9897239208221436e-01 + + + <_> + + 0 -1 145 -3.8456181064248085e-03 + + + 3.4936860203742981e-01 5.3006649017333984e-01 + + + <_> + + 0 -1 146 -7.1926261298358440e-03 + + + 1.1196149885654449e-01 5.2296727895736694e-01 + + + <_> + + 0 -1 147 -5.2798941731452942e-02 + + + 2.3871029913425446e-01 5.4534512758255005e-01 + + + <_> + + 0 -1 148 -7.9537667334079742e-03 + + + 7.5869178771972656e-01 4.4393768906593323e-01 + + + <_> + + 0 -1 149 -2.7344180271029472e-03 + + + 2.5654768943786621e-01 5.4893219470977783e-01 + + + <_> + + 0 -1 150 -1.8507939530536532e-03 + + + 6.7343479394912720e-01 4.2524749040603638e-01 + + + <_> + + 0 -1 151 1.5918919816613197e-02 + + + 5.4883527755737305e-01 2.2926619648933411e-01 + + + <_> + + 0 -1 152 -1.2687679845839739e-03 + + + 6.1043310165405273e-01 4.0223899483680725e-01 + + + <_> + + 0 -1 153 6.2883910723030567e-03 + + + 5.3108531236648560e-01 1.5361930429935455e-01 + + + <_> + + 0 -1 154 -6.2259892001748085e-03 + + + 1.7291119694709778e-01 5.2416062355041504e-01 + + + <_> + + 0 -1 155 -1.2132599949836731e-02 + + + 6.5977597236633301e-01 4.3251821398735046e-01 + + + + + <_> + 50 + 2.3918790817260742e+01 + + <_> + + 0 -1 156 -3.9184908382594585e-03 + + + 6.1034351587295532e-01 1.4693309366703033e-01 + + + <_> + + 0 -1 157 1.5971299726516008e-03 + + + 2.6323631405830383e-01 5.8964669704437256e-01 + + + <_> + + 0 -1 158 1.7780110239982605e-02 + + + 5.8728742599487305e-01 1.7603619396686554e-01 + + + <_> + + 0 -1 159 6.5334769897162914e-04 + + + 1.5678019821643829e-01 5.5960661172866821e-01 + + + <_> + + 0 -1 160 -2.8353091329336166e-04 + + + 1.9131539762020111e-01 5.7320362329483032e-01 + + + <_> + + 0 -1 161 1.6104689566418529e-03 + + + 2.9149138927459717e-01 5.6230807304382324e-01 + + + <_> + + 0 -1 162 -9.7750619053840637e-02 + + + 1.9434769451618195e-01 5.6482332944869995e-01 + + + <_> + + 0 -1 163 5.5182358482852578e-04 + + + 3.1346169114112854e-01 5.5046397447586060e-01 + + + <_> + + 0 -1 164 -1.2858220376074314e-02 + + + 2.5364819169044495e-01 5.7601428031921387e-01 + + + <_> + + 0 -1 165 4.1530239395797253e-03 + + + 5.7677221298217773e-01 3.6597740650177002e-01 + + + <_> + + 0 -1 166 1.7092459602281451e-03 + + + 2.8431910276412964e-01 5.9189391136169434e-01 + + + <_> + + 0 -1 167 7.5217359699308872e-03 + + + 4.0524271130561829e-01 6.1831092834472656e-01 + + + <_> + + 0 -1 168 2.2479810286313295e-03 + + + 5.7837551832199097e-01 3.1354010105133057e-01 + + + <_> + + 0 -1 169 5.2006211131811142e-02 + + + 5.5413120985031128e-01 1.9166369736194611e-01 + + + <_> + + 0 -1 170 1.2085529975593090e-02 + + + 4.0326559543609619e-01 6.6445910930633545e-01 + + + <_> + + 0 -1 171 1.4687820112158079e-05 + + + 3.5359779000282288e-01 5.7093828916549683e-01 + + + <_> + + 0 -1 172 7.1395188570022583e-06 + + + 3.0374449491500854e-01 5.6102699041366577e-01 + + + <_> + + 0 -1 173 -4.6001640148460865e-03 + + + 7.1810871362686157e-01 4.5803260803222656e-01 + + + <_> + + 0 -1 174 2.0058949012309313e-03 + + + 5.6219518184661865e-01 2.9536840319633484e-01 + + + <_> + + 0 -1 175 4.5050270855426788e-03 + + + 4.6153879165649414e-01 7.6190179586410522e-01 + + + <_> + + 0 -1 176 1.1746830306947231e-02 + + + 5.3438371419906616e-01 1.7725290358066559e-01 + + + <_> + + 0 -1 177 -5.8316338807344437e-02 + + + 1.6862459480762482e-01 5.3407722711563110e-01 + + + <_> + + 0 -1 178 2.3629379575140774e-04 + + + 3.7920561432838440e-01 6.0268038511276245e-01 + + + <_> + + 0 -1 179 -7.8156180679798126e-03 + + + 1.5128670632839203e-01 5.3243237733840942e-01 + + + <_> + + 0 -1 180 -1.0876160115003586e-02 + + + 2.0818220078945160e-01 5.3199452161788940e-01 + + + <_> + + 0 -1 181 -2.7745519764721394e-03 + + + 4.0982469916343689e-01 5.2103281021118164e-01 + + + <_> + + 0 -1 182 -7.8276381827890873e-04 + + + 5.6932741403579712e-01 3.4788420796394348e-01 + + + <_> + + 0 -1 183 1.3870409689843655e-02 + + + 5.3267508745193481e-01 2.2576980292797089e-01 + + + <_> + + 0 -1 184 -2.3674910888075829e-02 + + + 1.5513050556182861e-01 5.2007079124450684e-01 + + + <_> + + 0 -1 185 -1.4879409718560055e-05 + + + 5.5005669593811035e-01 3.8201761245727539e-01 + + + <_> + + 0 -1 186 3.6190641112625599e-03 + + + 4.2386838793754578e-01 6.6397482156753540e-01 + + + <_> + + 0 -1 187 -1.9817110151052475e-02 + + + 2.1500380337238312e-01 5.3823578357696533e-01 + + + <_> + + 0 -1 188 -3.8154039066284895e-03 + + + 6.6757112741470337e-01 4.2152971029281616e-01 + + + <_> + + 0 -1 189 -4.9775829538702965e-03 + + + 2.2672890126705170e-01 5.3863281011581421e-01 + + + <_> + + 0 -1 190 2.2441020701080561e-03 + + + 4.3086910247802734e-01 6.8557357788085938e-01 + + + <_> + + 0 -1 191 1.2282459996640682e-02 + + + 5.8366149663925171e-01 3.4674790501594543e-01 + + + <_> + + 0 -1 192 -2.8548699337989092e-03 + + + 7.0169448852539062e-01 4.3114539980888367e-01 + + + <_> + + 0 -1 193 -3.7875669077038765e-03 + + + 2.8953450918197632e-01 5.2249461412429810e-01 + + + <_> + + 0 -1 194 -1.2201230274513364e-03 + + + 2.9755708575248718e-01 5.4816448688507080e-01 + + + <_> + + 0 -1 195 1.0160599835216999e-02 + + + 4.8888179659843445e-01 8.1826978921890259e-01 + + + <_> + + 0 -1 196 -1.6174569725990295e-02 + + + 1.4814929664134979e-01 5.2399927377700806e-01 + + + <_> + + 0 -1 197 1.9292460754513741e-02 + + + 4.7863098978996277e-01 7.3781907558441162e-01 + + + <_> + + 0 -1 198 -3.2479539513587952e-03 + + + 7.3742228746414185e-01 4.4706439971923828e-01 + + + <_> + + 0 -1 199 -9.3803480267524719e-03 + + + 3.4891548752784729e-01 5.5379962921142578e-01 + + + <_> + + 0 -1 200 -1.2606129981577396e-02 + + + 2.3796869814395905e-01 5.3154432773590088e-01 + + + <_> + + 0 -1 201 -2.5621930137276649e-02 + + + 1.9646880030632019e-01 5.1387697458267212e-01 + + + <_> + + 0 -1 202 -7.5741496402770281e-05 + + + 5.5905228853225708e-01 3.3658531308174133e-01 + + + <_> + + 0 -1 203 -8.9210882782936096e-02 + + + 6.3404656946659088e-02 5.1626348495483398e-01 + + + <_> + + 0 -1 204 -2.7670480776578188e-03 + + + 7.3234677314758301e-01 4.4907060265541077e-01 + + + <_> + + 0 -1 205 2.7152578695677221e-04 + + + 4.1148349642753601e-01 5.9855180978775024e-01 + + + + + <_> + 51 + 2.4527879714965820e+01 + + <_> + + 0 -1 206 1.4786219689995050e-03 + + + 2.6635450124740601e-01 6.6433167457580566e-01 + + + <_> + + 0 -1 207 -1.8741659587249160e-03 + + + 6.1438488960266113e-01 2.5185129046440125e-01 + + + <_> + + 0 -1 208 -1.7151009524241090e-03 + + + 5.7663410902023315e-01 2.3974630236625671e-01 + + + <_> + + 0 -1 209 -1.8939269939437509e-03 + + + 5.6820458173751831e-01 2.5291448831558228e-01 + + + <_> + + 0 -1 210 -5.3006052039563656e-03 + + + 1.6406759619712830e-01 5.5560797452926636e-01 + + + <_> + + 0 -1 211 -4.6662531793117523e-02 + + + 6.1231541633605957e-01 4.7628301382064819e-01 + + + <_> + + 0 -1 212 -7.9431332414969802e-04 + + + 5.7078588008880615e-01 2.8394040465354919e-01 + + + <_> + + 0 -1 213 1.4891670085489750e-02 + + + 4.0896728634834290e-01 6.0063672065734863e-01 + + + <_> + + 0 -1 214 -1.2046529445797205e-03 + + + 5.7124507427215576e-01 2.7052891254425049e-01 + + + <_> + + 0 -1 215 6.0619381256401539e-03 + + + 5.2625042200088501e-01 3.2622259855270386e-01 + + + <_> + + 0 -1 216 -2.5286648888140917e-03 + + + 6.8538308143615723e-01 4.1992568969726562e-01 + + + <_> + + 0 -1 217 -5.9010218828916550e-03 + + + 3.2662820816040039e-01 5.4348129034042358e-01 + + + <_> + + 0 -1 218 5.6702760048210621e-03 + + + 5.4684108495712280e-01 2.3190039396286011e-01 + + + <_> + + 0 -1 219 -3.0304100364446640e-03 + + + 5.5706679821014404e-01 2.7082380652427673e-01 + + + <_> + + 0 -1 220 2.9803649522364140e-03 + + + 3.7005689740180969e-01 5.8906257152557373e-01 + + + <_> + + 0 -1 221 -7.5840510427951813e-02 + + + 2.1400700509548187e-01 5.4199481010437012e-01 + + + <_> + + 0 -1 222 1.9262539222836494e-02 + + + 5.5267721414566040e-01 2.7265900373458862e-01 + + + <_> + + 0 -1 223 1.8888259364757687e-04 + + + 3.9580118656158447e-01 6.0172098875045776e-01 + + + <_> + + 0 -1 224 2.9369549825787544e-02 + + + 5.2413737773895264e-01 1.4357580244541168e-01 + + + <_> + + 0 -1 225 1.0417619487270713e-03 + + + 3.3854091167449951e-01 5.9299832582473755e-01 + + + <_> + + 0 -1 226 2.6125640142709017e-03 + + + 5.4853779077529907e-01 3.0215978622436523e-01 + + + <_> + + 0 -1 227 9.6977467183023691e-04 + + + 3.3752760291099548e-01 5.5320328474044800e-01 + + + <_> + + 0 -1 228 5.9512659208849072e-04 + + + 5.6317430734634399e-01 3.3593991398811340e-01 + + + <_> + + 0 -1 229 -1.0156559944152832e-01 + + + 6.3735038042068481e-02 5.2304250001907349e-01 + + + <_> + + 0 -1 230 3.6156699061393738e-02 + + + 5.1369631290435791e-01 1.0295289754867554e-01 + + + <_> + + 0 -1 231 3.4624140243977308e-03 + + + 3.8793200254440308e-01 5.5582892894744873e-01 + + + <_> + + 0 -1 232 1.9554980099201202e-02 + + + 5.2500867843627930e-01 1.8758599460124969e-01 + + + <_> + + 0 -1 233 -2.3121440317481756e-03 + + + 6.6720288991928101e-01 4.6796411275863647e-01 + + + <_> + + 0 -1 234 -1.8605289515107870e-03 + + + 7.1633791923522949e-01 4.3346709012985229e-01 + + + <_> + + 0 -1 235 -9.4026362057775259e-04 + + + 3.0213609337806702e-01 5.6502032279968262e-01 + + + <_> + + 0 -1 236 -5.2418331615626812e-03 + + + 1.8200090527534485e-01 5.2502560615539551e-01 + + + <_> + + 0 -1 237 1.1729019752237946e-04 + + + 3.3891880512237549e-01 5.4459732770919800e-01 + + + <_> + + 0 -1 238 1.1878840159624815e-03 + + + 4.0853491425514221e-01 6.2535631656646729e-01 + + + <_> + + 0 -1 239 -1.0881359688937664e-02 + + + 3.3783990144729614e-01 5.7000827789306641e-01 + + + <_> + + 0 -1 240 1.7354859737679362e-03 + + + 4.2046359181404114e-01 6.5230387449264526e-01 + + + <_> + + 0 -1 241 -6.5119052305817604e-03 + + + 2.5952160358428955e-01 5.4281437397003174e-01 + + + <_> + + 0 -1 242 -1.2136430013924837e-03 + + + 6.1651438474655151e-01 3.9778938889503479e-01 + + + <_> + + 0 -1 243 -1.0354240424931049e-02 + + + 1.6280280053615570e-01 5.2195048332214355e-01 + + + <_> + + 0 -1 244 5.5858830455690622e-04 + + + 3.1996509432792664e-01 5.5035740137100220e-01 + + + <_> + + 0 -1 245 1.5299649909138680e-02 + + + 4.1039940714836121e-01 6.1223882436752319e-01 + + + <_> + + 0 -1 246 -2.1588210016489029e-02 + + + 1.0349129885435104e-01 5.1973849534988403e-01 + + + <_> + + 0 -1 247 -1.2834629416465759e-01 + + + 8.4938651323318481e-01 4.8931029438972473e-01 + + + <_> + + 0 -1 248 -2.2927189711481333e-03 + + + 3.1301578879356384e-01 5.4715752601623535e-01 + + + <_> + + 0 -1 249 7.9915106296539307e-02 + + + 4.8563209176063538e-01 6.0739892721176147e-01 + + + <_> + + 0 -1 250 -7.9441092908382416e-02 + + + 8.3946740627288818e-01 4.6245330572128296e-01 + + + <_> + + 0 -1 251 -5.2800010889768600e-03 + + + 1.8816959857940674e-01 5.3066980838775635e-01 + + + <_> + + 0 -1 252 1.0463109938427806e-03 + + + 5.2712291479110718e-01 2.5830659270286560e-01 + + + <_> + + 0 -1 253 2.6317298761568964e-04 + + + 4.2353048920631409e-01 5.7354408502578735e-01 + + + <_> + + 0 -1 254 -3.6173160187900066e-03 + + + 6.9343960285186768e-01 4.4954448938369751e-01 + + + <_> + + 0 -1 255 1.1421879753470421e-02 + + + 5.9009212255477905e-01 4.1381931304931641e-01 + + + <_> + + 0 -1 256 -1.9963278900831938e-03 + + + 6.4663827419281006e-01 4.3272399902343750e-01 + + + + + <_> + 56 + 2.7153350830078125e+01 + + <_> + + 0 -1 257 -9.9691245704889297e-03 + + + 6.1423242092132568e-01 2.4822120368480682e-01 + + + <_> + + 0 -1 258 7.3073059320449829e-04 + + + 5.7049518823623657e-01 2.3219659924507141e-01 + + + <_> + + 0 -1 259 6.4045301405712962e-04 + + + 2.1122519671916962e-01 5.8149331808090210e-01 + + + <_> + + 0 -1 260 4.5424019917845726e-03 + + + 2.9504820704460144e-01 5.8663117885589600e-01 + + + <_> + + 0 -1 261 9.2477443104144186e-05 + + + 2.9909908771514893e-01 5.7913267612457275e-01 + + + <_> + + 0 -1 262 -8.6603146046400070e-03 + + + 2.8130298852920532e-01 5.6355422735214233e-01 + + + <_> + + 0 -1 263 8.0515816807746887e-03 + + + 3.5353690385818481e-01 6.0547572374343872e-01 + + + <_> + + 0 -1 264 4.3835240649059415e-04 + + + 5.5965322256088257e-01 2.7315109968185425e-01 + + + <_> + + 0 -1 265 -9.8168973636347800e-05 + + + 5.9780317544937134e-01 3.6385610699653625e-01 + + + <_> + + 0 -1 266 -1.1298790341243148e-03 + + + 2.7552521228790283e-01 5.4327291250228882e-01 + + + <_> + + 0 -1 267 6.4356150105595589e-03 + + + 4.3056419491767883e-01 7.0698332786560059e-01 + + + <_> + + 0 -1 268 -5.6829329580068588e-02 + + + 2.4952429533004761e-01 5.2949970960617065e-01 + + + <_> + + 0 -1 269 4.0668169967830181e-03 + + + 5.4785531759262085e-01 2.4977239966392517e-01 + + + <_> + + 0 -1 270 4.8164798499783501e-05 + + + 3.9386010169982910e-01 5.7063561677932739e-01 + + + <_> + + 0 -1 271 6.1795017682015896e-03 + + + 4.4076061248779297e-01 7.3947668075561523e-01 + + + <_> + + 0 -1 272 6.4985752105712891e-03 + + + 5.4452431201934814e-01 2.4791529774665833e-01 + + + <_> + + 0 -1 273 -1.0211090557277203e-03 + + + 2.5447669625282288e-01 5.3389710187911987e-01 + + + <_> + + 0 -1 274 -5.4247528314590454e-03 + + + 2.7188581228256226e-01 5.3240692615509033e-01 + + + <_> + + 0 -1 275 -1.0559899965301156e-03 + + + 3.1782880425453186e-01 5.5345088243484497e-01 + + + <_> + + 0 -1 276 6.6465808777138591e-04 + + + 4.2842191457748413e-01 6.5581941604614258e-01 + + + <_> + + 0 -1 277 -2.7524109464138746e-04 + + + 5.9028607606887817e-01 3.8102629780769348e-01 + + + <_> + + 0 -1 278 4.2293202131986618e-03 + + + 3.8164898753166199e-01 5.7093858718872070e-01 + + + <_> + + 0 -1 279 -3.2868210691958666e-03 + + + 1.7477439343929291e-01 5.2595442533493042e-01 + + + <_> + + 0 -1 280 1.5611879643984139e-04 + + + 3.6017221212387085e-01 5.7256120443344116e-01 + + + <_> + + 0 -1 281 -7.3621381488919724e-06 + + + 5.4018580913543701e-01 3.0444970726966858e-01 + + + <_> + + 0 -1 282 -1.4767250046133995e-02 + + + 3.2207700610160828e-01 5.5734348297119141e-01 + + + <_> + + 0 -1 283 2.4489590898156166e-02 + + + 4.3015280365943909e-01 6.5188127756118774e-01 + + + <_> + + 0 -1 284 -3.7652091123163700e-04 + + + 3.5645830631256104e-01 5.5982369184494019e-01 + + + <_> + + 0 -1 285 7.3657688517414499e-06 + + + 3.4907829761505127e-01 5.5618977546691895e-01 + + + <_> + + 0 -1 286 -1.5099939890205860e-02 + + + 1.7762720584869385e-01 5.3352999687194824e-01 + + + <_> + + 0 -1 287 -3.8316650316119194e-03 + + + 6.1496877670288086e-01 4.2213940620422363e-01 + + + <_> + + 0 -1 288 1.6925400123000145e-02 + + + 5.4130148887634277e-01 2.1665850281715393e-01 + + + <_> + + 0 -1 289 -3.0477850232273340e-03 + + + 6.4494907855987549e-01 4.3546178936958313e-01 + + + <_> + + 0 -1 290 3.2140589319169521e-03 + + + 5.4001551866531372e-01 3.5232171416282654e-01 + + + <_> + + 0 -1 291 -4.0023201145231724e-03 + + + 2.7745240926742554e-01 5.3384172916412354e-01 + + + <_> + + 0 -1 292 7.4182129465043545e-03 + + + 5.6767392158508301e-01 3.7028178572654724e-01 + + + <_> + + 0 -1 293 -8.8764587417244911e-03 + + + 7.7492219209671021e-01 4.5836889743804932e-01 + + + <_> + + 0 -1 294 2.7311739977449179e-03 + + + 5.3387218713760376e-01 3.9966610074043274e-01 + + + <_> + + 0 -1 295 -2.5082379579544067e-03 + + + 5.6119632720947266e-01 3.7774989008903503e-01 + + + <_> + + 0 -1 296 -8.0541074275970459e-03 + + + 2.9152289032936096e-01 5.1791828870773315e-01 + + + <_> + + 0 -1 297 -9.7938813269138336e-04 + + + 5.5364328622817993e-01 3.7001928687095642e-01 + + + <_> + + 0 -1 298 -5.8745909482240677e-03 + + + 3.7543910741806030e-01 5.6793761253356934e-01 + + + <_> + + 0 -1 299 -4.4936719350516796e-03 + + + 7.0196992158889771e-01 4.4809499382972717e-01 + + + <_> + + 0 -1 300 -5.4389229044318199e-03 + + + 2.3103649914264679e-01 5.3133869171142578e-01 + + + <_> + + 0 -1 301 -7.5094640487805009e-04 + + + 5.8648687601089478e-01 4.1293430328369141e-01 + + + <_> + + 0 -1 302 1.4528800420521293e-05 + + + 3.7324070930480957e-01 5.6196212768554688e-01 + + + <_> + + 0 -1 303 4.0758069604635239e-02 + + + 5.3120911121368408e-01 2.7205219864845276e-01 + + + <_> + + 0 -1 304 6.6505931317806244e-03 + + + 4.7100159525871277e-01 6.6934937238693237e-01 + + + <_> + + 0 -1 305 4.5759351924061775e-03 + + + 5.1678192615509033e-01 1.6372759640216827e-01 + + + <_> + + 0 -1 306 6.5269311890006065e-03 + + + 5.3976088762283325e-01 2.9385319352149963e-01 + + + <_> + + 0 -1 307 -1.3660379685461521e-02 + + + 7.0864880084991455e-01 4.5322000980377197e-01 + + + <_> + + 0 -1 308 2.7358869090676308e-02 + + + 5.2064812183380127e-01 3.5892319679260254e-01 + + + <_> + + 0 -1 309 6.2197551596909761e-04 + + + 3.5070759057998657e-01 5.4411232471466064e-01 + + + <_> + + 0 -1 310 -3.3077080734074116e-03 + + + 5.8595228195190430e-01 4.0248918533325195e-01 + + + <_> + + 0 -1 311 -1.0631109587848186e-02 + + + 6.7432671785354614e-01 4.4226029515266418e-01 + + + <_> + + 0 -1 312 1.9441649317741394e-02 + + + 5.2827161550521851e-01 1.7979049682617188e-01 + + + + + <_> + 71 + 3.4554111480712891e+01 + + <_> + + 0 -1 313 -5.5052167735993862e-03 + + + 5.9147310256958008e-01 2.6265591382980347e-01 + + + <_> + + 0 -1 314 1.9562279339879751e-03 + + + 2.3125819861888885e-01 5.7416272163391113e-01 + + + <_> + + 0 -1 315 -8.8924784213304520e-03 + + + 1.6565300524234772e-01 5.6266540288925171e-01 + + + <_> + + 0 -1 316 8.3638377487659454e-02 + + + 5.4234498739242554e-01 1.9572949409484863e-01 + + + <_> + + 0 -1 317 1.2282270472496748e-03 + + + 3.4179040789604187e-01 5.9925037622451782e-01 + + + <_> + + 0 -1 318 5.7629169896245003e-03 + + + 3.7195819616317749e-01 6.0799038410186768e-01 + + + <_> + + 0 -1 319 -1.6417410224676132e-03 + + + 2.5774860382080078e-01 5.5769157409667969e-01 + + + <_> + + 0 -1 320 3.4113149158656597e-03 + + + 2.9507490992546082e-01 5.5141717195510864e-01 + + + <_> + + 0 -1 321 -1.1069320142269135e-02 + + + 7.5693589448928833e-01 4.4770789146423340e-01 + + + <_> + + 0 -1 322 3.4865971654653549e-02 + + + 5.5837088823318481e-01 2.6696211099624634e-01 + + + <_> + + 0 -1 323 6.5701099811121821e-04 + + + 5.6273132562637329e-01 2.9888901114463806e-01 + + + <_> + + 0 -1 324 -2.4339130148291588e-02 + + + 2.7711850404739380e-01 5.1088631153106689e-01 + + + <_> + + 0 -1 325 5.9435202274471521e-04 + + + 5.5806517601013184e-01 3.1203418970108032e-01 + + + <_> + + 0 -1 326 2.2971509024500847e-03 + + + 3.3302500844001770e-01 5.6790757179260254e-01 + + + <_> + + 0 -1 327 -3.7801829166710377e-03 + + + 2.9905349016189575e-01 5.3448081016540527e-01 + + + <_> + + 0 -1 328 -1.3420669734477997e-01 + + + 1.4638589322566986e-01 5.3925681114196777e-01 + + + <_> + + 0 -1 329 7.5224548345431685e-04 + + + 3.7469539046287537e-01 5.6927347183227539e-01 + + + <_> + + 0 -1 330 -4.0545541793107986e-02 + + + 2.7547478675842285e-01 5.4842978715896606e-01 + + + <_> + + 0 -1 331 1.2572970008477569e-03 + + + 3.7445840239524841e-01 5.7560759782791138e-01 + + + <_> + + 0 -1 332 -7.4249948374927044e-03 + + + 7.5138592720031738e-01 4.7282311320304871e-01 + + + <_> + + 0 -1 333 5.0908129196614027e-04 + + + 5.4048967361450195e-01 2.9323211312294006e-01 + + + <_> + + 0 -1 334 -1.2808450264856219e-03 + + + 6.1697798967361450e-01 4.2733490467071533e-01 + + + <_> + + 0 -1 335 -1.8348860321566463e-03 + + + 2.0484960079193115e-01 5.2064722776412964e-01 + + + <_> + + 0 -1 336 2.7484869584441185e-02 + + + 5.2529847621917725e-01 1.6755220293998718e-01 + + + <_> + + 0 -1 337 2.2372419480234385e-03 + + + 5.2677828073501587e-01 2.7776581048965454e-01 + + + <_> + + 0 -1 338 -8.8635291904211044e-03 + + + 6.9545578956604004e-01 4.8120489716529846e-01 + + + <_> + + 0 -1 339 4.1753971017897129e-03 + + + 4.2918878793716431e-01 6.3491958379745483e-01 + + + <_> + + 0 -1 340 -1.7098189564421773e-03 + + + 2.9305368661880493e-01 5.3612488508224487e-01 + + + <_> + + 0 -1 341 6.5328548662364483e-03 + + + 4.4953250885009766e-01 7.4096941947937012e-01 + + + <_> + + 0 -1 342 -9.5372907817363739e-03 + + + 3.1491199135780334e-01 5.4165017604827881e-01 + + + <_> + + 0 -1 343 2.5310989469289780e-02 + + + 5.1218920946121216e-01 1.3117079436779022e-01 + + + <_> + + 0 -1 344 3.6460969597101212e-02 + + + 5.1759117841720581e-01 2.5913399457931519e-01 + + + <_> + + 0 -1 345 2.0854329690337181e-02 + + + 5.1371401548385620e-01 1.5823160111904144e-01 + + + <_> + + 0 -1 346 -8.7207747856155038e-04 + + + 5.5743098258972168e-01 4.3989789485931396e-01 + + + <_> + + 0 -1 347 -1.5227000403683633e-05 + + + 5.5489408969879150e-01 3.7080699205398560e-01 + + + <_> + + 0 -1 348 -8.4316509310156107e-04 + + + 3.3874198794364929e-01 5.5542111396789551e-01 + + + <_> + + 0 -1 349 3.6037859972566366e-03 + + + 5.3580617904663086e-01 3.4111711382865906e-01 + + + <_> + + 0 -1 350 -6.8057891912758350e-03 + + + 6.1252027750015259e-01 4.3458628654479980e-01 + + + <_> + + 0 -1 351 -4.7021660953760147e-02 + + + 2.3581659793853760e-01 5.1937389373779297e-01 + + + <_> + + 0 -1 352 -3.6954108625650406e-02 + + + 7.3231112957000732e-01 4.7609439492225647e-01 + + + <_> + + 0 -1 353 1.0439479956403375e-03 + + + 5.4194551706314087e-01 3.4113308787345886e-01 + + + <_> + + 0 -1 354 -2.1050689974799752e-04 + + + 2.8216940164566040e-01 5.5549472570419312e-01 + + + <_> + + 0 -1 355 -8.0831587314605713e-02 + + + 9.1299301385879517e-01 4.6974349021911621e-01 + + + <_> + + 0 -1 356 -3.6579059087671340e-04 + + + 6.0226702690124512e-01 3.9782929420471191e-01 + + + <_> + + 0 -1 357 -1.2545920617412776e-04 + + + 5.6132131814956665e-01 3.8455399870872498e-01 + + + <_> + + 0 -1 358 -6.8786486983299255e-02 + + + 2.2616119682788849e-01 5.3004968166351318e-01 + + + <_> + + 0 -1 359 1.2415789999067783e-02 + + + 4.0756919980049133e-01 5.8288121223449707e-01 + + + <_> + + 0 -1 360 -4.7174817882478237e-03 + + + 2.8272539377212524e-01 5.2677577733993530e-01 + + + <_> + + 0 -1 361 3.8136858493089676e-02 + + + 5.0747412443161011e-01 1.0236159712076187e-01 + + + <_> + + 0 -1 362 -2.8168049175292253e-03 + + + 6.1690068244934082e-01 4.3596929311752319e-01 + + + <_> + + 0 -1 363 8.1303603947162628e-03 + + + 4.5244330167770386e-01 7.6060950756072998e-01 + + + <_> + + 0 -1 364 6.0056019574403763e-03 + + + 5.2404087781906128e-01 1.8597120046615601e-01 + + + <_> + + 0 -1 365 1.9139319658279419e-02 + + + 5.2093791961669922e-01 2.3320719599723816e-01 + + + <_> + + 0 -1 366 1.6445759683847427e-02 + + + 5.4507029056549072e-01 3.2642349600791931e-01 + + + <_> + + 0 -1 367 -3.7356890738010406e-02 + + + 6.9990468025207520e-01 4.5332419872283936e-01 + + + <_> + + 0 -1 368 -1.9727900624275208e-02 + + + 2.6536649465560913e-01 5.4128098487854004e-01 + + + <_> + + 0 -1 369 6.6972579807043076e-03 + + + 4.4805660843849182e-01 7.1386522054672241e-01 + + + <_> + + 0 -1 370 7.4457528535276651e-04 + + + 4.2313501238822937e-01 5.4713201522827148e-01 + + + <_> + + 0 -1 371 1.1790640419349074e-03 + + + 5.3417021036148071e-01 3.1304550170898438e-01 + + + <_> + + 0 -1 372 3.4980610013008118e-02 + + + 5.1186597347259521e-01 3.4305301308631897e-01 + + + <_> + + 0 -1 373 5.6859792675822973e-04 + + + 3.5321870446205139e-01 5.4686397314071655e-01 + + + <_> + + 0 -1 374 -1.1340649798512459e-02 + + + 2.8423538804054260e-01 5.3487008810043335e-01 + + + <_> + + 0 -1 375 -6.6228108480572701e-03 + + + 6.8836402893066406e-01 4.4926649332046509e-01 + + + <_> + + 0 -1 376 -8.0160330981016159e-03 + + + 1.7098939418792725e-01 5.2243089675903320e-01 + + + <_> + + 0 -1 377 1.4206819469109178e-03 + + + 5.2908462285995483e-01 2.9933831095695496e-01 + + + <_> + + 0 -1 378 -2.7801711112260818e-03 + + + 6.4988541603088379e-01 4.4604998826980591e-01 + + + <_> + + 0 -1 379 -1.4747589593753219e-03 + + + 3.2604381442070007e-01 5.3881132602691650e-01 + + + <_> + + 0 -1 380 -2.3830339312553406e-02 + + + 7.5289410352706909e-01 4.8012199997901917e-01 + + + <_> + + 0 -1 381 6.9369790144264698e-03 + + + 5.3351658582687378e-01 3.2614278793334961e-01 + + + <_> + + 0 -1 382 8.2806255668401718e-03 + + + 4.5803940296173096e-01 5.7378298044204712e-01 + + + <_> + + 0 -1 383 -1.0439500212669373e-02 + + + 2.5923201441764832e-01 5.2338278293609619e-01 + + + + + <_> + 80 + 3.9107288360595703e+01 + + <_> + + 0 -1 384 7.2006587870419025e-03 + + + 3.2588860392570496e-01 6.8498080968856812e-01 + + + <_> + + 0 -1 385 -2.8593589086085558e-03 + + + 5.8388811349868774e-01 2.5378298759460449e-01 + + + <_> + + 0 -1 386 6.8580528022721410e-04 + + + 5.7080817222595215e-01 2.8124240040779114e-01 + + + <_> + + 0 -1 387 7.9580191522836685e-03 + + + 2.5010511279106140e-01 5.5442607402801514e-01 + + + <_> + + 0 -1 388 -1.2124150525778532e-03 + + + 2.3853680491447449e-01 5.4333502054214478e-01 + + + <_> + + 0 -1 389 7.9426132142543793e-03 + + + 3.9550709724426270e-01 6.2207579612731934e-01 + + + <_> + + 0 -1 390 2.4630590341985226e-03 + + + 5.6397080421447754e-01 2.9923579096794128e-01 + + + <_> + + 0 -1 391 -6.0396599583327770e-03 + + + 2.1865129470825195e-01 5.4116767644882202e-01 + + + <_> + + 0 -1 392 -1.2988339876756072e-03 + + + 2.3507060110569000e-01 5.3645849227905273e-01 + + + <_> + + 0 -1 393 2.2299369447864592e-04 + + + 3.8041129708290100e-01 5.7296061515808105e-01 + + + <_> + + 0 -1 394 1.4654280385002494e-03 + + + 2.5101679563522339e-01 5.2582687139511108e-01 + + + <_> + + 0 -1 395 -8.1210042117163539e-04 + + + 5.9928238391876221e-01 3.8511589169502258e-01 + + + <_> + + 0 -1 396 -1.3836020370945334e-03 + + + 5.6813961267471313e-01 3.6365869641304016e-01 + + + <_> + + 0 -1 397 -2.7936449274420738e-02 + + + 1.4913170039653778e-01 5.3775602579116821e-01 + + + <_> + + 0 -1 398 -4.6919551095925272e-04 + + + 3.6924299597740173e-01 5.5724847316741943e-01 + + + <_> + + 0 -1 399 -4.9829659983515739e-03 + + + 6.7585092782974243e-01 4.5325040817260742e-01 + + + <_> + + 0 -1 400 1.8815309740602970e-03 + + + 5.3680229187011719e-01 2.9325398802757263e-01 + + + <_> + + 0 -1 401 -1.9067550078034401e-02 + + + 1.6493770480155945e-01 5.3300672769546509e-01 + + + <_> + + 0 -1 402 -4.6906559728085995e-03 + + + 1.9639259576797485e-01 5.1193618774414062e-01 + + + <_> + + 0 -1 403 5.9777139686048031e-03 + + + 4.6711719036102295e-01 7.0083981752395630e-01 + + + <_> + + 0 -1 404 -3.3303130418062210e-02 + + + 1.1554169654846191e-01 5.1041620969772339e-01 + + + <_> + + 0 -1 405 9.0744107961654663e-02 + + + 5.1496601104736328e-01 1.3061730563640594e-01 + + + <_> + + 0 -1 406 9.3555898638442159e-04 + + + 3.6054810881614685e-01 5.4398590326309204e-01 + + + <_> + + 0 -1 407 1.4901650138199329e-02 + + + 4.8862120509147644e-01 7.6875698566436768e-01 + + + <_> + + 0 -1 408 6.1594118596985936e-04 + + + 5.3568130731582642e-01 3.2409390807151794e-01 + + + <_> + + 0 -1 409 -5.0670988857746124e-02 + + + 1.8486219644546509e-01 5.2304041385650635e-01 + + + <_> + + 0 -1 410 6.8665749859064817e-04 + + + 3.8405799865722656e-01 5.5179458856582642e-01 + + + <_> + + 0 -1 411 8.3712432533502579e-03 + + + 4.2885640263557434e-01 6.1317539215087891e-01 + + + <_> + + 0 -1 412 -1.2953069526702166e-03 + + + 2.9136741161346436e-01 5.2807378768920898e-01 + + + <_> + + 0 -1 413 -4.1941680014133453e-02 + + + 7.5547999143600464e-01 4.8560309410095215e-01 + + + <_> + + 0 -1 414 -2.3529380559921265e-02 + + + 2.8382799029350281e-01 5.2560812234878540e-01 + + + <_> + + 0 -1 415 4.0857449173927307e-02 + + + 4.8709350824356079e-01 6.2772971391677856e-01 + + + <_> + + 0 -1 416 -2.5406869128346443e-02 + + + 7.0997077226638794e-01 4.5750290155410767e-01 + + + <_> + + 0 -1 417 -4.1415440500713885e-04 + + + 4.0308868885040283e-01 5.4694122076034546e-01 + + + <_> + + 0 -1 418 2.1824119612574577e-02 + + + 4.5020240545272827e-01 6.7687010765075684e-01 + + + <_> + + 0 -1 419 1.4114039950072765e-02 + + + 5.4428607225418091e-01 3.7917000055313110e-01 + + + <_> + + 0 -1 420 6.7214590671937913e-05 + + + 4.2004638910293579e-01 5.8734762668609619e-01 + + + <_> + + 0 -1 421 -7.9417638480663300e-03 + + + 3.7925618886947632e-01 5.5852657556533813e-01 + + + <_> + + 0 -1 422 -7.2144409641623497e-03 + + + 7.2531038522720337e-01 4.6035489439964294e-01 + + + <_> + + 0 -1 423 2.5817339774221182e-03 + + + 4.6933019161224365e-01 5.9002387523651123e-01 + + + <_> + + 0 -1 424 1.3409319519996643e-01 + + + 5.1492130756378174e-01 1.8088449537754059e-01 + + + <_> + + 0 -1 425 2.2962710354477167e-03 + + + 5.3997439146041870e-01 3.7178671360015869e-01 + + + <_> + + 0 -1 426 -2.1575849968940020e-03 + + + 2.4084959924221039e-01 5.1488637924194336e-01 + + + <_> + + 0 -1 427 -4.9196188338100910e-03 + + + 6.5735882520675659e-01 4.7387400269508362e-01 + + + <_> + + 0 -1 428 1.6267469618469477e-03 + + + 4.1928219795227051e-01 6.3031142950057983e-01 + + + <_> + + 0 -1 429 3.3413388882763684e-04 + + + 5.5402982234954834e-01 3.7021011114120483e-01 + + + <_> + + 0 -1 430 -2.6698080822825432e-02 + + + 1.7109179496765137e-01 5.1014107465744019e-01 + + + <_> + + 0 -1 431 -3.0561879277229309e-02 + + + 1.9042180478572845e-01 5.1687937974929810e-01 + + + <_> + + 0 -1 432 2.8511548880487680e-03 + + + 4.4475069642066956e-01 6.3138538599014282e-01 + + + <_> + + 0 -1 433 -3.6211479455232620e-02 + + + 2.4907270073890686e-01 5.3773492574691772e-01 + + + <_> + + 0 -1 434 -2.4115189444273710e-03 + + + 5.3812432289123535e-01 3.6642369627952576e-01 + + + <_> + + 0 -1 435 -7.7253201743587852e-04 + + + 5.5302321910858154e-01 3.5415500402450562e-01 + + + <_> + + 0 -1 436 2.9481729143299162e-04 + + + 4.1326990723609924e-01 5.6672430038452148e-01 + + + <_> + + 0 -1 437 -6.2334560789167881e-03 + + + 9.8787233233451843e-02 5.1986688375473022e-01 + + + <_> + + 0 -1 438 -2.6274729520082474e-02 + + + 9.1127492487430573e-02 5.0281071662902832e-01 + + + <_> + + 0 -1 439 5.3212260827422142e-03 + + + 4.7266489267349243e-01 6.2227207422256470e-01 + + + <_> + + 0 -1 440 -4.1129058226943016e-03 + + + 2.1574570238590240e-01 5.1378047466278076e-01 + + + <_> + + 0 -1 441 3.2457809429615736e-03 + + + 5.4107707738876343e-01 3.7217769026756287e-01 + + + <_> + + 0 -1 442 -1.6359709203243256e-02 + + + 7.7878749370574951e-01 4.6852919459342957e-01 + + + <_> + + 0 -1 443 3.2166109303943813e-04 + + + 5.4789870977401733e-01 4.2403739690780640e-01 + + + <_> + + 0 -1 444 6.4452440710738301e-04 + + + 5.3305608034133911e-01 3.5013249516487122e-01 + + + <_> + + 0 -1 445 -7.8909732401371002e-03 + + + 6.9235211610794067e-01 4.7265690565109253e-01 + + + <_> + + 0 -1 446 4.8336211591959000e-02 + + + 5.0559002161026001e-01 7.5749203562736511e-02 + + + <_> + + 0 -1 447 -7.5178127735853195e-04 + + + 3.7837418913841248e-01 5.5385738611221313e-01 + + + <_> + + 0 -1 448 -2.4953910615295172e-03 + + + 3.0816510319709778e-01 5.3596121072769165e-01 + + + <_> + + 0 -1 449 -2.2385010961443186e-03 + + + 6.6339588165283203e-01 4.6493428945541382e-01 + + + <_> + + 0 -1 450 -1.7988430336117744e-03 + + + 6.5968447923660278e-01 4.3471878767013550e-01 + + + <_> + + 0 -1 451 8.7860915809869766e-03 + + + 5.2318328619003296e-01 2.3155799508094788e-01 + + + <_> + + 0 -1 452 3.6715380847454071e-03 + + + 5.2042502164840698e-01 2.9773768782615662e-01 + + + <_> + + 0 -1 453 -3.5336449742317200e-02 + + + 7.2388780117034912e-01 4.8615050315856934e-01 + + + <_> + + 0 -1 454 -6.9189240457490087e-04 + + + 3.1050220131874084e-01 5.2298247814178467e-01 + + + <_> + + 0 -1 455 -3.3946109469980001e-03 + + + 3.1389680504798889e-01 5.2101737260818481e-01 + + + <_> + + 0 -1 456 9.8569283727556467e-04 + + + 4.5365801453590393e-01 6.5850979089736938e-01 + + + <_> + + 0 -1 457 -5.0163101404905319e-02 + + + 1.8044540286064148e-01 5.1989167928695679e-01 + + + <_> + + 0 -1 458 -2.2367259953171015e-03 + + + 7.2557020187377930e-01 4.6513590216636658e-01 + + + <_> + + 0 -1 459 7.4326287722215056e-04 + + + 4.4129210710525513e-01 5.8985459804534912e-01 + + + <_> + + 0 -1 460 -9.3485182151198387e-04 + + + 3.5000529885292053e-01 5.3660178184509277e-01 + + + <_> + + 0 -1 461 1.7497939988970757e-02 + + + 4.9121949076652527e-01 8.3152848482131958e-01 + + + <_> + + 0 -1 462 -1.5200000489130616e-03 + + + 3.5702759027481079e-01 5.3705602884292603e-01 + + + <_> + + 0 -1 463 7.8003940870985389e-04 + + + 4.3537721037864685e-01 5.9673351049423218e-01 + + + + + <_> + 103 + 5.0610481262207031e+01 + + <_> + + 0 -1 464 -9.9945552647113800e-03 + + + 6.1625832319259644e-01 3.0545330047607422e-01 + + + <_> + + 0 -1 465 -1.1085229925811291e-03 + + + 5.8182948827743530e-01 3.1555780768394470e-01 + + + <_> + + 0 -1 466 1.0364380432292819e-03 + + + 2.5520521402359009e-01 5.6929117441177368e-01 + + + <_> + + 0 -1 467 6.8211311008781195e-04 + + + 3.6850899457931519e-01 5.9349310398101807e-01 + + + <_> + + 0 -1 468 -6.8057340104132891e-04 + + + 2.3323920369148254e-01 5.4747921228408813e-01 + + + <_> + + 0 -1 469 2.6068789884448051e-04 + + + 3.2574570178985596e-01 5.6675457954406738e-01 + + + <_> + + 0 -1 470 5.1607372006401420e-04 + + + 3.7447169423103333e-01 5.8454728126525879e-01 + + + <_> + + 0 -1 471 8.5007521556690335e-04 + + + 3.4203711152076721e-01 5.5228072404861450e-01 + + + <_> + + 0 -1 472 -1.8607829697430134e-03 + + + 2.8044199943542480e-01 5.3754240274429321e-01 + + + <_> + + 0 -1 473 -1.5033970121294260e-03 + + + 2.5790509581565857e-01 5.4989522695541382e-01 + + + <_> + + 0 -1 474 2.3478909861296415e-03 + + + 4.1751560568809509e-01 6.3137108087539673e-01 + + + <_> + + 0 -1 475 -2.8880240279249847e-04 + + + 5.8651697635650635e-01 4.0526661276817322e-01 + + + <_> + + 0 -1 476 8.9405477046966553e-03 + + + 5.2111411094665527e-01 2.3186540603637695e-01 + + + <_> + + 0 -1 477 -1.9327739253640175e-02 + + + 2.7534329891204834e-01 5.2415257692337036e-01 + + + <_> + + 0 -1 478 -2.0202060113660991e-04 + + + 5.7229787111282349e-01 3.6771959066390991e-01 + + + <_> + + 0 -1 479 2.1179069299250841e-03 + + + 4.4661080837249756e-01 5.5424308776855469e-01 + + + <_> + + 0 -1 480 -1.7743760254234076e-03 + + + 2.8132531046867371e-01 5.3009599447250366e-01 + + + <_> + + 0 -1 481 4.2234458960592747e-03 + + + 4.3997099995613098e-01 5.7954281568527222e-01 + + + <_> + + 0 -1 482 -1.4375220052897930e-02 + + + 2.9811179637908936e-01 5.2920591831207275e-01 + + + <_> + + 0 -1 483 -1.5349180437624454e-02 + + + 7.7052152156829834e-01 4.7481718659400940e-01 + + + <_> + + 0 -1 484 1.5152279956964776e-05 + + + 3.7188440561294556e-01 5.5768972635269165e-01 + + + <_> + + 0 -1 485 -9.1293919831514359e-03 + + + 3.6151960492134094e-01 5.2867668867111206e-01 + + + <_> + + 0 -1 486 2.2512159775942564e-03 + + + 5.3647047281265259e-01 3.4862980246543884e-01 + + + <_> + + 0 -1 487 -4.9696918576955795e-03 + + + 6.9276517629623413e-01 4.6768361330032349e-01 + + + <_> + + 0 -1 488 -1.2829010374844074e-02 + + + 7.7121537923812866e-01 4.6607351303100586e-01 + + + <_> + + 0 -1 489 -9.3660065904259682e-03 + + + 3.3749839663505554e-01 5.3512877225875854e-01 + + + <_> + + 0 -1 490 3.2452319283038378e-03 + + + 5.3251898288726807e-01 3.2896101474761963e-01 + + + <_> + + 0 -1 491 -1.1723560281097889e-02 + + + 6.8376529216766357e-01 4.7543001174926758e-01 + + + <_> + + 0 -1 492 2.9257940695970319e-05 + + + 3.5720878839492798e-01 5.3605020046234131e-01 + + + <_> + + 0 -1 493 -2.2244219508138485e-05 + + + 5.5414271354675293e-01 3.5520640015602112e-01 + + + <_> + + 0 -1 494 5.0881509669125080e-03 + + + 5.0708442926406860e-01 1.2564620375633240e-01 + + + <_> + + 0 -1 495 2.7429679408669472e-02 + + + 5.2695602178573608e-01 1.6258180141448975e-01 + + + <_> + + 0 -1 496 -6.4142867922782898e-03 + + + 7.1455889940261841e-01 4.5841971039772034e-01 + + + <_> + + 0 -1 497 3.3479959238320589e-03 + + + 5.3986120223999023e-01 3.4946969151496887e-01 + + + <_> + + 0 -1 498 -8.2635492086410522e-02 + + + 2.4391929805278778e-01 5.1602262258529663e-01 + + + <_> + + 0 -1 499 1.0261740535497665e-03 + + + 3.8868919014930725e-01 5.7679080963134766e-01 + + + <_> + + 0 -1 500 -1.6307090409100056e-03 + + + 3.3894580602645874e-01 5.3477007150650024e-01 + + + <_> + + 0 -1 501 2.4546680506318808e-03 + + + 4.6014139056205750e-01 6.3872468471527100e-01 + + + <_> + + 0 -1 502 -9.9476519972085953e-04 + + + 5.7698792219161987e-01 4.1203960776329041e-01 + + + <_> + + 0 -1 503 1.5409190207719803e-02 + + + 4.8787090182304382e-01 7.0898222923278809e-01 + + + <_> + + 0 -1 504 1.1784400558099151e-03 + + + 5.2635532617568970e-01 2.8952449560165405e-01 + + + <_> + + 0 -1 505 -2.7701919898390770e-02 + + + 1.4988289773464203e-01 5.2196067571640015e-01 + + + <_> + + 0 -1 506 -2.9505399987101555e-02 + + + 2.4893319234251976e-02 4.9998161196708679e-01 + + + <_> + + 0 -1 507 4.5159430010244250e-04 + + + 5.4646229743957520e-01 4.0296629071235657e-01 + + + <_> + + 0 -1 508 7.1772639639675617e-03 + + + 4.2710569500923157e-01 5.8662968873977661e-01 + + + <_> + + 0 -1 509 -7.4182048439979553e-02 + + + 6.8741792440414429e-01 4.9190279841423035e-01 + + + <_> + + 0 -1 510 -1.7254160717129707e-02 + + + 3.3706760406494141e-01 5.3487390279769897e-01 + + + <_> + + 0 -1 511 1.4851559884846210e-02 + + + 4.6267929673194885e-01 6.1299049854278564e-01 + + + <_> + + 0 -1 512 1.0002000257372856e-02 + + + 5.3461229801177979e-01 3.4234538674354553e-01 + + + <_> + + 0 -1 513 2.0138120744377375e-03 + + + 4.6438300609588623e-01 5.8243042230606079e-01 + + + <_> + + 0 -1 514 1.5135470312088728e-03 + + + 5.1963961124420166e-01 2.8561499714851379e-01 + + + <_> + + 0 -1 515 3.1381431035697460e-03 + + + 4.8381629586219788e-01 5.9585297107696533e-01 + + + <_> + + 0 -1 516 -5.1450440660119057e-03 + + + 8.9203029870986938e-01 4.7414121031761169e-01 + + + <_> + + 0 -1 517 -4.4736708514392376e-03 + + + 2.0339429378509521e-01 5.3372788429260254e-01 + + + <_> + + 0 -1 518 1.9628470763564110e-03 + + + 4.5716339349746704e-01 6.7258632183074951e-01 + + + <_> + + 0 -1 519 5.4260450415313244e-03 + + + 5.2711081504821777e-01 2.8456708788871765e-01 + + + <_> + + 0 -1 520 4.9611460417509079e-04 + + + 4.1383129358291626e-01 5.7185977697372437e-01 + + + <_> + + 0 -1 521 9.3728788197040558e-03 + + + 5.2251511812210083e-01 2.8048470616340637e-01 + + + <_> + + 0 -1 522 6.0500897234305739e-04 + + + 5.2367687225341797e-01 3.3145239949226379e-01 + + + <_> + + 0 -1 523 5.6792551185935736e-04 + + + 4.5310598611831665e-01 6.2769711017608643e-01 + + + <_> + + 0 -1 524 2.4644339457154274e-02 + + + 5.1308518648147583e-01 2.0171439647674561e-01 + + + <_> + + 0 -1 525 -1.0290450416505337e-02 + + + 7.7865952253341675e-01 4.8766410350799561e-01 + + + <_> + + 0 -1 526 2.0629419013857841e-03 + + + 4.2885988950729370e-01 5.8812642097473145e-01 + + + <_> + + 0 -1 527 -5.0519481301307678e-03 + + + 3.5239779949188232e-01 5.2860087156295776e-01 + + + <_> + + 0 -1 528 -5.7692620903253555e-03 + + + 6.8410861492156982e-01 4.5880940556526184e-01 + + + <_> + + 0 -1 529 -4.5789941214025021e-04 + + + 3.5655200481414795e-01 5.4859781265258789e-01 + + + <_> + + 0 -1 530 -7.5918837683275342e-04 + + + 3.3687931299209595e-01 5.2541971206665039e-01 + + + <_> + + 0 -1 531 -1.7737259622663260e-03 + + + 3.4221610426902771e-01 5.4540151357650757e-01 + + + <_> + + 0 -1 532 -8.5610467940568924e-03 + + + 6.5336120128631592e-01 4.4858568906784058e-01 + + + <_> + + 0 -1 533 1.7277270089834929e-03 + + + 5.3075802326202393e-01 3.9253529906272888e-01 + + + <_> + + 0 -1 534 -2.8199609369039536e-02 + + + 6.8574589490890503e-01 4.5885840058326721e-01 + + + <_> + + 0 -1 535 -1.7781109781935811e-03 + + + 4.0378510951995850e-01 5.3698569536209106e-01 + + + <_> + + 0 -1 536 3.3177141449414194e-04 + + + 5.3997987508773804e-01 3.7057501077651978e-01 + + + <_> + + 0 -1 537 2.6385399978607893e-03 + + + 4.6654370427131653e-01 6.4527308940887451e-01 + + + <_> + + 0 -1 538 -2.1183069329708815e-03 + + + 5.9147810935974121e-01 4.0646770596504211e-01 + + + <_> + + 0 -1 539 -1.4773289673030376e-02 + + + 3.6420381069183350e-01 5.2947628498077393e-01 + + + <_> + + 0 -1 540 -1.6815440729260445e-02 + + + 2.6642319560050964e-01 5.1449728012084961e-01 + + + <_> + + 0 -1 541 -6.3370140269398689e-03 + + + 6.7795312404632568e-01 4.8520979285240173e-01 + + + <_> + + 0 -1 542 -4.4560048991115764e-05 + + + 5.6139647960662842e-01 4.1530540585517883e-01 + + + <_> + + 0 -1 543 -1.0240620467811823e-03 + + + 5.9644782543182373e-01 4.5663040876388550e-01 + + + <_> + + 0 -1 544 -2.3161689750850201e-03 + + + 2.9761150479316711e-01 5.1881599426269531e-01 + + + <_> + + 0 -1 545 5.3217571973800659e-01 + + + 5.1878392696380615e-01 2.2026319801807404e-01 + + + <_> + + 0 -1 546 -1.6643050312995911e-01 + + + 1.8660229444503784e-01 5.0603431463241577e-01 + + + <_> + + 0 -1 547 1.1253529787063599e-01 + + + 5.2121251821517944e-01 1.1850229650735855e-01 + + + <_> + + 0 -1 548 9.3046864494681358e-03 + + + 4.5899370312690735e-01 6.8261492252349854e-01 + + + <_> + + 0 -1 549 -4.6255099587142467e-03 + + + 3.0799409747123718e-01 5.2250087261199951e-01 + + + <_> + + 0 -1 550 -1.1116469651460648e-01 + + + 2.1010440587997437e-01 5.0808018445968628e-01 + + + <_> + + 0 -1 551 -1.0888439603149891e-02 + + + 5.7653552293777466e-01 4.7904640436172485e-01 + + + <_> + + 0 -1 552 5.8564301580190659e-03 + + + 5.0651001930236816e-01 1.5635989606380463e-01 + + + <_> + + 0 -1 553 5.4854389280080795e-02 + + + 4.9669149518013000e-01 7.2305107116699219e-01 + + + <_> + + 0 -1 554 -1.1197339743375778e-02 + + + 2.1949790418148041e-01 5.0987982749938965e-01 + + + <_> + + 0 -1 555 4.4069071300327778e-03 + + + 4.7784018516540527e-01 6.7709028720855713e-01 + + + <_> + + 0 -1 556 -6.3665293157100677e-02 + + + 1.9363629817962646e-01 5.0810241699218750e-01 + + + <_> + + 0 -1 557 -9.8081491887569427e-03 + + + 5.9990632534027100e-01 4.8103410005569458e-01 + + + <_> + + 0 -1 558 -2.1717099007219076e-03 + + + 3.3383339643478394e-01 5.2354729175567627e-01 + + + <_> + + 0 -1 559 -1.3315520249307156e-02 + + + 6.6170698404312134e-01 4.9192130565643311e-01 + + + <_> + + 0 -1 560 2.5442079640924931e-03 + + + 4.4887441396713257e-01 6.0821849107742310e-01 + + + <_> + + 0 -1 561 1.2037839740514755e-02 + + + 5.4093921184539795e-01 3.2924321293830872e-01 + + + <_> + + 0 -1 562 -2.0701050758361816e-02 + + + 6.8191200494766235e-01 4.5949959754943848e-01 + + + <_> + + 0 -1 563 2.7608279138803482e-02 + + + 4.6307921409606934e-01 5.7672828435897827e-01 + + + <_> + + 0 -1 564 1.2370620388537645e-03 + + + 5.1653790473937988e-01 2.6350161433219910e-01 + + + <_> + + 0 -1 565 -3.7669338285923004e-02 + + + 2.5363931059837341e-01 5.2789801359176636e-01 + + + <_> + + 0 -1 566 -1.8057259730994701e-03 + + + 3.9851561188697815e-01 5.5175000429153442e-01 + + + + + <_> + 111 + 5.4620071411132812e+01 + + <_> + + 0 -1 567 4.4299028813838959e-03 + + + 2.8910180926322937e-01 6.3352262973785400e-01 + + + <_> + + 0 -1 568 -2.3813319858163595e-03 + + + 6.2117892503738403e-01 3.4774878621101379e-01 + + + <_> + + 0 -1 569 2.2915711160749197e-03 + + + 2.2544120252132416e-01 5.5821180343627930e-01 + + + <_> + + 0 -1 570 9.9457940086722374e-04 + + + 3.7117108702659607e-01 5.9300708770751953e-01 + + + <_> + + 0 -1 571 7.7164667891338468e-04 + + + 5.6517201662063599e-01 3.3479958772659302e-01 + + + <_> + + 0 -1 572 -1.1386410333216190e-03 + + + 3.0691260099411011e-01 5.5086308717727661e-01 + + + <_> + + 0 -1 573 -1.6403039626311511e-04 + + + 5.7628279924392700e-01 3.6990478634834290e-01 + + + <_> + + 0 -1 574 2.9793529392918572e-05 + + + 2.6442441344261169e-01 5.4379111528396606e-01 + + + <_> + + 0 -1 575 8.5774902254343033e-03 + + + 5.0511389970779419e-01 1.7957249283790588e-01 + + + <_> + + 0 -1 576 -2.6032689493149519e-04 + + + 5.8269691467285156e-01 4.4468268752098083e-01 + + + <_> + + 0 -1 577 -6.1404630541801453e-03 + + + 3.1138521432876587e-01 5.3469717502593994e-01 + + + <_> + + 0 -1 578 -2.3086950182914734e-02 + + + 3.2779461145401001e-01 5.3311979770660400e-01 + + + <_> + + 0 -1 579 -1.4243650250136852e-02 + + + 7.3817098140716553e-01 4.5880630612373352e-01 + + + <_> + + 0 -1 580 1.9487129524350166e-02 + + + 5.2566307783126831e-01 2.2744719684123993e-01 + + + <_> + + 0 -1 581 -9.6681108698248863e-04 + + + 5.5112308263778687e-01 3.8150069117546082e-01 + + + <_> + + 0 -1 582 3.1474709976464510e-03 + + + 5.4256367683410645e-01 2.5437268614768982e-01 + + + <_> + + 0 -1 583 -1.8026070029009134e-04 + + + 5.3801918029785156e-01 3.4063041210174561e-01 + + + <_> + + 0 -1 584 -6.0266260989010334e-03 + + + 3.0358019471168518e-01 5.4205721616744995e-01 + + + <_> + + 0 -1 585 4.4462960795499384e-04 + + + 3.9909970760345459e-01 5.6601101160049438e-01 + + + <_> + + 0 -1 586 2.2609760053455830e-03 + + + 5.5628067255020142e-01 3.9406880736351013e-01 + + + <_> + + 0 -1 587 5.1133058965206146e-02 + + + 4.6096539497375488e-01 7.1185618638992310e-01 + + + <_> + + 0 -1 588 -1.7786309123039246e-02 + + + 2.3161660134792328e-01 5.3221440315246582e-01 + + + <_> + + 0 -1 589 -4.9679628573358059e-03 + + + 2.3307719826698303e-01 5.1220291852951050e-01 + + + <_> + + 0 -1 590 2.0667689386755228e-03 + + + 4.6574440598487854e-01 6.4554882049560547e-01 + + + <_> + + 0 -1 591 7.4413768015801907e-03 + + + 5.1543921232223511e-01 2.3616339266300201e-01 + + + <_> + + 0 -1 592 -3.6277279723435640e-03 + + + 6.2197732925415039e-01 4.4766610860824585e-01 + + + <_> + + 0 -1 593 -5.3530759178102016e-03 + + + 1.8373550474643707e-01 5.1022082567214966e-01 + + + <_> + + 0 -1 594 1.4530919492244720e-01 + + + 5.1459872722625732e-01 1.5359309315681458e-01 + + + <_> + + 0 -1 595 2.4394490756094456e-03 + + + 5.3436601161956787e-01 3.6246618628501892e-01 + + + <_> + + 0 -1 596 -3.1283390708267689e-03 + + + 6.2150079011917114e-01 4.8455920815467834e-01 + + + <_> + + 0 -1 597 1.7940260004252195e-03 + + + 4.2992618680000305e-01 5.8241981267929077e-01 + + + <_> + + 0 -1 598 3.6253821104764938e-02 + + + 5.2603340148925781e-01 1.4394679665565491e-01 + + + <_> + + 0 -1 599 -5.1746722310781479e-03 + + + 3.5065388679504395e-01 5.2870452404022217e-01 + + + <_> + + 0 -1 600 6.5383297624066472e-04 + + + 4.8096409440040588e-01 6.1220401525497437e-01 + + + <_> + + 0 -1 601 -2.6480229571461678e-02 + + + 1.1393620073795319e-01 5.0455862283706665e-01 + + + <_> + + 0 -1 602 -3.0440660193562508e-03 + + + 6.3520950078964233e-01 4.7947341203689575e-01 + + + <_> + + 0 -1 603 3.6993520334362984e-03 + + + 5.1311182975769043e-01 2.4985109269618988e-01 + + + <_> + + 0 -1 604 -3.6762931267730892e-04 + + + 5.4213947057723999e-01 3.7095320224761963e-01 + + + <_> + + 0 -1 605 -4.1382260620594025e-02 + + + 1.8949599564075470e-01 5.0816917419433594e-01 + + + <_> + + 0 -1 606 -1.0532729793339968e-03 + + + 6.4543670415878296e-01 4.7836089134216309e-01 + + + <_> + + 0 -1 607 -2.1648600231856108e-03 + + + 6.2150311470031738e-01 4.4998261332511902e-01 + + + <_> + + 0 -1 608 -5.6747748749330640e-04 + + + 3.7126109004020691e-01 5.4193347692489624e-01 + + + <_> + + 0 -1 609 1.7375840246677399e-01 + + + 5.0236439704895020e-01 1.2157420068979263e-01 + + + <_> + + 0 -1 610 -2.9049699660390615e-03 + + + 3.2402679324150085e-01 5.3818839788436890e-01 + + + <_> + + 0 -1 611 1.2299539521336555e-03 + + + 4.1655078530311584e-01 5.7034862041473389e-01 + + + <_> + + 0 -1 612 -5.4329237900674343e-04 + + + 3.8540428876876831e-01 5.5475491285324097e-01 + + + <_> + + 0 -1 613 -8.3297258242964745e-03 + + + 2.2044940292835236e-01 5.0970828533172607e-01 + + + <_> + + 0 -1 614 -1.0417630255687982e-04 + + + 5.6070661544799805e-01 4.3030360341072083e-01 + + + <_> + + 0 -1 615 3.1204700469970703e-02 + + + 4.6216571331024170e-01 6.9820040464401245e-01 + + + <_> + + 0 -1 616 7.8943502157926559e-03 + + + 5.2695941925048828e-01 2.2690680623054504e-01 + + + <_> + + 0 -1 617 -4.3645310215651989e-03 + + + 6.3592231273651123e-01 4.5379561185836792e-01 + + + <_> + + 0 -1 618 7.6793059706687927e-03 + + + 5.2747678756713867e-01 2.7404838800430298e-01 + + + <_> + + 0 -1 619 -2.5431139394640923e-02 + + + 2.0385199785232544e-01 5.0717329978942871e-01 + + + <_> + + 0 -1 620 8.2000601105391979e-04 + + + 4.5874550938606262e-01 6.1198681592941284e-01 + + + <_> + + 0 -1 621 2.9284600168466568e-03 + + + 5.0712740421295166e-01 2.0282049477100372e-01 + + + <_> + + 0 -1 622 4.5256470912136137e-05 + + + 4.8121041059494019e-01 5.4308217763900757e-01 + + + <_> + + 0 -1 623 1.3158309739083052e-03 + + + 4.6258139610290527e-01 6.7793232202529907e-01 + + + <_> + + 0 -1 624 1.5870389761403203e-03 + + + 5.3862917423248291e-01 3.4314650297164917e-01 + + + <_> + + 0 -1 625 -2.1539660170674324e-02 + + + 2.5942500680685043e-02 5.0032228231430054e-01 + + + <_> + + 0 -1 626 1.4334480278193951e-02 + + + 5.2028447389602661e-01 1.5906329452991486e-01 + + + <_> + + 0 -1 627 -8.3881383761763573e-03 + + + 7.2824811935424805e-01 4.6480441093444824e-01 + + + <_> + + 0 -1 628 9.1906841844320297e-03 + + + 5.5623567104339600e-01 3.9231911301612854e-01 + + + <_> + + 0 -1 629 -5.8453059755265713e-03 + + + 6.8033927679061890e-01 4.6291279792785645e-01 + + + <_> + + 0 -1 630 -5.4707799106836319e-02 + + + 2.5616711378097534e-01 5.2061259746551514e-01 + + + <_> + + 0 -1 631 9.1142775490880013e-03 + + + 5.1896202564239502e-01 3.0538770556449890e-01 + + + <_> + + 0 -1 632 -1.5575000084936619e-02 + + + 1.2950749695301056e-01 5.1690948009490967e-01 + + + <_> + + 0 -1 633 -1.2050600344082341e-04 + + + 5.7350981235504150e-01 4.2308250069618225e-01 + + + <_> + + 0 -1 634 1.2273970060050488e-03 + + + 5.2898782491683960e-01 4.0797919034957886e-01 + + + <_> + + 0 -1 635 -1.2186600361019373e-03 + + + 6.5756398439407349e-01 4.5744091272354126e-01 + + + <_> + + 0 -1 636 -3.3256649039685726e-03 + + + 3.6280471086502075e-01 5.1950198411941528e-01 + + + <_> + + 0 -1 637 -1.3288309797644615e-02 + + + 1.2842659652233124e-01 5.0434887409210205e-01 + + + <_> + + 0 -1 638 -3.3839771058410406e-03 + + + 6.2922400236129761e-01 4.7575059533119202e-01 + + + <_> + + 0 -1 639 -2.1954220533370972e-01 + + + 1.4877319335937500e-01 5.0650137662887573e-01 + + + <_> + + 0 -1 640 4.9111708067357540e-03 + + + 4.2561021447181702e-01 5.6658387184143066e-01 + + + <_> + + 0 -1 641 -1.8744950648397207e-04 + + + 4.0041440725326538e-01 5.5868571996688843e-01 + + + <_> + + 0 -1 642 -5.2178641781210899e-03 + + + 6.0091161727905273e-01 4.8127061128616333e-01 + + + <_> + + 0 -1 643 -1.1111519997939467e-03 + + + 3.5149338841438293e-01 5.2870899438858032e-01 + + + <_> + + 0 -1 644 4.4036400504410267e-03 + + + 4.6422758698463440e-01 5.9240859746932983e-01 + + + <_> + + 0 -1 645 1.2299499660730362e-01 + + + 5.0255292654037476e-01 6.9152481853961945e-02 + + + <_> + + 0 -1 646 -1.2313510291278362e-02 + + + 5.8845919370651245e-01 4.9340128898620605e-01 + + + <_> + + 0 -1 647 4.1471039876341820e-03 + + + 4.3722391128540039e-01 5.8934777975082397e-01 + + + <_> + + 0 -1 648 -3.5502649843692780e-03 + + + 4.3275511264801025e-01 5.3962701559066772e-01 + + + <_> + + 0 -1 649 -1.9224269315600395e-02 + + + 1.9131340086460114e-01 5.0683307647705078e-01 + + + <_> + + 0 -1 650 1.4395059552043676e-03 + + + 5.3081780672073364e-01 4.2435330152511597e-01 + + + <_> + + 0 -1 651 -6.7751999013125896e-03 + + + 6.3653957843780518e-01 4.5400860905647278e-01 + + + <_> + + 0 -1 652 7.0119630545377731e-03 + + + 5.1898342370986938e-01 3.0261999368667603e-01 + + + <_> + + 0 -1 653 5.4014651104807854e-03 + + + 5.1050621271133423e-01 2.5576829910278320e-01 + + + <_> + + 0 -1 654 9.0274988906458020e-04 + + + 4.6969148516654968e-01 5.8618277311325073e-01 + + + <_> + + 0 -1 655 1.1474450118839741e-02 + + + 5.0536459684371948e-01 1.5271779894828796e-01 + + + <_> + + 0 -1 656 -6.7023430019617081e-03 + + + 6.5089809894561768e-01 4.8906040191650391e-01 + + + <_> + + 0 -1 657 -2.0462959073483944e-03 + + + 6.2418168783187866e-01 4.5146000385284424e-01 + + + <_> + + 0 -1 658 -9.9951568990945816e-03 + + + 3.4327811002731323e-01 5.4009538888931274e-01 + + + <_> + + 0 -1 659 -3.5700708627700806e-02 + + + 1.8780590593814850e-01 5.0740778446197510e-01 + + + <_> + + 0 -1 660 4.5584561303257942e-04 + + + 3.8052770495414734e-01 5.4025697708129883e-01 + + + <_> + + 0 -1 661 -5.4260600358247757e-02 + + + 6.8437147140502930e-01 4.5950970053672791e-01 + + + <_> + + 0 -1 662 6.0600461438298225e-03 + + + 5.5029052495956421e-01 4.5005279779434204e-01 + + + <_> + + 0 -1 663 -6.4791832119226456e-03 + + + 3.3688580989837646e-01 5.3107571601867676e-01 + + + <_> + + 0 -1 664 -1.4939469983801246e-03 + + + 6.4876401424407959e-01 4.7561758756637573e-01 + + + <_> + + 0 -1 665 1.4610530342906713e-05 + + + 4.0345790982246399e-01 5.4510641098022461e-01 + + + <_> + + 0 -1 666 -7.2321938350796700e-03 + + + 6.3868737220764160e-01 4.8247399926185608e-01 + + + <_> + + 0 -1 667 -4.0645818226039410e-03 + + + 2.9864218831062317e-01 5.1573359966278076e-01 + + + <_> + + 0 -1 668 3.0463080853223801e-02 + + + 5.0221997499465942e-01 7.1599560976028442e-01 + + + <_> + + 0 -1 669 -8.0544911324977875e-03 + + + 6.4924520254135132e-01 4.6192750334739685e-01 + + + <_> + + 0 -1 670 3.9505138993263245e-02 + + + 5.1505708694458008e-01 2.4506139755249023e-01 + + + <_> + + 0 -1 671 8.4530208259820938e-03 + + + 4.5736691355705261e-01 6.3940370082855225e-01 + + + <_> + + 0 -1 672 -1.1688120430335402e-03 + + + 3.8655120134353638e-01 5.4836612939834595e-01 + + + <_> + + 0 -1 673 2.8070670086890459e-03 + + + 5.1285791397094727e-01 2.7014800906181335e-01 + + + <_> + + 0 -1 674 4.7365209320560098e-04 + + + 4.0515819191932678e-01 5.3874611854553223e-01 + + + <_> + + 0 -1 675 1.1741080321371555e-02 + + + 5.2959501743316650e-01 3.7194138765335083e-01 + + + <_> + + 0 -1 676 3.1833238899707794e-03 + + + 4.7894069552421570e-01 6.8951261043548584e-01 + + + <_> + + 0 -1 677 7.0241501089185476e-04 + + + 5.3844892978668213e-01 3.9180809259414673e-01 + + + + + <_> + 102 + 5.0169731140136719e+01 + + <_> + + 0 -1 678 1.7059929668903351e-02 + + + 3.9485278725624084e-01 7.1425348520278931e-01 + + + <_> + + 0 -1 679 2.1840840578079224e-02 + + + 3.3703160285949707e-01 6.0900169610977173e-01 + + + <_> + + 0 -1 680 2.4520049919374287e-04 + + + 3.5005760192871094e-01 5.9879022836685181e-01 + + + <_> + + 0 -1 681 8.3272606134414673e-03 + + + 3.2675281167030334e-01 5.6972408294677734e-01 + + + <_> + + 0 -1 682 5.7148298947140574e-04 + + + 3.0445998907089233e-01 5.5316567420959473e-01 + + + <_> + + 0 -1 683 6.7373987985774875e-04 + + + 3.6500120162963867e-01 5.6726312637329102e-01 + + + <_> + + 0 -1 684 3.4681590477703139e-05 + + + 3.3135411143302917e-01 5.3887271881103516e-01 + + + <_> + + 0 -1 685 -5.8563398197293282e-03 + + + 2.6979428529739380e-01 5.4987788200378418e-01 + + + <_> + + 0 -1 686 8.5102273151278496e-03 + + + 5.2693581581115723e-01 2.7628791332244873e-01 + + + <_> + + 0 -1 687 -6.9817207753658295e-02 + + + 2.9096031188964844e-01 5.2592468261718750e-01 + + + <_> + + 0 -1 688 -8.6113670840859413e-04 + + + 5.8925771713256836e-01 4.0736979246139526e-01 + + + <_> + + 0 -1 689 9.7149249631911516e-04 + + + 3.5235640406608582e-01 5.4158622026443481e-01 + + + <_> + + 0 -1 690 -1.4727490452060010e-05 + + + 5.4230177402496338e-01 3.5031560063362122e-01 + + + <_> + + 0 -1 691 4.8420291393995285e-02 + + + 5.1939457654953003e-01 3.4111958742141724e-01 + + + <_> + + 0 -1 692 1.3257140526548028e-03 + + + 3.1577691435813904e-01 5.3353762626647949e-01 + + + <_> + + 0 -1 693 1.4922149603080470e-05 + + + 4.4512999057769775e-01 5.5365538597106934e-01 + + + <_> + + 0 -1 694 -2.7173398993909359e-03 + + + 3.0317419767379761e-01 5.2480888366699219e-01 + + + <_> + + 0 -1 695 2.9219500720500946e-03 + + + 4.7814530134201050e-01 6.6060417890548706e-01 + + + <_> + + 0 -1 696 -1.9804988987743855e-03 + + + 3.1863081455230713e-01 5.2876251935958862e-01 + + + <_> + + 0 -1 697 -4.0012109093368053e-03 + + + 6.4135968685150146e-01 4.7499281167984009e-01 + + + <_> + + 0 -1 698 -4.3491991236805916e-03 + + + 1.5074980258941650e-01 5.0989967584609985e-01 + + + <_> + + 0 -1 699 1.3490889687091112e-03 + + + 4.3161588907241821e-01 5.8811670541763306e-01 + + + <_> + + 0 -1 700 1.8597070127725601e-02 + + + 4.7355538606643677e-01 9.0897941589355469e-01 + + + <_> + + 0 -1 701 -1.8562379991635680e-03 + + + 3.5531890392303467e-01 5.5778372287750244e-01 + + + <_> + + 0 -1 702 2.2940430790185928e-03 + + + 4.5000949501991272e-01 6.5808779001235962e-01 + + + <_> + + 0 -1 703 2.9982850537635386e-04 + + + 5.6292420625686646e-01 3.9758789539337158e-01 + + + <_> + + 0 -1 704 3.5455459728837013e-03 + + + 5.3815472126007080e-01 3.6054858565330505e-01 + + + <_> + + 0 -1 705 9.6104722470045090e-03 + + + 5.2559971809387207e-01 1.7967459559440613e-01 + + + <_> + + 0 -1 706 -6.2783220782876015e-03 + + + 2.2728569805622101e-01 5.1140302419662476e-01 + + + <_> + + 0 -1 707 3.4598479978740215e-03 + + + 4.6263080835342407e-01 6.6082191467285156e-01 + + + <_> + + 0 -1 708 -1.3112019514665008e-03 + + + 6.3175398111343384e-01 4.4368579983711243e-01 + + + <_> + + 0 -1 709 2.6876179035753012e-03 + + + 5.4211097955703735e-01 4.0540221333503723e-01 + + + <_> + + 0 -1 710 3.9118169806897640e-03 + + + 5.3584778308868408e-01 3.2734549045562744e-01 + + + <_> + + 0 -1 711 -1.4206450432538986e-02 + + + 7.7935767173767090e-01 4.9757811427116394e-01 + + + <_> + + 0 -1 712 7.1705528534948826e-04 + + + 5.2973198890686035e-01 3.5609039664268494e-01 + + + <_> + + 0 -1 713 1.6635019565001130e-03 + + + 4.6780940890312195e-01 5.8164817094802856e-01 + + + <_> + + 0 -1 714 3.3686188980937004e-03 + + + 5.2767342329025269e-01 3.4464201331138611e-01 + + + <_> + + 0 -1 715 1.2799530290067196e-02 + + + 4.8346799612045288e-01 7.4721592664718628e-01 + + + <_> + + 0 -1 716 3.3901201095432043e-03 + + + 4.5118591189384460e-01 6.4017212390899658e-01 + + + <_> + + 0 -1 717 4.7070779837667942e-03 + + + 5.3356587886810303e-01 3.5552209615707397e-01 + + + <_> + + 0 -1 718 1.4819339849054813e-03 + + + 4.2507070302963257e-01 5.7727241516113281e-01 + + + <_> + + 0 -1 719 -6.9995759986341000e-03 + + + 3.0033200979232788e-01 5.2929002046585083e-01 + + + <_> + + 0 -1 720 1.5939010307192802e-02 + + + 5.0673192739486694e-01 1.6755819320678711e-01 + + + <_> + + 0 -1 721 7.6377349905669689e-03 + + + 4.7950699925422668e-01 7.0856010913848877e-01 + + + <_> + + 0 -1 722 6.7334040068089962e-03 + + + 5.1331132650375366e-01 2.1624700725078583e-01 + + + <_> + + 0 -1 723 -1.2858809903264046e-02 + + + 1.9388419389724731e-01 5.2513718605041504e-01 + + + <_> + + 0 -1 724 -6.2270800117403269e-04 + + + 5.6865382194519043e-01 4.1978681087493896e-01 + + + <_> + + 0 -1 725 -5.2651681471616030e-04 + + + 4.2241689562797546e-01 5.4296958446502686e-01 + + + <_> + + 0 -1 726 1.1075099930167198e-02 + + + 5.1137751340866089e-01 2.5145179033279419e-01 + + + <_> + + 0 -1 727 -3.6728251725435257e-02 + + + 7.1946620941162109e-01 4.8496189713478088e-01 + + + <_> + + 0 -1 728 -2.8207109426148236e-04 + + + 3.8402619957923889e-01 5.3944462537765503e-01 + + + <_> + + 0 -1 729 -2.7489690110087395e-03 + + + 5.9370887279510498e-01 4.5691820979118347e-01 + + + <_> + + 0 -1 730 1.0047519579529762e-02 + + + 5.1385760307312012e-01 2.8022980690002441e-01 + + + <_> + + 0 -1 731 -8.1497840583324432e-03 + + + 6.0900372266769409e-01 4.6361210942268372e-01 + + + <_> + + 0 -1 732 -6.8833888508379459e-03 + + + 3.4586110711097717e-01 5.2546602487564087e-01 + + + <_> + + 0 -1 733 -1.4039360394235700e-05 + + + 5.6931042671203613e-01 4.0820831060409546e-01 + + + <_> + + 0 -1 734 1.5498419525101781e-03 + + + 4.3505370616912842e-01 5.8065170049667358e-01 + + + <_> + + 0 -1 735 -6.7841499112546444e-03 + + + 1.4688730239868164e-01 5.1827752590179443e-01 + + + <_> + + 0 -1 736 2.1705629478674382e-04 + + + 5.2935242652893066e-01 3.4561741352081299e-01 + + + <_> + + 0 -1 737 3.1198898795992136e-04 + + + 4.6524509787559509e-01 5.9424138069152832e-01 + + + <_> + + 0 -1 738 5.4507530294358730e-03 + + + 4.6535089612007141e-01 7.0248460769653320e-01 + + + <_> + + 0 -1 739 -2.5818689027801156e-04 + + + 5.4972952604293823e-01 3.7689670920372009e-01 + + + <_> + + 0 -1 740 -1.7442539334297180e-02 + + + 3.9190879464149475e-01 5.4574978351593018e-01 + + + <_> + + 0 -1 741 -4.5343529433012009e-02 + + + 1.6313570737838745e-01 5.1549088954925537e-01 + + + <_> + + 0 -1 742 1.9190689781680703e-03 + + + 5.1458978652954102e-01 2.7918958663940430e-01 + + + <_> + + 0 -1 743 -6.0177869163453579e-03 + + + 6.5176361799240112e-01 4.7563329339027405e-01 + + + <_> + + 0 -1 744 -4.0720738470554352e-03 + + + 5.5146527290344238e-01 4.0926858782768250e-01 + + + <_> + + 0 -1 745 3.9855059003457427e-04 + + + 3.1652408838272095e-01 5.2855509519577026e-01 + + + <_> + + 0 -1 746 -6.5418570302426815e-03 + + + 6.8533778190612793e-01 4.6528089046478271e-01 + + + <_> + + 0 -1 747 3.4845089539885521e-03 + + + 5.4845881462097168e-01 4.5027598738670349e-01 + + + <_> + + 0 -1 748 -1.3696780428290367e-02 + + + 6.3957798480987549e-01 4.5725551247596741e-01 + + + <_> + + 0 -1 749 -1.7347140237689018e-02 + + + 2.7510729432106018e-01 5.1816147565841675e-01 + + + <_> + + 0 -1 750 -4.0885428898036480e-03 + + + 3.3256360888481140e-01 5.1949840784072876e-01 + + + <_> + + 0 -1 751 -9.4687901437282562e-03 + + + 5.9422808885574341e-01 4.8518198728561401e-01 + + + <_> + + 0 -1 752 1.7084840219467878e-03 + + + 4.1671109199523926e-01 5.5198061466217041e-01 + + + <_> + + 0 -1 753 9.4809094443917274e-03 + + + 5.4338949918746948e-01 4.2085149884223938e-01 + + + <_> + + 0 -1 754 -4.7389650717377663e-03 + + + 6.4071899652481079e-01 4.5606550574302673e-01 + + + <_> + + 0 -1 755 6.5761050209403038e-03 + + + 5.2145552635192871e-01 2.2582270205020905e-01 + + + <_> + + 0 -1 756 -2.1690549328923225e-03 + + + 3.1515279412269592e-01 5.1567047834396362e-01 + + + <_> + + 0 -1 757 1.4660170301795006e-02 + + + 4.8708370327949524e-01 6.6899412870407104e-01 + + + <_> + + 0 -1 758 1.7231999663636088e-04 + + + 3.5697489976882935e-01 5.2510780096054077e-01 + + + <_> + + 0 -1 759 -2.1803760901093483e-02 + + + 8.8259208202362061e-01 4.9663299322128296e-01 + + + <_> + + 0 -1 760 -9.4736106693744659e-02 + + + 1.4461620151996613e-01 5.0611138343811035e-01 + + + <_> + + 0 -1 761 5.5825551971793175e-03 + + + 5.3964787721633911e-01 4.2380660772323608e-01 + + + <_> + + 0 -1 762 1.9517090404406190e-03 + + + 4.1704109311103821e-01 5.4977869987487793e-01 + + + <_> + + 0 -1 763 1.2149900197982788e-02 + + + 4.6983671188354492e-01 5.6642740964889526e-01 + + + <_> + + 0 -1 764 -7.5169620104134083e-03 + + + 6.2677729129791260e-01 4.4631358981132507e-01 + + + <_> + + 0 -1 765 -7.1667909622192383e-02 + + + 3.0970111489295959e-01 5.2210032939910889e-01 + + + <_> + + 0 -1 766 -8.8292419910430908e-02 + + + 8.1123888492584229e-02 5.0063651800155640e-01 + + + <_> + + 0 -1 767 3.1063079833984375e-02 + + + 5.1555037498474121e-01 1.2822559475898743e-01 + + + <_> + + 0 -1 768 4.6621840447187424e-02 + + + 4.6997779607772827e-01 7.3639607429504395e-01 + + + <_> + + 0 -1 769 -1.2189489789307117e-02 + + + 3.9205300807952881e-01 5.5189967155456543e-01 + + + <_> + + 0 -1 770 1.3016110286116600e-02 + + + 5.2606582641601562e-01 3.6851361393928528e-01 + + + <_> + + 0 -1 771 -3.4952899441123009e-03 + + + 6.3392949104309082e-01 4.7162809967994690e-01 + + + <_> + + 0 -1 772 -4.4015039748046547e-05 + + + 5.3330272436141968e-01 3.7761849164962769e-01 + + + <_> + + 0 -1 773 -1.0966490209102631e-01 + + + 1.7653420567512512e-01 5.1983469724655151e-01 + + + <_> + + 0 -1 774 -9.0279558207839727e-04 + + + 5.3241598606109619e-01 3.8389080762863159e-01 + + + <_> + + 0 -1 775 7.1126641705632210e-04 + + + 4.6479299664497375e-01 5.7552242279052734e-01 + + + <_> + + 0 -1 776 -3.1250279862433672e-03 + + + 3.2367089390754700e-01 5.1667708158493042e-01 + + + <_> + + 0 -1 777 2.4144679773598909e-03 + + + 4.7874391078948975e-01 6.4597177505493164e-01 + + + <_> + + 0 -1 778 4.4391240226104856e-04 + + + 4.4093081355094910e-01 6.0102558135986328e-01 + + + <_> + + 0 -1 779 -2.2611189342569560e-04 + + + 4.0381139516830444e-01 5.4932558536529541e-01 + + + + + <_> + 135 + 6.6669120788574219e+01 + + <_> + + 0 -1 780 -4.6901289373636246e-02 + + + 6.6001719236373901e-01 3.7438011169433594e-01 + + + <_> + + 0 -1 781 -1.4568349579349160e-03 + + + 5.7839912176132202e-01 3.4377971291542053e-01 + + + <_> + + 0 -1 782 5.5598369799554348e-03 + + + 3.6222669482231140e-01 5.9082162380218506e-01 + + + <_> + + 0 -1 783 7.3170487303286791e-04 + + + 5.5004191398620605e-01 2.8735581040382385e-01 + + + <_> + + 0 -1 784 1.3318009441718459e-03 + + + 2.6731699705123901e-01 5.4310190677642822e-01 + + + <_> + + 0 -1 785 2.4347059661522508e-04 + + + 3.8550278544425964e-01 5.7413887977600098e-01 + + + <_> + + 0 -1 786 -3.0512469820678234e-03 + + + 5.5032098293304443e-01 3.4628450870513916e-01 + + + <_> + + 0 -1 787 -6.8657199153676629e-04 + + + 3.2912218570709229e-01 5.4295092821121216e-01 + + + <_> + + 0 -1 788 1.4668200165033340e-03 + + + 3.5883820056915283e-01 5.3518110513687134e-01 + + + <_> + + 0 -1 789 3.2021870720200241e-04 + + + 4.2968419194221497e-01 5.7002341747283936e-01 + + + <_> + + 0 -1 790 7.4122188379988074e-04 + + + 5.2821648120880127e-01 3.3668708801269531e-01 + + + <_> + + 0 -1 791 3.8330298848450184e-03 + + + 4.5595678687095642e-01 6.2573361396789551e-01 + + + <_> + + 0 -1 792 -1.5456439927220345e-02 + + + 2.3501169681549072e-01 5.1294529438018799e-01 + + + <_> + + 0 -1 793 2.6796779129654169e-03 + + + 5.3294152021408081e-01 4.1550621390342712e-01 + + + <_> + + 0 -1 794 2.8296569362282753e-03 + + + 4.2730879783630371e-01 5.8045381307601929e-01 + + + <_> + + 0 -1 795 -3.9444249123334885e-03 + + + 2.9126119613647461e-01 5.2026861906051636e-01 + + + <_> + + 0 -1 796 2.7179559692740440e-03 + + + 5.3076881170272827e-01 3.5856771469116211e-01 + + + <_> + + 0 -1 797 5.9077627956867218e-03 + + + 4.7037750482559204e-01 5.9415858983993530e-01 + + + <_> + + 0 -1 798 -4.2240349575877190e-03 + + + 2.1415670216083527e-01 5.0887960195541382e-01 + + + <_> + + 0 -1 799 4.0725888684391975e-03 + + + 4.7664138674736023e-01 6.8410611152648926e-01 + + + <_> + + 0 -1 800 1.0149530135095119e-02 + + + 5.3607988357543945e-01 3.7484970688819885e-01 + + + <_> + + 0 -1 801 -1.8864999583456665e-04 + + + 5.7201302051544189e-01 3.8538050651550293e-01 + + + <_> + + 0 -1 802 -4.8864358104765415e-03 + + + 3.6931228637695312e-01 5.3409588336944580e-01 + + + <_> + + 0 -1 803 2.6158479973673820e-02 + + + 4.9623748660087585e-01 6.0599899291992188e-01 + + + <_> + + 0 -1 804 4.8560759751126170e-04 + + + 4.4389459490776062e-01 6.0124689340591431e-01 + + + <_> + + 0 -1 805 1.1268709786236286e-02 + + + 5.2442502975463867e-01 1.8403880298137665e-01 + + + <_> + + 0 -1 806 -2.8114619199186563e-03 + + + 6.0602837800979614e-01 4.4098970293998718e-01 + + + <_> + + 0 -1 807 -5.6112729944288731e-03 + + + 3.8911709189414978e-01 5.5892372131347656e-01 + + + <_> + + 0 -1 808 8.5680093616247177e-03 + + + 5.0693458318710327e-01 2.0626190304756165e-01 + + + <_> + + 0 -1 809 -3.8172779022715986e-04 + + + 5.8822017908096313e-01 4.1926109790802002e-01 + + + <_> + + 0 -1 810 -1.7680290329735726e-04 + + + 5.5336058139801025e-01 4.0033689141273499e-01 + + + <_> + + 0 -1 811 6.5112537704408169e-03 + + + 3.3101469278335571e-01 5.4441910982131958e-01 + + + <_> + + 0 -1 812 -6.5948683186434209e-05 + + + 5.4338318109512329e-01 3.9449059963226318e-01 + + + <_> + + 0 -1 813 6.9939051754772663e-03 + + + 5.6003582477569580e-01 4.1927140951156616e-01 + + + <_> + + 0 -1 814 -4.6744439750909805e-03 + + + 6.6854667663574219e-01 4.6049609780311584e-01 + + + <_> + + 0 -1 815 1.1589850299060345e-02 + + + 5.3571212291717529e-01 2.9268300533294678e-01 + + + <_> + + 0 -1 816 1.3007840141654015e-02 + + + 4.6798178553581238e-01 7.3074632883071899e-01 + + + <_> + + 0 -1 817 -1.1008579749614000e-03 + + + 3.9375010132789612e-01 5.4150652885437012e-01 + + + <_> + + 0 -1 818 6.0472649056464434e-04 + + + 4.2423760890960693e-01 5.6040412187576294e-01 + + + <_> + + 0 -1 819 -1.4494840055704117e-02 + + + 3.6312100291252136e-01 5.2931827306747437e-01 + + + <_> + + 0 -1 820 -5.3056948818266392e-03 + + + 6.8604522943496704e-01 4.6218210458755493e-01 + + + <_> + + 0 -1 821 -8.1829127157106996e-04 + + + 3.9440968632698059e-01 5.4204392433166504e-01 + + + <_> + + 0 -1 822 -1.9077520817518234e-02 + + + 1.9626219570636749e-01 5.0378918647766113e-01 + + + <_> + + 0 -1 823 3.5549470339901745e-04 + + + 4.0862590074539185e-01 5.6139731407165527e-01 + + + <_> + + 0 -1 824 1.9679730758070946e-03 + + + 4.4891211390495300e-01 5.9261232614517212e-01 + + + <_> + + 0 -1 825 6.9189141504466534e-03 + + + 5.3359258174896240e-01 3.7283858656883240e-01 + + + <_> + + 0 -1 826 2.9872779268771410e-03 + + + 5.1113212108612061e-01 2.9756438732147217e-01 + + + <_> + + 0 -1 827 -6.2264618463814259e-03 + + + 5.5414897203445435e-01 4.8245379328727722e-01 + + + <_> + + 0 -1 828 1.3353300280869007e-02 + + + 4.5864239335060120e-01 6.4147979021072388e-01 + + + <_> + + 0 -1 829 3.3505238592624664e-02 + + + 5.3924250602722168e-01 3.4299948811531067e-01 + + + <_> + + 0 -1 830 -2.5294460356235504e-03 + + + 1.7037139832973480e-01 5.0133150815963745e-01 + + + <_> + + 0 -1 831 -1.2801629491150379e-03 + + + 5.3054618835449219e-01 4.6974050998687744e-01 + + + <_> + + 0 -1 832 7.0687388069927692e-03 + + + 4.6155458688735962e-01 6.4365047216415405e-01 + + + <_> + + 0 -1 833 9.6880499040707946e-04 + + + 4.8335990309715271e-01 6.0438942909240723e-01 + + + <_> + + 0 -1 834 3.9647659286856651e-03 + + + 5.1876372098922729e-01 3.2318168878555298e-01 + + + <_> + + 0 -1 835 -2.2057730704545975e-02 + + + 4.0792569518089294e-01 5.2009809017181396e-01 + + + <_> + + 0 -1 836 -6.6906312713399529e-04 + + + 5.3316092491149902e-01 3.8156008720397949e-01 + + + <_> + + 0 -1 837 -6.7009328631684184e-04 + + + 5.6554222106933594e-01 4.6889019012451172e-01 + + + <_> + + 0 -1 838 7.4284552829340100e-04 + + + 4.5343810319900513e-01 6.2874001264572144e-01 + + + <_> + + 0 -1 839 2.2227810695767403e-03 + + + 5.3506332635879517e-01 3.3036559820175171e-01 + + + <_> + + 0 -1 840 -5.4130521602928638e-03 + + + 1.1136870086193085e-01 5.0054347515106201e-01 + + + <_> + + 0 -1 841 -1.4520040167553816e-05 + + + 5.6287378072738647e-01 4.3251338601112366e-01 + + + <_> + + 0 -1 842 2.3369169502984732e-04 + + + 4.1658350825309753e-01 5.4477912187576294e-01 + + + <_> + + 0 -1 843 4.2894547805190086e-03 + + + 4.8603910207748413e-01 6.7786490917205811e-01 + + + <_> + + 0 -1 844 5.9103150852024555e-03 + + + 5.2623051404953003e-01 3.6121138930320740e-01 + + + <_> + + 0 -1 845 1.2900539673864841e-02 + + + 5.3193771839141846e-01 3.2502880692481995e-01 + + + <_> + + 0 -1 846 4.6982979401946068e-03 + + + 4.6182450652122498e-01 6.6659259796142578e-01 + + + <_> + + 0 -1 847 1.0439859703183174e-02 + + + 5.5056709051132202e-01 3.8836041092872620e-01 + + + <_> + + 0 -1 848 3.0443191062659025e-03 + + + 4.6978530287742615e-01 7.3018449544906616e-01 + + + <_> + + 0 -1 849 -6.1593751888722181e-04 + + + 3.8308390974998474e-01 5.4649841785430908e-01 + + + <_> + + 0 -1 850 -3.4247159492224455e-03 + + + 2.5663000345230103e-01 5.0895309448242188e-01 + + + <_> + + 0 -1 851 -9.3538565561175346e-03 + + + 6.4699661731719971e-01 4.9407958984375000e-01 + + + <_> + + 0 -1 852 5.2338998764753342e-02 + + + 4.7459828853607178e-01 7.8787708282470703e-01 + + + <_> + + 0 -1 853 3.5765620414167643e-03 + + + 5.3066647052764893e-01 2.7484980225563049e-01 + + + <_> + + 0 -1 854 7.1555317845195532e-04 + + + 5.4131257534027100e-01 4.0419089794158936e-01 + + + <_> + + 0 -1 855 -1.0516679845750332e-02 + + + 6.1585122346878052e-01 4.8152831196784973e-01 + + + <_> + + 0 -1 856 7.7347927726805210e-03 + + + 4.6958059072494507e-01 7.0289808511734009e-01 + + + <_> + + 0 -1 857 -4.3226778507232666e-03 + + + 2.8495660424232483e-01 5.3046840429306030e-01 + + + <_> + + 0 -1 858 -2.5534399319440126e-03 + + + 7.0569849014282227e-01 4.6888920664787292e-01 + + + <_> + + 0 -1 859 1.0268510231981054e-04 + + + 3.9029321074485779e-01 5.5734640359878540e-01 + + + <_> + + 0 -1 860 7.1395188570022583e-06 + + + 3.6842319369316101e-01 5.2639877796173096e-01 + + + <_> + + 0 -1 861 -1.6711989883333445e-03 + + + 3.8491758704185486e-01 5.3872710466384888e-01 + + + <_> + + 0 -1 862 4.9260449595749378e-03 + + + 4.7297719120979309e-01 7.4472510814666748e-01 + + + <_> + + 0 -1 863 4.3908702209591866e-03 + + + 4.8091810941696167e-01 5.5919218063354492e-01 + + + <_> + + 0 -1 864 -1.7793629318475723e-02 + + + 6.9036781787872314e-01 4.6769270300865173e-01 + + + <_> + + 0 -1 865 2.0469669252634048e-03 + + + 5.3706902265548706e-01 3.3081620931625366e-01 + + + <_> + + 0 -1 866 2.9891489073634148e-02 + + + 5.1398652791976929e-01 3.3090591430664062e-01 + + + <_> + + 0 -1 867 1.5494900289922953e-03 + + + 4.6602371335029602e-01 6.0783427953720093e-01 + + + <_> + + 0 -1 868 1.4956969534978271e-03 + + + 4.4048359990119934e-01 5.8639198541641235e-01 + + + <_> + + 0 -1 869 9.5885928021743894e-04 + + + 5.4359710216522217e-01 4.2085230350494385e-01 + + + <_> + + 0 -1 870 4.9643701640889049e-04 + + + 5.3705781698226929e-01 4.0006220340728760e-01 + + + <_> + + 0 -1 871 -2.7280810754746199e-03 + + + 5.6594127416610718e-01 4.2596429586410522e-01 + + + <_> + + 0 -1 872 2.3026480339467525e-03 + + + 5.1616579294204712e-01 3.3508691191673279e-01 + + + <_> + + 0 -1 873 2.5151631236076355e-01 + + + 4.8696619272232056e-01 7.1473097801208496e-01 + + + <_> + + 0 -1 874 -4.6328022144734859e-03 + + + 2.7274489402770996e-01 5.0837898254394531e-01 + + + <_> + + 0 -1 875 -4.0434490889310837e-02 + + + 6.8514388799667358e-01 5.0217670202255249e-01 + + + <_> + + 0 -1 876 1.4972220014897175e-05 + + + 4.2844650149345398e-01 5.5225551128387451e-01 + + + <_> + + 0 -1 877 -2.4050309730228037e-04 + + + 4.2261189222335815e-01 5.3900748491287231e-01 + + + <_> + + 0 -1 878 2.3657839745283127e-02 + + + 4.7446319460868835e-01 7.5043660402297974e-01 + + + <_> + + 0 -1 879 -8.1449104472994804e-03 + + + 4.2450588941574097e-01 5.5383628606796265e-01 + + + <_> + + 0 -1 880 -3.6992130335420370e-03 + + + 5.9523570537567139e-01 4.5297130942344666e-01 + + + <_> + + 0 -1 881 -6.7718601785600185e-03 + + + 4.1377940773963928e-01 5.4733997583389282e-01 + + + <_> + + 0 -1 882 4.2669530957937241e-03 + + + 4.4841149449348450e-01 5.7979941368103027e-01 + + + <_> + + 0 -1 883 1.7791989957913756e-03 + + + 5.6248587369918823e-01 4.4324448704719543e-01 + + + <_> + + 0 -1 884 1.6774770338088274e-03 + + + 4.6377518773078918e-01 6.3642418384552002e-01 + + + <_> + + 0 -1 885 1.1732629500329494e-03 + + + 4.5445030927658081e-01 5.9144157171249390e-01 + + + <_> + + 0 -1 886 8.6998171173036098e-04 + + + 5.3347527980804443e-01 3.8859179615974426e-01 + + + <_> + + 0 -1 887 7.6378340600058436e-04 + + + 5.3985852003097534e-01 3.7449419498443604e-01 + + + <_> + + 0 -1 888 1.5684569370932877e-04 + + + 4.3178731203079224e-01 5.6146162748336792e-01 + + + <_> + + 0 -1 889 -2.1511370316147804e-02 + + + 1.7859250307083130e-01 5.1855427026748657e-01 + + + <_> + + 0 -1 890 1.3081369979772717e-04 + + + 4.3424990773200989e-01 5.6828498840332031e-01 + + + <_> + + 0 -1 891 2.1992040798068047e-02 + + + 5.1617169380187988e-01 2.3793940246105194e-01 + + + <_> + + 0 -1 892 -8.0136500764638186e-04 + + + 5.9867632389068604e-01 4.4664269685745239e-01 + + + <_> + + 0 -1 893 -8.2736099138855934e-03 + + + 4.1082179546356201e-01 5.2510571479797363e-01 + + + <_> + + 0 -1 894 3.6831789184361696e-03 + + + 5.1738142967224121e-01 3.3975180983543396e-01 + + + <_> + + 0 -1 895 -7.9525681212544441e-03 + + + 6.8889832496643066e-01 4.8459240794181824e-01 + + + <_> + + 0 -1 896 1.5382299898192286e-03 + + + 5.1785671710968018e-01 3.4541139006614685e-01 + + + <_> + + 0 -1 897 -1.4043530449271202e-02 + + + 1.6784210503101349e-01 5.1886677742004395e-01 + + + <_> + + 0 -1 898 1.4315890148282051e-03 + + + 4.3682569265365601e-01 5.6557738780975342e-01 + + + <_> + + 0 -1 899 -3.4014228731393814e-02 + + + 7.8022962808609009e-01 4.9592170119285583e-01 + + + <_> + + 0 -1 900 -1.2027299962937832e-02 + + + 1.5851010382175446e-01 5.0322318077087402e-01 + + + <_> + + 0 -1 901 1.3316619396209717e-01 + + + 5.1633048057556152e-01 2.7551281452178955e-01 + + + <_> + + 0 -1 902 -1.5221949433907866e-03 + + + 3.7283179163932800e-01 5.2145522832870483e-01 + + + <_> + + 0 -1 903 -9.3929271679371595e-04 + + + 5.8383792638778687e-01 4.5111650228500366e-01 + + + <_> + + 0 -1 904 2.7719739824533463e-02 + + + 4.7282868623733521e-01 7.3315447568893433e-01 + + + <_> + + 0 -1 905 3.1030150130391121e-03 + + + 5.3022021055221558e-01 4.1015630960464478e-01 + + + <_> + + 0 -1 906 7.7861219644546509e-02 + + + 4.9983340501785278e-01 1.2729619443416595e-01 + + + <_> + + 0 -1 907 -1.5854939818382263e-02 + + + 5.0833359360694885e-02 5.1656562089920044e-01 + + + <_> + + 0 -1 908 -4.9725300632417202e-03 + + + 6.7981338500976562e-01 4.6842318773269653e-01 + + + <_> + + 0 -1 909 -9.7676506265997887e-04 + + + 6.0107719898223877e-01 4.7889319062232971e-01 + + + <_> + + 0 -1 910 -2.4647710379213095e-03 + + + 3.3933979272842407e-01 5.2205038070678711e-01 + + + <_> + + 0 -1 911 -6.7937700077891350e-03 + + + 4.3651369214057922e-01 5.2396631240844727e-01 + + + <_> + + 0 -1 912 3.2608021050691605e-02 + + + 5.0527238845825195e-01 2.4252149462699890e-01 + + + <_> + + 0 -1 913 -5.8514421107247472e-04 + + + 5.7339739799499512e-01 4.7585740685462952e-01 + + + <_> + + 0 -1 914 -2.9632600024342537e-02 + + + 3.8922891020774841e-01 5.2635979652404785e-01 + + + + + <_> + 137 + 6.7698921203613281e+01 + + <_> + + 0 -1 915 4.6550851315259933e-02 + + + 3.2769501209259033e-01 6.2405228614807129e-01 + + + <_> + + 0 -1 916 7.9537127166986465e-03 + + + 4.2564851045608521e-01 6.9429391622543335e-01 + + + <_> + + 0 -1 917 6.8221561377868056e-04 + + + 3.7114870548248291e-01 5.9007328748703003e-01 + + + <_> + + 0 -1 918 -1.9348249770700932e-04 + + + 2.0411339402198792e-01 5.3005450963973999e-01 + + + <_> + + 0 -1 919 -2.6710508973337710e-04 + + + 5.4161262512207031e-01 3.1031790375709534e-01 + + + <_> + + 0 -1 920 2.7818060480058193e-03 + + + 5.2778327465057373e-01 3.4670698642730713e-01 + + + <_> + + 0 -1 921 -4.6779078547842801e-04 + + + 5.3082311153411865e-01 3.2944920659065247e-01 + + + <_> + + 0 -1 922 -3.0335160772665404e-05 + + + 5.7738727331161499e-01 3.8520970940589905e-01 + + + <_> + + 0 -1 923 7.8038009814918041e-04 + + + 4.3174389004707336e-01 6.1500579118728638e-01 + + + <_> + + 0 -1 924 -4.2553851380944252e-03 + + + 2.9339039325714111e-01 5.3242927789688110e-01 + + + <_> + + 0 -1 925 -2.4735610350035131e-04 + + + 5.4688447713851929e-01 3.8430300354957581e-01 + + + <_> + + 0 -1 926 -1.4724259381182492e-04 + + + 4.2815428972244263e-01 5.7555872201919556e-01 + + + <_> + + 0 -1 927 1.1864770203828812e-03 + + + 3.7473011016845703e-01 5.4714661836624146e-01 + + + <_> + + 0 -1 928 2.3936580400913954e-03 + + + 4.5377838611602783e-01 6.1115288734436035e-01 + + + <_> + + 0 -1 929 -1.5390539774671197e-03 + + + 2.9713419079780579e-01 5.1895380020141602e-01 + + + <_> + + 0 -1 930 -7.1968790143728256e-03 + + + 6.6990667581558228e-01 4.7264769673347473e-01 + + + <_> + + 0 -1 931 -4.1499789222143590e-04 + + + 3.3849540352821350e-01 5.2603179216384888e-01 + + + <_> + + 0 -1 932 4.4359830208122730e-03 + + + 5.3991222381591797e-01 3.9201408624649048e-01 + + + <_> + + 0 -1 933 2.6606200262904167e-03 + + + 4.4825780391693115e-01 6.1196178197860718e-01 + + + <_> + + 0 -1 934 -1.5287200221791863e-03 + + + 3.7112379074096680e-01 5.3402662277221680e-01 + + + <_> + + 0 -1 935 -4.7397250309586525e-03 + + + 6.0310882329940796e-01 4.4551450014114380e-01 + + + <_> + + 0 -1 936 -1.4829129911959171e-02 + + + 2.8387540578842163e-01 5.3418618440628052e-01 + + + <_> + + 0 -1 937 9.2275557108223438e-04 + + + 5.2095472812652588e-01 3.3616539835929871e-01 + + + <_> + + 0 -1 938 8.3529807627201080e-02 + + + 5.1199698448181152e-01 8.1164449453353882e-02 + + + <_> + + 0 -1 939 -7.5633148662745953e-04 + + + 3.3171200752258301e-01 5.1898312568664551e-01 + + + <_> + + 0 -1 940 9.8403859883546829e-03 + + + 5.2475982904434204e-01 2.3349590599536896e-01 + + + <_> + + 0 -1 941 -1.5953830443322659e-03 + + + 5.7500940561294556e-01 4.2956221103668213e-01 + + + <_> + + 0 -1 942 3.4766020689858124e-05 + + + 4.3424451351165771e-01 5.5640292167663574e-01 + + + <_> + + 0 -1 943 2.9862910509109497e-02 + + + 4.5791471004486084e-01 6.5791881084442139e-01 + + + <_> + + 0 -1 944 1.1325590312480927e-02 + + + 5.2743119001388550e-01 3.6738881468772888e-01 + + + <_> + + 0 -1 945 -8.7828645482659340e-03 + + + 7.1003687381744385e-01 4.6421670913696289e-01 + + + <_> + + 0 -1 946 4.3639959767460823e-03 + + + 5.2792161703109741e-01 2.7058771252632141e-01 + + + <_> + + 0 -1 947 4.1804728098213673e-03 + + + 5.0725251436233521e-01 2.4490830302238464e-01 + + + <_> + + 0 -1 948 -4.5668511302210391e-04 + + + 4.2831051349639893e-01 5.5486911535263062e-01 + + + <_> + + 0 -1 949 -3.7140368949621916e-03 + + + 5.5193877220153809e-01 4.1036531329154968e-01 + + + <_> + + 0 -1 950 -2.5304289534687996e-02 + + + 6.8670022487640381e-01 4.8698890209197998e-01 + + + <_> + + 0 -1 951 -3.4454080741852522e-04 + + + 3.7288740277290344e-01 5.2876931428909302e-01 + + + <_> + + 0 -1 952 -8.3935231668874621e-04 + + + 6.0601520538330078e-01 4.6160620450973511e-01 + + + <_> + + 0 -1 953 1.7280049622058868e-02 + + + 5.0496357679367065e-01 1.8198239803314209e-01 + + + <_> + + 0 -1 954 -6.3595077954232693e-03 + + + 1.6312399506568909e-01 5.2327787876129150e-01 + + + <_> + + 0 -1 955 1.0298109846189618e-03 + + + 4.4632780551910400e-01 6.1765491962432861e-01 + + + <_> + + 0 -1 956 1.0117109632119536e-03 + + + 5.4733848571777344e-01 4.3006989359855652e-01 + + + <_> + + 0 -1 957 -1.0308800265192986e-02 + + + 1.1669850349426270e-01 5.0008672475814819e-01 + + + <_> + + 0 -1 958 5.4682018235325813e-03 + + + 4.7692871093750000e-01 6.7192137241363525e-01 + + + <_> + + 0 -1 959 -9.1696460731327534e-04 + + + 3.4710898995399475e-01 5.1781648397445679e-01 + + + <_> + + 0 -1 960 2.3922820109874010e-03 + + + 4.7852361202239990e-01 6.2163108587265015e-01 + + + <_> + + 0 -1 961 -7.5573818758130074e-03 + + + 5.8147960901260376e-01 4.4100850820541382e-01 + + + <_> + + 0 -1 962 -7.7024032361805439e-04 + + + 3.8780000805854797e-01 5.4657220840454102e-01 + + + <_> + + 0 -1 963 -8.7125990539789200e-03 + + + 1.6600510478019714e-01 4.9958360195159912e-01 + + + <_> + + 0 -1 964 -1.0306320153176785e-02 + + + 4.0933910012245178e-01 5.2742338180541992e-01 + + + <_> + + 0 -1 965 -2.0940979011356831e-03 + + + 6.2061947584152222e-01 4.5722800493240356e-01 + + + <_> + + 0 -1 966 6.8099051713943481e-03 + + + 5.5677592754364014e-01 4.1556000709533691e-01 + + + <_> + + 0 -1 967 -1.0746059706434608e-03 + + + 5.6389278173446655e-01 4.3530249595642090e-01 + + + <_> + + 0 -1 968 2.1550289820879698e-03 + + + 4.8262658715248108e-01 6.7497581243515015e-01 + + + <_> + + 0 -1 969 3.1742319464683533e-02 + + + 5.0483798980712891e-01 1.8832489848136902e-01 + + + <_> + + 0 -1 970 -7.8382723033428192e-02 + + + 2.3695489764213562e-01 5.2601581811904907e-01 + + + <_> + + 0 -1 971 5.7415119372308254e-03 + + + 5.0488287210464478e-01 2.7764698863029480e-01 + + + <_> + + 0 -1 972 -2.9014600440859795e-03 + + + 6.2386047840118408e-01 4.6933171153068542e-01 + + + <_> + + 0 -1 973 -2.6427931152284145e-03 + + + 3.3141419291496277e-01 5.1697772741317749e-01 + + + <_> + + 0 -1 974 -1.0949660092592239e-01 + + + 2.3800450563430786e-01 5.1834410429000854e-01 + + + <_> + + 0 -1 975 7.4075913289561868e-05 + + + 4.0696358680725098e-01 5.3621500730514526e-01 + + + <_> + + 0 -1 976 -5.0593802006915212e-04 + + + 5.5067062377929688e-01 4.3745940923690796e-01 + + + <_> + + 0 -1 977 -8.2131777890026569e-04 + + + 5.5257099866867065e-01 4.2093759775161743e-01 + + + <_> + + 0 -1 978 -6.0276539443293586e-05 + + + 5.4554748535156250e-01 4.7482660412788391e-01 + + + <_> + + 0 -1 979 6.8065142259001732e-03 + + + 5.1579958200454712e-01 3.4245771169662476e-01 + + + <_> + + 0 -1 980 1.7202789895236492e-03 + + + 5.0132077932357788e-01 6.3312637805938721e-01 + + + <_> + + 0 -1 981 -1.3016929733566940e-04 + + + 5.5397182703018188e-01 4.2268699407577515e-01 + + + <_> + + 0 -1 982 -4.8016388900578022e-03 + + + 4.4250950217247009e-01 5.4307800531387329e-01 + + + <_> + + 0 -1 983 -2.5399310979992151e-03 + + + 7.1457821130752563e-01 4.6976050734519958e-01 + + + <_> + + 0 -1 984 -1.4278929447755218e-03 + + + 4.0704450011253357e-01 5.3996050357818604e-01 + + + <_> + + 0 -1 985 -2.5142550468444824e-02 + + + 7.8846907615661621e-01 4.7473520040512085e-01 + + + <_> + + 0 -1 986 -3.8899609353393316e-03 + + + 4.2961919307708740e-01 5.5771100521087646e-01 + + + <_> + + 0 -1 987 4.3947459198534489e-03 + + + 4.6931621432304382e-01 7.0239442586898804e-01 + + + <_> + + 0 -1 988 2.4678420275449753e-02 + + + 5.2423220872879028e-01 3.8125100731849670e-01 + + + <_> + + 0 -1 989 3.8047678768634796e-02 + + + 5.0117397308349609e-01 1.6878280043601990e-01 + + + <_> + + 0 -1 990 7.9424865543842316e-03 + + + 4.8285821080207825e-01 6.3695681095123291e-01 + + + <_> + + 0 -1 991 -1.5110049862414598e-03 + + + 5.9064859151840210e-01 4.4876679778099060e-01 + + + <_> + + 0 -1 992 6.4201741479337215e-03 + + + 5.2410978078842163e-01 2.9905700683593750e-01 + + + <_> + + 0 -1 993 -2.9802159406244755e-03 + + + 3.0414658784866333e-01 5.0784897804260254e-01 + + + <_> + + 0 -1 994 -7.4580078944563866e-04 + + + 4.1281390190124512e-01 5.2568262815475464e-01 + + + <_> + + 0 -1 995 -1.0470950044691563e-02 + + + 5.8083951473236084e-01 4.4942960143089294e-01 + + + <_> + + 0 -1 996 9.3369204550981522e-03 + + + 5.2465528249740601e-01 2.6589488983154297e-01 + + + <_> + + 0 -1 997 2.7936900034546852e-02 + + + 4.6749550104141235e-01 7.0872569084167480e-01 + + + <_> + + 0 -1 998 7.4277678504586220e-03 + + + 5.4094868898391724e-01 3.7585180997848511e-01 + + + <_> + + 0 -1 999 -2.3584509268403053e-02 + + + 3.7586399912834167e-01 5.2385509014129639e-01 + + + <_> + + 0 -1 1000 1.1452640173956752e-03 + + + 4.3295788764953613e-01 5.8042472600936890e-01 + + + <_> + + 0 -1 1001 -4.3468660442158580e-04 + + + 5.2806180715560913e-01 3.8730698823928833e-01 + + + <_> + + 0 -1 1002 1.0648540221154690e-02 + + + 4.9021130800247192e-01 5.6812518835067749e-01 + + + <_> + + 0 -1 1003 -3.9418050437234342e-04 + + + 5.5708801746368408e-01 4.3182510137557983e-01 + + + <_> + + 0 -1 1004 -1.3270479394122958e-04 + + + 5.6584399938583374e-01 4.3435549736022949e-01 + + + <_> + + 0 -1 1005 -2.0125510636717081e-03 + + + 6.0567390918731689e-01 4.5375239849090576e-01 + + + <_> + + 0 -1 1006 2.4854319635778666e-03 + + + 5.3904771804809570e-01 4.1380101442337036e-01 + + + <_> + + 0 -1 1007 1.8237880431115627e-03 + + + 4.3548288941383362e-01 5.7171887159347534e-01 + + + <_> + + 0 -1 1008 -1.6656659543514252e-02 + + + 3.0109131336212158e-01 5.2161228656768799e-01 + + + <_> + + 0 -1 1009 8.0349558265879750e-04 + + + 5.3001511096954346e-01 3.8183969259262085e-01 + + + <_> + + 0 -1 1010 3.4170378930866718e-03 + + + 5.3280287981033325e-01 4.2414000630378723e-01 + + + <_> + + 0 -1 1011 -3.6222729249857366e-04 + + + 5.4917281866073608e-01 4.1869771480560303e-01 + + + <_> + + 0 -1 1012 -1.1630020290613174e-01 + + + 1.4407220482826233e-01 5.2264511585235596e-01 + + + <_> + + 0 -1 1013 -1.4695010147988796e-02 + + + 7.7477252483367920e-01 4.7157171368598938e-01 + + + <_> + + 0 -1 1014 2.1972130052745342e-03 + + + 5.3554338216781616e-01 3.3156448602676392e-01 + + + <_> + + 0 -1 1015 -4.6965209185145795e-04 + + + 5.7672351598739624e-01 4.4581368565559387e-01 + + + <_> + + 0 -1 1016 6.5144998952746391e-03 + + + 5.2156740427017212e-01 3.6478888988494873e-01 + + + <_> + + 0 -1 1017 2.1300060674548149e-02 + + + 4.9942049384117126e-01 1.5679509937763214e-01 + + + <_> + + 0 -1 1018 3.1881409231573343e-03 + + + 4.7422000765800476e-01 6.2872701883316040e-01 + + + <_> + + 0 -1 1019 9.0019777417182922e-04 + + + 5.3479540348052979e-01 3.9437520503997803e-01 + + + <_> + + 0 -1 1020 -5.1772277802228928e-03 + + + 6.7271918058395386e-01 5.0131380558013916e-01 + + + <_> + + 0 -1 1021 -4.3764649890363216e-03 + + + 3.1066751480102539e-01 5.1287931203842163e-01 + + + <_> + + 0 -1 1022 2.6299960445612669e-03 + + + 4.8863101005554199e-01 5.7552158832550049e-01 + + + <_> + + 0 -1 1023 -2.0458688959479332e-03 + + + 6.0257941484451294e-01 4.5580768585205078e-01 + + + <_> + + 0 -1 1024 6.9482706487178802e-02 + + + 5.2407479286193848e-01 2.1852590143680573e-01 + + + <_> + + 0 -1 1025 2.4048939347267151e-02 + + + 5.0118672847747803e-01 2.0906220376491547e-01 + + + <_> + + 0 -1 1026 3.1095340382307768e-03 + + + 4.8667120933532715e-01 7.1085482835769653e-01 + + + <_> + + 0 -1 1027 -1.2503260513767600e-03 + + + 3.4078910946846008e-01 5.1561951637268066e-01 + + + <_> + + 0 -1 1028 -1.0281190043315291e-03 + + + 5.5755722522735596e-01 4.4394320249557495e-01 + + + <_> + + 0 -1 1029 -8.8893622159957886e-03 + + + 6.4020007848739624e-01 4.6204420924186707e-01 + + + <_> + + 0 -1 1030 -6.1094801640138030e-04 + + + 3.7664419412612915e-01 5.4488998651504517e-01 + + + <_> + + 0 -1 1031 -5.7686357758939266e-03 + + + 3.3186489343643188e-01 5.1336771249771118e-01 + + + <_> + + 0 -1 1032 1.8506490159779787e-03 + + + 4.9035701155662537e-01 6.4069348573684692e-01 + + + <_> + + 0 -1 1033 -9.9799469113349915e-02 + + + 1.5360510349273682e-01 5.0155621767044067e-01 + + + <_> + + 0 -1 1034 -3.5128349065780640e-01 + + + 5.8823131024837494e-02 5.1743787527084351e-01 + + + <_> + + 0 -1 1035 -4.5244570821523666e-02 + + + 6.9614887237548828e-01 4.6778729557991028e-01 + + + <_> + + 0 -1 1036 7.1481578052043915e-02 + + + 5.1679861545562744e-01 1.0380929708480835e-01 + + + <_> + + 0 -1 1037 2.1895780228078365e-03 + + + 4.2730781435966492e-01 5.5320608615875244e-01 + + + <_> + + 0 -1 1038 -5.9242651332169771e-04 + + + 4.6389439702033997e-01 5.2763891220092773e-01 + + + <_> + + 0 -1 1039 1.6788389766588807e-03 + + + 5.3016489744186401e-01 3.9320349693298340e-01 + + + <_> + + 0 -1 1040 -2.2163488902151585e-03 + + + 5.6306940317153931e-01 4.7570338845252991e-01 + + + <_> + + 0 -1 1041 1.1568699846975505e-04 + + + 4.3075358867645264e-01 5.5357027053833008e-01 + + + <_> + + 0 -1 1042 -7.2017288766801357e-03 + + + 1.4448820054531097e-01 5.1930642127990723e-01 + + + <_> + + 0 -1 1043 8.9081272017210722e-04 + + + 4.3844321370124817e-01 5.5936211347579956e-01 + + + <_> + + 0 -1 1044 1.9605009583756328e-04 + + + 5.3404158353805542e-01 4.7059568762779236e-01 + + + <_> + + 0 -1 1045 5.2022142335772514e-04 + + + 5.2138561010360718e-01 3.8100790977478027e-01 + + + <_> + + 0 -1 1046 9.4588572392240167e-04 + + + 4.7694149613380432e-01 6.1307388544082642e-01 + + + <_> + + 0 -1 1047 9.1698471806012094e-05 + + + 4.2450091242790222e-01 5.4293632507324219e-01 + + + <_> + + 0 -1 1048 2.1833200007677078e-03 + + + 5.4577308893203735e-01 4.1910758614540100e-01 + + + <_> + + 0 -1 1049 -8.6039671441540122e-04 + + + 5.7645887136459351e-01 4.4716599583625793e-01 + + + <_> + + 0 -1 1050 -1.3236239552497864e-02 + + + 6.3728231191635132e-01 4.6950098872184753e-01 + + + <_> + + 0 -1 1051 4.3376701069064438e-04 + + + 5.3178739547729492e-01 3.9458298683166504e-01 + + + + + <_> + 140 + 6.9229873657226562e+01 + + <_> + + 0 -1 1052 -2.4847149848937988e-02 + + + 6.5555167198181152e-01 3.8733118772506714e-01 + + + <_> + + 0 -1 1053 6.1348611488938332e-03 + + + 3.7480720877647400e-01 5.9739977121353149e-01 + + + <_> + + 0 -1 1054 6.4498498104512691e-03 + + + 5.4254919290542603e-01 2.5488111376762390e-01 + + + <_> + + 0 -1 1055 6.3491211039945483e-04 + + + 2.4624420702457428e-01 5.3872537612915039e-01 + + + <_> + + 0 -1 1056 1.4023890253156424e-03 + + + 5.5943220853805542e-01 3.5286578536033630e-01 + + + <_> + + 0 -1 1057 3.0044000595808029e-04 + + + 3.9585039019584656e-01 5.7659381628036499e-01 + + + <_> + + 0 -1 1058 1.0042409849120304e-04 + + + 3.6989969015121460e-01 5.5349981784820557e-01 + + + <_> + + 0 -1 1059 -5.0841490738093853e-03 + + + 3.7110909819602966e-01 5.5478000640869141e-01 + + + <_> + + 0 -1 1060 -1.9537260755896568e-02 + + + 7.4927550554275513e-01 4.5792970061302185e-01 + + + <_> + + 0 -1 1061 -7.4532740654831287e-06 + + + 5.6497871875762939e-01 3.9040699601173401e-01 + + + <_> + + 0 -1 1062 -3.6079459823668003e-03 + + + 3.3810880780220032e-01 5.2678012847900391e-01 + + + <_> + + 0 -1 1063 2.0697501022368670e-03 + + + 5.5192911624908447e-01 3.7143889069557190e-01 + + + <_> + + 0 -1 1064 -4.6463840408250690e-04 + + + 5.6082147359848022e-01 4.1135668754577637e-01 + + + <_> + + 0 -1 1065 7.5490452582016587e-04 + + + 3.5592061281204224e-01 5.3293561935424805e-01 + + + <_> + + 0 -1 1066 -9.8322238773107529e-04 + + + 5.4147958755493164e-01 3.7632051110267639e-01 + + + <_> + + 0 -1 1067 -1.9940640777349472e-02 + + + 6.3479030132293701e-01 4.7052991390228271e-01 + + + <_> + + 0 -1 1068 3.7680300883948803e-03 + + + 3.9134898781776428e-01 5.5637162923812866e-01 + + + <_> + + 0 -1 1069 -9.4528505578637123e-03 + + + 2.5548928976058960e-01 5.2151167392730713e-01 + + + <_> + + 0 -1 1070 2.9560849070549011e-03 + + + 5.1746791601181030e-01 3.0639201402664185e-01 + + + <_> + + 0 -1 1071 9.1078737750649452e-03 + + + 5.3884482383728027e-01 2.8859630227088928e-01 + + + <_> + + 0 -1 1072 1.8219229532405734e-03 + + + 4.3360430002212524e-01 5.8521968126296997e-01 + + + <_> + + 0 -1 1073 1.4688739553093910e-02 + + + 5.2873617410659790e-01 2.8700059652328491e-01 + + + <_> + + 0 -1 1074 -1.4387990348041058e-02 + + + 7.0194488763809204e-01 4.6473708748817444e-01 + + + <_> + + 0 -1 1075 -1.8986649811267853e-02 + + + 2.9865521192550659e-01 5.2470117807388306e-01 + + + <_> + + 0 -1 1076 1.1527639580890536e-03 + + + 4.3234738707542419e-01 5.9316617250442505e-01 + + + <_> + + 0 -1 1077 1.0933670215308666e-02 + + + 5.2868640422821045e-01 3.1303191184997559e-01 + + + <_> + + 0 -1 1078 -1.4932730235159397e-02 + + + 2.6584190130233765e-01 5.0840771198272705e-01 + + + <_> + + 0 -1 1079 -2.9970539617352188e-04 + + + 5.4635268449783325e-01 3.7407240271568298e-01 + + + <_> + + 0 -1 1080 4.1677621193230152e-03 + + + 4.7034969925880432e-01 7.4357217550277710e-01 + + + <_> + + 0 -1 1081 -6.3905320130288601e-03 + + + 2.0692589879035950e-01 5.2805382013320923e-01 + + + <_> + + 0 -1 1082 4.5029609464108944e-03 + + + 5.1826488971710205e-01 3.4835430979728699e-01 + + + <_> + + 0 -1 1083 -9.2040365561842918e-03 + + + 6.8037772178649902e-01 4.9323600530624390e-01 + + + <_> + + 0 -1 1084 8.1327259540557861e-02 + + + 5.0583988428115845e-01 2.2530519962310791e-01 + + + <_> + + 0 -1 1085 -1.5079280734062195e-01 + + + 2.9634249210357666e-01 5.2646797895431519e-01 + + + <_> + + 0 -1 1086 3.3179009333252907e-03 + + + 4.6554958820343018e-01 7.0729321241378784e-01 + + + <_> + + 0 -1 1087 7.7402801252901554e-04 + + + 4.7803479433059692e-01 5.6682378053665161e-01 + + + <_> + + 0 -1 1088 6.8199541419744492e-04 + + + 4.2869961261749268e-01 5.7221567630767822e-01 + + + <_> + + 0 -1 1089 5.3671570494771004e-03 + + + 5.2993071079254150e-01 3.1146219372749329e-01 + + + <_> + + 0 -1 1090 9.7018666565418243e-05 + + + 3.6746388673782349e-01 5.2694618701934814e-01 + + + <_> + + 0 -1 1091 -1.2534089386463165e-01 + + + 2.3514920473098755e-01 5.2457910776138306e-01 + + + <_> + + 0 -1 1092 -5.2516269497573376e-03 + + + 7.1159368753433228e-01 4.6937671303749084e-01 + + + <_> + + 0 -1 1093 -7.8342109918594360e-03 + + + 4.4626510143280029e-01 5.4090857505798340e-01 + + + <_> + + 0 -1 1094 -1.1310069821774960e-03 + + + 5.9456187486648560e-01 4.4176620244979858e-01 + + + <_> + + 0 -1 1095 1.7601120052859187e-03 + + + 5.3532499074935913e-01 3.9734530448913574e-01 + + + <_> + + 0 -1 1096 -8.1581249833106995e-04 + + + 3.7602680921554565e-01 5.2647268772125244e-01 + + + <_> + + 0 -1 1097 -3.8687589112669230e-03 + + + 6.3099128007888794e-01 4.7498199343681335e-01 + + + <_> + + 0 -1 1098 1.5207129763439298e-03 + + + 5.2301818132400513e-01 3.3612239360809326e-01 + + + <_> + + 0 -1 1099 5.4586738348007202e-01 + + + 5.1671397686004639e-01 1.1726350337266922e-01 + + + <_> + + 0 -1 1100 1.5650190412998199e-02 + + + 4.9794390797615051e-01 1.3932949304580688e-01 + + + <_> + + 0 -1 1101 -1.1731860227882862e-02 + + + 7.1296507120132446e-01 4.9211961030960083e-01 + + + <_> + + 0 -1 1102 -6.1765122227370739e-03 + + + 2.2881029546260834e-01 5.0497019290924072e-01 + + + <_> + + 0 -1 1103 2.2457661107182503e-03 + + + 4.6324339509010315e-01 6.0487258434295654e-01 + + + <_> + + 0 -1 1104 -5.1915869116783142e-03 + + + 6.4674210548400879e-01 4.6021929383277893e-01 + + + <_> + + 0 -1 1105 -2.3827880620956421e-02 + + + 1.4820009469985962e-01 5.2260792255401611e-01 + + + <_> + + 0 -1 1106 1.0284580057486892e-03 + + + 5.1354891061782837e-01 3.3759570121765137e-01 + + + <_> + + 0 -1 1107 -1.0078850202262402e-02 + + + 2.7405610680580139e-01 5.3035670518875122e-01 + + + <_> + + 0 -1 1108 2.6168930344283581e-03 + + + 5.3326708078384399e-01 3.9724540710449219e-01 + + + <_> + + 0 -1 1109 5.4385367548093200e-04 + + + 5.3656041622161865e-01 4.0634119510650635e-01 + + + <_> + + 0 -1 1110 5.3510512225329876e-03 + + + 4.6537590026855469e-01 6.8890458345413208e-01 + + + <_> + + 0 -1 1111 -1.5274790348485112e-03 + + + 5.4495012760162354e-01 3.6247238516807556e-01 + + + <_> + + 0 -1 1112 -8.0624416470527649e-02 + + + 1.6560870409011841e-01 5.0002872943878174e-01 + + + <_> + + 0 -1 1113 2.2192029282450676e-02 + + + 5.1327311992645264e-01 2.0028080046176910e-01 + + + <_> + + 0 -1 1114 7.3100631125271320e-03 + + + 4.6179479360580444e-01 6.3665360212326050e-01 + + + <_> + + 0 -1 1115 -6.4063072204589844e-03 + + + 5.9162509441375732e-01 4.8678609728813171e-01 + + + <_> + + 0 -1 1116 -7.6415040530264378e-04 + + + 3.8884091377258301e-01 5.3157979249954224e-01 + + + <_> + + 0 -1 1117 7.6734489994123578e-04 + + + 4.1590648889541626e-01 5.6052798032760620e-01 + + + <_> + + 0 -1 1118 6.1474501853808761e-04 + + + 3.0890220403671265e-01 5.1201480627059937e-01 + + + <_> + + 0 -1 1119 -5.0105270929634571e-03 + + + 3.9721998572349548e-01 5.2073061466217041e-01 + + + <_> + + 0 -1 1120 -8.6909132078289986e-03 + + + 6.2574082612991333e-01 4.6085759997367859e-01 + + + <_> + + 0 -1 1121 -1.6391459852457047e-02 + + + 2.0852099359035492e-01 5.2422660589218140e-01 + + + <_> + + 0 -1 1122 4.0973909199237823e-04 + + + 5.2224272489547729e-01 3.7803208827972412e-01 + + + <_> + + 0 -1 1123 -2.5242289993911982e-03 + + + 5.8039271831512451e-01 4.6118900179862976e-01 + + + <_> + + 0 -1 1124 5.0945312250405550e-04 + + + 4.4012719392776489e-01 5.8460158109664917e-01 + + + <_> + + 0 -1 1125 1.9656419754028320e-03 + + + 5.3223252296447754e-01 4.1845908761024475e-01 + + + <_> + + 0 -1 1126 5.6298897834494710e-04 + + + 3.7418448925018311e-01 5.2345657348632812e-01 + + + <_> + + 0 -1 1127 -6.7946797935292125e-04 + + + 4.6310418844223022e-01 5.3564780950546265e-01 + + + <_> + + 0 -1 1128 7.2856349870562553e-03 + + + 5.0446701049804688e-01 2.3775640130043030e-01 + + + <_> + + 0 -1 1129 -1.7459489405155182e-02 + + + 7.2891211509704590e-01 5.0504350662231445e-01 + + + <_> + + 0 -1 1130 -2.5421749800443649e-02 + + + 6.6671347618103027e-01 4.6781000494956970e-01 + + + <_> + + 0 -1 1131 -1.5647639520466328e-03 + + + 4.3917590379714966e-01 5.3236269950866699e-01 + + + <_> + + 0 -1 1132 1.1444360017776489e-02 + + + 4.3464401364326477e-01 5.6800121068954468e-01 + + + <_> + + 0 -1 1133 -6.7352550104260445e-04 + + + 4.4771409034729004e-01 5.2968120574951172e-01 + + + <_> + + 0 -1 1134 9.3194209039211273e-03 + + + 4.7402000427246094e-01 7.4626070261001587e-01 + + + <_> + + 0 -1 1135 1.3328490604180843e-04 + + + 5.3650617599487305e-01 4.7521349787712097e-01 + + + <_> + + 0 -1 1136 -7.8815799206495285e-03 + + + 1.7522190511226654e-01 5.0152552127838135e-01 + + + <_> + + 0 -1 1137 -5.7985680177807808e-03 + + + 7.2712367773056030e-01 4.8962008953094482e-01 + + + <_> + + 0 -1 1138 -3.8922499516047537e-04 + + + 4.0039089322090149e-01 5.3449410200119019e-01 + + + <_> + + 0 -1 1139 -1.9288610201328993e-03 + + + 5.6056129932403564e-01 4.8039558529853821e-01 + + + <_> + + 0 -1 1140 8.4214154630899429e-03 + + + 4.7532469034194946e-01 7.6236087083816528e-01 + + + <_> + + 0 -1 1141 8.1655876711010933e-03 + + + 5.3932619094848633e-01 4.1916438937187195e-01 + + + <_> + + 0 -1 1142 4.8280550981871784e-04 + + + 4.2408001422882080e-01 5.3998219966888428e-01 + + + <_> + + 0 -1 1143 -2.7186630759388208e-03 + + + 4.2445999383926392e-01 5.4249238967895508e-01 + + + <_> + + 0 -1 1144 -1.2507230043411255e-02 + + + 5.8958417177200317e-01 4.5504111051559448e-01 + + + <_> + + 0 -1 1145 -2.4286519736051559e-02 + + + 2.6471349596977234e-01 5.1891797780990601e-01 + + + <_> + + 0 -1 1146 -2.9676330741494894e-03 + + + 7.3476827144622803e-01 4.7497498989105225e-01 + + + <_> + + 0 -1 1147 -1.2528999708592892e-02 + + + 2.7560499310493469e-01 5.1775997877120972e-01 + + + <_> + + 0 -1 1148 -1.0104000102728605e-03 + + + 3.5105609893798828e-01 5.1447242498397827e-01 + + + <_> + + 0 -1 1149 -2.1348530426621437e-03 + + + 5.6379258632659912e-01 4.6673199534416199e-01 + + + <_> + + 0 -1 1150 1.9564259797334671e-02 + + + 4.6145731210708618e-01 6.1376398801803589e-01 + + + <_> + + 0 -1 1151 -9.7146347165107727e-02 + + + 2.9983788728713989e-01 5.1935559511184692e-01 + + + <_> + + 0 -1 1152 4.5014568604528904e-03 + + + 5.0778847932815552e-01 3.0457559227943420e-01 + + + <_> + + 0 -1 1153 6.3706971704959869e-03 + + + 4.8610189557075500e-01 6.8875008821487427e-01 + + + <_> + + 0 -1 1154 -9.0721528977155685e-03 + + + 1.6733959317207336e-01 5.0175631046295166e-01 + + + <_> + + 0 -1 1155 -5.3537208586931229e-03 + + + 2.6927569508552551e-01 5.2426332235336304e-01 + + + <_> + + 0 -1 1156 -1.0932840406894684e-02 + + + 7.1838641166687012e-01 4.7360289096832275e-01 + + + <_> + + 0 -1 1157 8.2356072962284088e-03 + + + 5.2239668369293213e-01 2.3898629844188690e-01 + + + <_> + + 0 -1 1158 -1.0038160253316164e-03 + + + 5.7193559408187866e-01 4.4339430332183838e-01 + + + <_> + + 0 -1 1159 4.0859128348529339e-03 + + + 5.4728418588638306e-01 4.1488361358642578e-01 + + + <_> + + 0 -1 1160 1.5485419332981110e-01 + + + 4.9738121032714844e-01 6.1061598360538483e-02 + + + <_> + + 0 -1 1161 2.0897459762636572e-04 + + + 4.7091740369796753e-01 5.4238891601562500e-01 + + + <_> + + 0 -1 1162 3.3316991175524890e-04 + + + 4.0896269679069519e-01 5.3009921312332153e-01 + + + <_> + + 0 -1 1163 -1.0813400149345398e-02 + + + 6.1043697595596313e-01 4.9573341012001038e-01 + + + <_> + + 0 -1 1164 4.5656010508537292e-02 + + + 5.0696891546249390e-01 2.8666600584983826e-01 + + + <_> + + 0 -1 1165 1.2569549726322293e-03 + + + 4.8469170928001404e-01 6.3181710243225098e-01 + + + <_> + + 0 -1 1166 -1.2015070021152496e-01 + + + 6.0526140034198761e-02 4.9809598922729492e-01 + + + <_> + + 0 -1 1167 -1.0533799650147557e-04 + + + 5.3631097078323364e-01 4.7080421447753906e-01 + + + <_> + + 0 -1 1168 -2.0703190565109253e-01 + + + 5.9660330414772034e-02 4.9790981411933899e-01 + + + <_> + + 0 -1 1169 1.2909180077258497e-04 + + + 4.7129771113395691e-01 5.3779977560043335e-01 + + + <_> + + 0 -1 1170 3.8818528992123902e-04 + + + 4.3635380268096924e-01 5.5341911315917969e-01 + + + <_> + + 0 -1 1171 -2.9243610333651304e-03 + + + 5.8111858367919922e-01 4.8252159357070923e-01 + + + <_> + + 0 -1 1172 8.3882332546636462e-04 + + + 5.3117001056671143e-01 4.0381389856338501e-01 + + + <_> + + 0 -1 1173 -1.9061550265178084e-03 + + + 3.7707018852233887e-01 5.2600151300430298e-01 + + + <_> + + 0 -1 1174 8.9514348655939102e-03 + + + 4.7661679983139038e-01 7.6821839809417725e-01 + + + <_> + + 0 -1 1175 1.3083459809422493e-02 + + + 5.2644628286361694e-01 3.0622220039367676e-01 + + + <_> + + 0 -1 1176 -2.1159330010414124e-01 + + + 6.7371982336044312e-01 4.6958100795745850e-01 + + + <_> + + 0 -1 1177 3.1493250280618668e-03 + + + 5.6448352336883545e-01 4.3869531154632568e-01 + + + <_> + + 0 -1 1178 3.9754100725986063e-04 + + + 4.5260611176490784e-01 5.8956301212310791e-01 + + + <_> + + 0 -1 1179 -1.3814480043947697e-03 + + + 6.0705822706222534e-01 4.9424138665199280e-01 + + + <_> + + 0 -1 1180 -5.8122188784182072e-04 + + + 5.9982132911682129e-01 4.5082521438598633e-01 + + + <_> + + 0 -1 1181 -2.3905329871922731e-03 + + + 4.2055889964103699e-01 5.2238482236862183e-01 + + + <_> + + 0 -1 1182 2.7268929407000542e-02 + + + 5.2064472436904907e-01 3.5633018612861633e-01 + + + <_> + + 0 -1 1183 -3.7658358924090862e-03 + + + 3.1447041034698486e-01 5.2188140153884888e-01 + + + <_> + + 0 -1 1184 -1.4903489500284195e-03 + + + 3.3801960945129395e-01 5.1244372129440308e-01 + + + <_> + + 0 -1 1185 -1.7428230494260788e-02 + + + 5.8299607038497925e-01 4.9197259545326233e-01 + + + <_> + + 0 -1 1186 -1.5278030186891556e-02 + + + 6.1631447076797485e-01 4.6178871393203735e-01 + + + <_> + + 0 -1 1187 3.1995609402656555e-02 + + + 5.1663571596145630e-01 1.7127640545368195e-01 + + + <_> + + 0 -1 1188 -3.8256710395216942e-03 + + + 3.4080120921134949e-01 5.1313877105712891e-01 + + + <_> + + 0 -1 1189 -8.5186436772346497e-03 + + + 6.1055189371109009e-01 4.9979418516159058e-01 + + + <_> + + 0 -1 1190 9.0641621500253677e-04 + + + 4.3272709846496582e-01 5.5823111534118652e-01 + + + <_> + + 0 -1 1191 1.0344849899411201e-02 + + + 4.8556530475616455e-01 5.4524201154708862e-01 + + + + + <_> + 160 + 7.9249076843261719e+01 + + <_> + + 0 -1 1192 7.8981826081871986e-03 + + + 3.3325248956680298e-01 5.9464621543884277e-01 + + + <_> + + 0 -1 1193 1.6170160379260778e-03 + + + 3.4906411170959473e-01 5.5778688192367554e-01 + + + <_> + + 0 -1 1194 -5.5449741194024682e-04 + + + 5.5425661802291870e-01 3.2915300130844116e-01 + + + <_> + + 0 -1 1195 1.5428980113938451e-03 + + + 3.6125791072845459e-01 5.5459791421890259e-01 + + + <_> + + 0 -1 1196 -1.0329450014978647e-03 + + + 3.5301390290260315e-01 5.5761402845382690e-01 + + + <_> + + 0 -1 1197 7.7698158565908670e-04 + + + 3.9167788624763489e-01 5.6453210115432739e-01 + + + <_> + + 0 -1 1198 1.4320300519466400e-01 + + + 4.6674820780754089e-01 7.0236331224441528e-01 + + + <_> + + 0 -1 1199 -7.3866490274667740e-03 + + + 3.0736848711967468e-01 5.2892577648162842e-01 + + + <_> + + 0 -1 1200 -6.2936742324382067e-04 + + + 5.6221181154251099e-01 4.0370491147041321e-01 + + + <_> + + 0 -1 1201 7.8893528552725911e-04 + + + 5.2676612138748169e-01 3.5578748583793640e-01 + + + <_> + + 0 -1 1202 -1.2228050269186497e-02 + + + 6.6683208942413330e-01 4.6255499124526978e-01 + + + <_> + + 0 -1 1203 3.5420239437371492e-03 + + + 5.5214381217956543e-01 3.8696730136871338e-01 + + + <_> + + 0 -1 1204 -1.0585320414975286e-03 + + + 3.6286780238151550e-01 5.3209269046783447e-01 + + + <_> + + 0 -1 1205 1.4935660146875307e-05 + + + 4.6324449777603149e-01 5.3633230924606323e-01 + + + <_> + + 0 -1 1206 5.2537708543241024e-03 + + + 5.1322317123413086e-01 3.2657089829444885e-01 + + + <_> + + 0 -1 1207 -8.2338023930788040e-03 + + + 6.6936898231506348e-01 4.7741401195526123e-01 + + + <_> + + 0 -1 1208 2.1866810129722580e-05 + + + 4.0538620948791504e-01 5.4579311609268188e-01 + + + <_> + + 0 -1 1209 -3.8150229956954718e-03 + + + 6.4549958705902100e-01 4.7931781411170959e-01 + + + <_> + + 0 -1 1210 1.1105879675596952e-03 + + + 5.2704071998596191e-01 3.5296788811683655e-01 + + + <_> + + 0 -1 1211 -5.7707689702510834e-03 + + + 3.8035470247268677e-01 5.3529578447341919e-01 + + + <_> + + 0 -1 1212 -3.0158339068293571e-03 + + + 5.3394031524658203e-01 3.8871330022811890e-01 + + + <_> + + 0 -1 1213 -8.5453689098358154e-04 + + + 3.5646161437034607e-01 5.2736037969589233e-01 + + + <_> + + 0 -1 1214 1.1050510220229626e-02 + + + 4.6719071269035339e-01 6.8497377634048462e-01 + + + <_> + + 0 -1 1215 4.2605839669704437e-02 + + + 5.1514732837677002e-01 7.0220090448856354e-02 + + + <_> + + 0 -1 1216 -3.0781750101596117e-03 + + + 3.0416610836982727e-01 5.1526021957397461e-01 + + + <_> + + 0 -1 1217 -5.4815728217363358e-03 + + + 6.4302957057952881e-01 4.8972299695014954e-01 + + + <_> + + 0 -1 1218 3.1881860923022032e-03 + + + 5.3074932098388672e-01 3.8262099027633667e-01 + + + <_> + + 0 -1 1219 3.5947180003859103e-04 + + + 4.6500471234321594e-01 5.4219049215316772e-01 + + + <_> + + 0 -1 1220 -4.0705031715333462e-03 + + + 2.8496798872947693e-01 5.0791162252426147e-01 + + + <_> + + 0 -1 1221 -1.4594170264899731e-02 + + + 2.9716458916664124e-01 5.1284617185592651e-01 + + + <_> + + 0 -1 1222 -1.1947689927183092e-04 + + + 5.6310981512069702e-01 4.3430820107460022e-01 + + + <_> + + 0 -1 1223 -6.9344649091362953e-04 + + + 4.4035780429840088e-01 5.3599590063095093e-01 + + + <_> + + 0 -1 1224 1.4834799912932795e-05 + + + 3.4210088849067688e-01 5.1646977663040161e-01 + + + <_> + + 0 -1 1225 9.0296985581517220e-03 + + + 4.6393430233001709e-01 6.1140751838684082e-01 + + + <_> + + 0 -1 1226 -8.0640818923711777e-03 + + + 2.8201588988304138e-01 5.0754940509796143e-01 + + + <_> + + 0 -1 1227 2.6062119752168655e-02 + + + 5.2089059352874756e-01 2.6887780427932739e-01 + + + <_> + + 0 -1 1228 1.7314659431576729e-02 + + + 4.6637138724327087e-01 6.7385399341583252e-01 + + + <_> + + 0 -1 1229 2.2666640579700470e-02 + + + 5.2093499898910522e-01 2.2127239406108856e-01 + + + <_> + + 0 -1 1230 -2.1965929772704840e-03 + + + 6.0631012916564941e-01 4.5381900668144226e-01 + + + <_> + + 0 -1 1231 -9.5282476395368576e-03 + + + 4.6352049708366394e-01 5.2474308013916016e-01 + + + <_> + + 0 -1 1232 8.0943619832396507e-03 + + + 5.2894401550292969e-01 3.9138820767402649e-01 + + + <_> + + 0 -1 1233 -7.2877332568168640e-02 + + + 7.7520018815994263e-01 4.9902349710464478e-01 + + + <_> + + 0 -1 1234 -6.9009521976113319e-03 + + + 2.4280390143394470e-01 5.0480902194976807e-01 + + + <_> + + 0 -1 1235 -1.1308239772915840e-02 + + + 5.7343649864196777e-01 4.8423761129379272e-01 + + + <_> + + 0 -1 1236 5.9613201767206192e-02 + + + 5.0298362970352173e-01 2.5249770283699036e-01 + + + <_> + + 0 -1 1237 -2.8624620754271746e-03 + + + 6.0730451345443726e-01 4.8984599113464355e-01 + + + <_> + + 0 -1 1238 4.4781449250876904e-03 + + + 5.0152891874313354e-01 2.2203169763088226e-01 + + + <_> + + 0 -1 1239 -1.7513240454718471e-03 + + + 6.6144287586212158e-01 4.9338689446449280e-01 + + + <_> + + 0 -1 1240 4.0163420140743256e-02 + + + 5.1808780431747437e-01 3.7410449981689453e-01 + + + <_> + + 0 -1 1241 3.4768949262797832e-04 + + + 4.7204169631004333e-01 5.8180320262908936e-01 + + + <_> + + 0 -1 1242 2.6551650371402502e-03 + + + 3.8050109148025513e-01 5.2213358879089355e-01 + + + <_> + + 0 -1 1243 -8.7706279009580612e-03 + + + 2.9441660642623901e-01 5.2312952280044556e-01 + + + <_> + + 0 -1 1244 -5.5122091434895992e-03 + + + 7.3461771011352539e-01 4.7228169441223145e-01 + + + <_> + + 0 -1 1245 6.8672042107209563e-04 + + + 5.4528760910034180e-01 4.2424130439758301e-01 + + + <_> + + 0 -1 1246 5.6019669864326715e-04 + + + 4.3988621234893799e-01 5.6012850999832153e-01 + + + <_> + + 0 -1 1247 2.4143769405782223e-03 + + + 4.7416868805885315e-01 6.1366218328475952e-01 + + + <_> + + 0 -1 1248 -1.5680900542065501e-03 + + + 6.0445529222488403e-01 4.5164099335670471e-01 + + + <_> + + 0 -1 1249 -3.6827491130679846e-03 + + + 2.4524590373039246e-01 5.2949821949005127e-01 + + + <_> + + 0 -1 1250 -2.9409190756268799e-04 + + + 3.7328380346298218e-01 5.2514511346817017e-01 + + + <_> + + 0 -1 1251 4.2847759323194623e-04 + + + 5.4988098144531250e-01 4.0655350685119629e-01 + + + <_> + + 0 -1 1252 -4.8817070201039314e-03 + + + 2.1399089694023132e-01 4.9999570846557617e-01 + + + <_> + + 0 -1 1253 2.7272020815871656e-04 + + + 4.6502870321273804e-01 5.8134287595748901e-01 + + + <_> + + 0 -1 1254 2.0947199664078653e-04 + + + 4.3874868750572205e-01 5.5727928876876831e-01 + + + <_> + + 0 -1 1255 4.8501189798116684e-02 + + + 5.2449727058410645e-01 3.2128891348838806e-01 + + + <_> + + 0 -1 1256 -4.5166411437094212e-03 + + + 6.0568130016326904e-01 4.5458820462226868e-01 + + + <_> + + 0 -1 1257 -1.2291680090129375e-02 + + + 2.0409290492534637e-01 5.1522141695022583e-01 + + + <_> + + 0 -1 1258 4.8549679922871292e-04 + + + 5.2376049757003784e-01 3.7395030260086060e-01 + + + <_> + + 0 -1 1259 3.0556049197912216e-02 + + + 4.9605339765548706e-01 5.9382462501525879e-01 + + + <_> + + 0 -1 1260 -1.5105320198927075e-04 + + + 5.3513038158416748e-01 4.1452041268348694e-01 + + + <_> + + 0 -1 1261 2.4937440175563097e-03 + + + 4.6933668851852417e-01 5.5149412155151367e-01 + + + <_> + + 0 -1 1262 -1.2382130138576031e-02 + + + 6.7913967370986938e-01 4.6816679835319519e-01 + + + <_> + + 0 -1 1263 -5.1333461888134480e-03 + + + 3.6087390780448914e-01 5.2291601896286011e-01 + + + <_> + + 0 -1 1264 5.1919277757406235e-04 + + + 5.3000730276107788e-01 3.6336138844490051e-01 + + + <_> + + 0 -1 1265 1.5060420334339142e-01 + + + 5.1573169231414795e-01 2.2117820382118225e-01 + + + <_> + + 0 -1 1266 7.7144149690866470e-03 + + + 4.4104969501495361e-01 5.7766091823577881e-01 + + + <_> + + 0 -1 1267 9.4443522393703461e-03 + + + 5.4018551111221313e-01 3.7566500902175903e-01 + + + <_> + + 0 -1 1268 2.5006249779835343e-04 + + + 4.3682709336280823e-01 5.6073749065399170e-01 + + + <_> + + 0 -1 1269 -3.3077150583267212e-03 + + + 4.2447990179061890e-01 5.5182307958602905e-01 + + + <_> + + 0 -1 1270 7.4048910755664110e-04 + + + 4.4969621300697327e-01 5.9005767107009888e-01 + + + <_> + + 0 -1 1271 4.4092051684856415e-02 + + + 5.2934932708740234e-01 3.1563550233840942e-01 + + + <_> + + 0 -1 1272 3.3639909233897924e-03 + + + 4.4832968711853027e-01 5.8486622571945190e-01 + + + <_> + + 0 -1 1273 -3.9760079234838486e-03 + + + 4.5595070719718933e-01 5.4836392402648926e-01 + + + <_> + + 0 -1 1274 2.7716930489987135e-03 + + + 5.3417861461639404e-01 3.7924841046333313e-01 + + + <_> + + 0 -1 1275 -2.4123019829858094e-04 + + + 5.6671887636184692e-01 4.5769730210304260e-01 + + + <_> + + 0 -1 1276 4.9425667384639382e-04 + + + 4.4212448596954346e-01 5.6287872791290283e-01 + + + <_> + + 0 -1 1277 -3.8876468897797167e-04 + + + 4.2883709073066711e-01 5.3910630941390991e-01 + + + <_> + + 0 -1 1278 -5.0048898905515671e-02 + + + 6.8995130062103271e-01 4.7037428617477417e-01 + + + <_> + + 0 -1 1279 -3.6635480821132660e-02 + + + 2.2177790105342865e-01 5.1918262243270874e-01 + + + <_> + + 0 -1 1280 2.4273579474538565e-03 + + + 5.1362240314483643e-01 3.4973978996276855e-01 + + + <_> + + 0 -1 1281 1.9558030180633068e-03 + + + 4.8261928558349609e-01 6.4083808660507202e-01 + + + <_> + + 0 -1 1282 -1.7494610510766506e-03 + + + 3.9228358864784241e-01 5.2726852893829346e-01 + + + <_> + + 0 -1 1283 1.3955079950392246e-02 + + + 5.0782018899917603e-01 8.4165048599243164e-01 + + + <_> + + 0 -1 1284 -2.1896739781368524e-04 + + + 5.5204898118972778e-01 4.3142348527908325e-01 + + + <_> + + 0 -1 1285 -1.5131309628486633e-03 + + + 3.9346051216125488e-01 5.3825712203979492e-01 + + + <_> + + 0 -1 1286 -4.3622800149023533e-03 + + + 7.3706287145614624e-01 4.7364759445190430e-01 + + + <_> + + 0 -1 1287 6.5160587430000305e-02 + + + 5.1592797040939331e-01 3.2815951108932495e-01 + + + <_> + + 0 -1 1288 -2.3567399475723505e-03 + + + 3.6728268861770630e-01 5.1728862524032593e-01 + + + <_> + + 0 -1 1289 1.5146659687161446e-02 + + + 5.0314939022064209e-01 6.6876041889190674e-01 + + + <_> + + 0 -1 1290 -2.2850960493087769e-02 + + + 6.7675197124481201e-01 4.7095969319343567e-01 + + + <_> + + 0 -1 1291 4.8867650330066681e-03 + + + 5.2579981088638306e-01 4.0598788857460022e-01 + + + <_> + + 0 -1 1292 1.7619599821045995e-03 + + + 4.6962729096412659e-01 6.6882789134979248e-01 + + + <_> + + 0 -1 1293 -1.2942519970238209e-03 + + + 4.3207129836082458e-01 5.3442817926406860e-01 + + + <_> + + 0 -1 1294 1.0929949581623077e-02 + + + 4.9977061152458191e-01 1.6374860703945160e-01 + + + <_> + + 0 -1 1295 2.9958489903947338e-05 + + + 4.2824178934097290e-01 5.6332242488861084e-01 + + + <_> + + 0 -1 1296 -6.5884361974895000e-03 + + + 6.7721211910247803e-01 4.7005268931388855e-01 + + + <_> + + 0 -1 1297 3.2527779694646597e-03 + + + 5.3133970499038696e-01 4.5361489057540894e-01 + + + <_> + + 0 -1 1298 -4.0435739792883396e-03 + + + 5.6600618362426758e-01 4.4133889675140381e-01 + + + <_> + + 0 -1 1299 -1.2523540062829852e-03 + + + 3.7319138646125793e-01 5.3564518690109253e-01 + + + <_> + + 0 -1 1300 1.9246719602961093e-04 + + + 5.1899862289428711e-01 3.7388110160827637e-01 + + + <_> + + 0 -1 1301 -3.8589671254158020e-02 + + + 2.9563739895820618e-01 5.1888108253479004e-01 + + + <_> + + 0 -1 1302 1.5489870565943420e-04 + + + 4.3471351265907288e-01 5.5095332860946655e-01 + + + <_> + + 0 -1 1303 -3.3763848245143890e-02 + + + 3.2303300499916077e-01 5.1954758167266846e-01 + + + <_> + + 0 -1 1304 -8.2657067105174065e-03 + + + 5.9754890203475952e-01 4.5521140098571777e-01 + + + <_> + + 0 -1 1305 1.4481440302915871e-05 + + + 4.7456780076026917e-01 5.4974269866943359e-01 + + + <_> + + 0 -1 1306 1.4951299817766994e-05 + + + 4.3244731426239014e-01 5.4806441068649292e-01 + + + <_> + + 0 -1 1307 -1.8741799518465996e-02 + + + 1.5800529718399048e-01 5.1785331964492798e-01 + + + <_> + + 0 -1 1308 1.7572239739820361e-03 + + + 4.5176368951797485e-01 5.7737642526626587e-01 + + + <_> + + 0 -1 1309 -3.1391119118779898e-03 + + + 4.1496479511260986e-01 5.4608422517776489e-01 + + + <_> + + 0 -1 1310 6.6656779381446540e-05 + + + 4.0390908718109131e-01 5.2930849790573120e-01 + + + <_> + + 0 -1 1311 6.7743421532213688e-03 + + + 4.7676518559455872e-01 6.1219561100006104e-01 + + + <_> + + 0 -1 1312 -7.3868161998689175e-03 + + + 3.5862588882446289e-01 5.1872807741165161e-01 + + + <_> + + 0 -1 1313 1.4040930196642876e-02 + + + 4.7121399641036987e-01 5.5761557817459106e-01 + + + <_> + + 0 -1 1314 -5.5258329957723618e-03 + + + 2.6610270142555237e-01 5.0392812490463257e-01 + + + <_> + + 0 -1 1315 3.8684239983558655e-01 + + + 5.1443397998809814e-01 2.5258991122245789e-01 + + + <_> + + 0 -1 1316 1.1459240340627730e-04 + + + 4.2849949002265930e-01 5.4233711957931519e-01 + + + <_> + + 0 -1 1317 -1.8467569723725319e-02 + + + 3.8858351111412048e-01 5.2130621671676636e-01 + + + <_> + + 0 -1 1318 -4.5907011372037232e-04 + + + 5.4125630855560303e-01 4.2359098792076111e-01 + + + <_> + + 0 -1 1319 1.2527540093287826e-03 + + + 4.8993051052093506e-01 6.6240912675857544e-01 + + + <_> + + 0 -1 1320 1.4910609461367130e-03 + + + 5.2867782115936279e-01 4.0400519967079163e-01 + + + <_> + + 0 -1 1321 -7.5435562757775187e-04 + + + 6.0329902172088623e-01 4.7951200604438782e-01 + + + <_> + + 0 -1 1322 -6.9478838704526424e-03 + + + 4.0844011306762695e-01 5.3735041618347168e-01 + + + <_> + + 0 -1 1323 2.8092920547351241e-04 + + + 4.8460629582405090e-01 5.7593822479248047e-01 + + + <_> + + 0 -1 1324 9.6073717577382922e-04 + + + 5.1647412776947021e-01 3.5549798607826233e-01 + + + <_> + + 0 -1 1325 -2.6883929967880249e-04 + + + 5.6775820255279541e-01 4.7317659854888916e-01 + + + <_> + + 0 -1 1326 2.1599370520561934e-03 + + + 4.7314870357513428e-01 7.0705670118331909e-01 + + + <_> + + 0 -1 1327 5.6235301308333874e-03 + + + 5.2402430772781372e-01 2.7817919850349426e-01 + + + <_> + + 0 -1 1328 -5.0243991427123547e-03 + + + 2.8370139002799988e-01 5.0623041391372681e-01 + + + <_> + + 0 -1 1329 -9.7611639648675919e-03 + + + 7.4007177352905273e-01 4.9345690011978149e-01 + + + <_> + + 0 -1 1330 4.1515100747346878e-03 + + + 5.1191312074661255e-01 3.4070080518722534e-01 + + + <_> + + 0 -1 1331 6.2465080991387367e-03 + + + 4.9237880110740662e-01 6.5790587663650513e-01 + + + <_> + + 0 -1 1332 -7.0597478188574314e-03 + + + 2.4347110092639923e-01 5.0328421592712402e-01 + + + <_> + + 0 -1 1333 -2.0587709732353687e-03 + + + 5.9003108739852905e-01 4.6950870752334595e-01 + + + <_> + + 0 -1 1334 -2.4146060459315777e-03 + + + 3.6473178863525391e-01 5.1892018318176270e-01 + + + <_> + + 0 -1 1335 -1.4817609917372465e-03 + + + 6.0349482297897339e-01 4.9401280283927917e-01 + + + <_> + + 0 -1 1336 -6.3016400672495365e-03 + + + 5.8189898729324341e-01 4.5604279637336731e-01 + + + <_> + + 0 -1 1337 3.4763428848236799e-03 + + + 5.2174758911132812e-01 3.4839931130409241e-01 + + + <_> + + 0 -1 1338 -2.2250870242714882e-02 + + + 2.3607000708580017e-01 5.0320827960968018e-01 + + + <_> + + 0 -1 1339 -3.0612550675868988e-02 + + + 6.4991867542266846e-01 4.9149191379547119e-01 + + + <_> + + 0 -1 1340 1.3057479634881020e-02 + + + 4.4133231043815613e-01 5.6837642192840576e-01 + + + <_> + + 0 -1 1341 -6.0095742810517550e-04 + + + 4.3597310781478882e-01 5.3334832191467285e-01 + + + <_> + + 0 -1 1342 -4.1514250915497541e-04 + + + 5.5040627717971802e-01 4.3260601162910461e-01 + + + <_> + + 0 -1 1343 -1.3776290230453014e-02 + + + 4.0641129016876221e-01 5.2015489339828491e-01 + + + <_> + + 0 -1 1344 -3.2296508550643921e-02 + + + 4.7351971268653870e-02 4.9771949648857117e-01 + + + <_> + + 0 -1 1345 5.3556978702545166e-02 + + + 4.8817330598831177e-01 6.6669392585754395e-01 + + + <_> + + 0 -1 1346 8.1889545544981956e-03 + + + 5.4000371694564819e-01 4.2408201098442078e-01 + + + <_> + + 0 -1 1347 2.1055320394225419e-04 + + + 4.8020479083061218e-01 5.5638527870178223e-01 + + + <_> + + 0 -1 1348 -2.4382730480283499e-03 + + + 7.3877930641174316e-01 4.7736850380897522e-01 + + + <_> + + 0 -1 1349 3.2835570164024830e-03 + + + 5.2885460853576660e-01 3.1712919473648071e-01 + + + <_> + + 0 -1 1350 2.3729570675641298e-03 + + + 4.7508129477500916e-01 7.0601707696914673e-01 + + + <_> + + 0 -1 1351 -1.4541699783876538e-03 + + + 3.8117301464080811e-01 5.3307390213012695e-01 + + + + + <_> + 177 + 8.7696029663085938e+01 + + <_> + + 0 -1 1352 5.5755238980054855e-02 + + + 4.0191569924354553e-01 6.8060368299484253e-01 + + + <_> + + 0 -1 1353 2.4730248842388391e-03 + + + 3.3511489629745483e-01 5.9657198190689087e-01 + + + <_> + + 0 -1 1354 -3.5031698644161224e-04 + + + 5.5577081441879272e-01 3.4822869300842285e-01 + + + <_> + + 0 -1 1355 5.4167630150914192e-04 + + + 4.2608588933944702e-01 5.6933808326721191e-01 + + + <_> + + 0 -1 1356 7.7193678589537740e-04 + + + 3.4942400455474854e-01 5.4336887598037720e-01 + + + <_> + + 0 -1 1357 -1.5999219613149762e-03 + + + 4.0284991264343262e-01 5.4843592643737793e-01 + + + <_> + + 0 -1 1358 -1.1832080053864047e-04 + + + 3.8069018721580505e-01 5.4254651069641113e-01 + + + <_> + + 0 -1 1359 3.2909031142480671e-04 + + + 2.6201000809669495e-01 5.4295217990875244e-01 + + + <_> + + 0 -1 1360 2.9518108931370080e-04 + + + 3.7997689843177795e-01 5.3992640972137451e-01 + + + <_> + + 0 -1 1361 9.0466710389591753e-05 + + + 4.4336450099945068e-01 5.4402261972427368e-01 + + + <_> + + 0 -1 1362 1.5007190086180344e-05 + + + 3.7196549773216248e-01 5.4091197252273560e-01 + + + <_> + + 0 -1 1363 1.3935610651969910e-01 + + + 5.5253958702087402e-01 4.4790428876876831e-01 + + + <_> + + 0 -1 1364 1.6461990308016539e-03 + + + 4.2645010352134705e-01 5.7721698284149170e-01 + + + <_> + + 0 -1 1365 4.9984431825578213e-04 + + + 4.3595260381698608e-01 5.6858712434768677e-01 + + + <_> + + 0 -1 1366 -1.0971280280500650e-03 + + + 3.3901369571685791e-01 5.2054089307785034e-01 + + + <_> + + 0 -1 1367 6.6919892560690641e-04 + + + 4.5574560761451721e-01 5.9806597232818604e-01 + + + <_> + + 0 -1 1368 8.6471042595803738e-04 + + + 5.1348412036895752e-01 2.9440331459045410e-01 + + + <_> + + 0 -1 1369 -2.7182599296793342e-04 + + + 3.9065781235694885e-01 5.3771811723709106e-01 + + + <_> + + 0 -1 1370 3.0249499104684219e-05 + + + 3.6796098947525024e-01 5.2256888151168823e-01 + + + <_> + + 0 -1 1371 -8.5225896909832954e-03 + + + 7.2931021451950073e-01 4.8923650383949280e-01 + + + <_> + + 0 -1 1372 1.6705560265108943e-03 + + + 4.3453249335289001e-01 5.6961381435394287e-01 + + + <_> + + 0 -1 1373 -7.1433838456869125e-03 + + + 2.5912800431251526e-01 5.2256238460540771e-01 + + + <_> + + 0 -1 1374 -1.6319369897246361e-02 + + + 6.9222790002822876e-01 4.6515759825706482e-01 + + + <_> + + 0 -1 1375 4.8034260980784893e-03 + + + 5.3522628545761108e-01 3.2863029837608337e-01 + + + <_> + + 0 -1 1376 -7.5421929359436035e-03 + + + 2.0405440032482147e-01 5.0345462560653687e-01 + + + <_> + + 0 -1 1377 -1.4363110065460205e-02 + + + 6.8048888444900513e-01 4.8890590667724609e-01 + + + <_> + + 0 -1 1378 8.9063588529825211e-04 + + + 5.3106957674026489e-01 3.8954809308052063e-01 + + + <_> + + 0 -1 1379 -4.4060191139578819e-03 + + + 5.7415628433227539e-01 4.3724268674850464e-01 + + + <_> + + 0 -1 1380 -1.8862540309783071e-04 + + + 2.8317859768867493e-01 5.0982052087783813e-01 + + + <_> + + 0 -1 1381 -3.7979281041771173e-03 + + + 3.3725079894065857e-01 5.2465802431106567e-01 + + + <_> + + 0 -1 1382 1.4627049677073956e-04 + + + 5.3066742420196533e-01 3.9117100834846497e-01 + + + <_> + + 0 -1 1383 -4.9164638767251745e-05 + + + 5.4624962806701660e-01 3.9427208900451660e-01 + + + <_> + + 0 -1 1384 -3.3582501113414764e-02 + + + 2.1578240394592285e-01 5.0482118129730225e-01 + + + <_> + + 0 -1 1385 -3.5339309833943844e-03 + + + 6.4653122425079346e-01 4.8726969957351685e-01 + + + <_> + + 0 -1 1386 5.0144111737608910e-03 + + + 4.6176680922508240e-01 6.2480747699737549e-01 + + + <_> + + 0 -1 1387 1.8817370757460594e-02 + + + 5.2206891775131226e-01 2.0000520348548889e-01 + + + <_> + + 0 -1 1388 -1.3434339780360460e-03 + + + 4.0145379304885864e-01 5.3016197681427002e-01 + + + <_> + + 0 -1 1389 1.7557960236445069e-03 + + + 4.7940391302108765e-01 5.6531697511672974e-01 + + + <_> + + 0 -1 1390 -9.5637463033199310e-02 + + + 2.0341950654983521e-01 5.0067067146301270e-01 + + + <_> + + 0 -1 1391 -2.2241229191422462e-02 + + + 7.6724731922149658e-01 5.0463402271270752e-01 + + + <_> + + 0 -1 1392 -1.5575819648802280e-02 + + + 7.4903422594070435e-01 4.7558510303497314e-01 + + + <_> + + 0 -1 1393 5.3599118255078793e-03 + + + 5.3653037548065186e-01 4.0046709775924683e-01 + + + <_> + + 0 -1 1394 -2.1763499826192856e-02 + + + 7.4015498161315918e-02 4.9641749262809753e-01 + + + <_> + + 0 -1 1395 -1.6561590135097504e-01 + + + 2.8591030836105347e-01 5.2180862426757812e-01 + + + <_> + + 0 -1 1396 1.6461320046801120e-04 + + + 4.1916158795356750e-01 5.3807932138442993e-01 + + + <_> + + 0 -1 1397 -8.9077502489089966e-03 + + + 6.2731927633285522e-01 4.8774048686027527e-01 + + + <_> + + 0 -1 1398 8.6346449097618461e-04 + + + 5.1599407196044922e-01 3.6710259318351746e-01 + + + <_> + + 0 -1 1399 -1.3751760125160217e-03 + + + 5.8843767642974854e-01 4.5790839195251465e-01 + + + <_> + + 0 -1 1400 -1.4081239933148026e-03 + + + 3.5605099797248840e-01 5.1399451494216919e-01 + + + <_> + + 0 -1 1401 -3.9342888630926609e-03 + + + 5.9942889213562012e-01 4.6642720699310303e-01 + + + <_> + + 0 -1 1402 -3.1966928392648697e-02 + + + 3.3454620838165283e-01 5.1441830396652222e-01 + + + <_> + + 0 -1 1403 -1.5089280168467667e-05 + + + 5.5826562643051147e-01 4.4140571355819702e-01 + + + <_> + + 0 -1 1404 5.1994470413774252e-04 + + + 4.6236801147460938e-01 6.1689937114715576e-01 + + + <_> + + 0 -1 1405 -3.4220460802316666e-03 + + + 6.5570747852325439e-01 4.9748051166534424e-01 + + + <_> + + 0 -1 1406 1.7723299970384687e-04 + + + 5.2695018053054810e-01 3.9019080996513367e-01 + + + <_> + + 0 -1 1407 1.5716759953647852e-03 + + + 4.6333730220794678e-01 5.7904577255249023e-01 + + + <_> + + 0 -1 1408 -8.9041329920291901e-03 + + + 2.6896080374717712e-01 5.0535911321640015e-01 + + + <_> + + 0 -1 1409 4.0677518700249493e-04 + + + 5.4566031694412231e-01 4.3298989534378052e-01 + + + <_> + + 0 -1 1410 6.7604780197143555e-03 + + + 4.6489939093589783e-01 6.6897618770599365e-01 + + + <_> + + 0 -1 1411 2.9100088868290186e-03 + + + 5.3097039461135864e-01 3.3778399229049683e-01 + + + <_> + + 0 -1 1412 1.3885459629818797e-03 + + + 4.0747389197349548e-01 5.3491330146789551e-01 + + + <_> + + 0 -1 1413 -7.6764263212680817e-02 + + + 1.9921760261058807e-01 5.2282422780990601e-01 + + + <_> + + 0 -1 1414 -2.2688310127705336e-04 + + + 5.4385018348693848e-01 4.2530721426010132e-01 + + + <_> + + 0 -1 1415 -6.3094152137637138e-03 + + + 4.2591789364814758e-01 5.3789097070693970e-01 + + + <_> + + 0 -1 1416 -1.1007279902696609e-01 + + + 6.9041568040847778e-01 4.7217491269111633e-01 + + + <_> + + 0 -1 1417 2.8619659133255482e-04 + + + 4.5249149203300476e-01 5.5483061075210571e-01 + + + <_> + + 0 -1 1418 2.9425329557852820e-05 + + + 5.3703737258911133e-01 4.2364639043807983e-01 + + + <_> + + 0 -1 1419 -2.4886570870876312e-02 + + + 6.4235579967498779e-01 4.9693039059638977e-01 + + + <_> + + 0 -1 1420 3.3148851245641708e-02 + + + 4.9884751439094543e-01 1.6138119995594025e-01 + + + <_> + + 0 -1 1421 7.8491691965609789e-04 + + + 5.4160261154174805e-01 4.2230090498924255e-01 + + + <_> + + 0 -1 1422 4.7087189741432667e-03 + + + 4.5763289928436279e-01 6.0275578498840332e-01 + + + <_> + + 0 -1 1423 2.4144479539245367e-03 + + + 5.3089731931686401e-01 4.4224989414215088e-01 + + + <_> + + 0 -1 1424 1.9523180089890957e-03 + + + 4.7056341171264648e-01 6.6633248329162598e-01 + + + <_> + + 0 -1 1425 1.3031980488449335e-03 + + + 4.4061261415481567e-01 5.5269622802734375e-01 + + + <_> + + 0 -1 1426 4.4735497795045376e-03 + + + 5.1290237903594971e-01 3.3014988899230957e-01 + + + <_> + + 0 -1 1427 -2.6652868837118149e-03 + + + 3.1354710459709167e-01 5.1750361919403076e-01 + + + <_> + + 0 -1 1428 1.3666770246345550e-04 + + + 4.1193708777427673e-01 5.3068768978118896e-01 + + + <_> + + 0 -1 1429 -1.7126450315117836e-02 + + + 6.1778062582015991e-01 4.8365789651870728e-01 + + + <_> + + 0 -1 1430 -2.6601430727168918e-04 + + + 3.6543309688568115e-01 5.1697367429733276e-01 + + + <_> + + 0 -1 1431 -2.2932380437850952e-02 + + + 3.4909150004386902e-01 5.1639920473098755e-01 + + + <_> + + 0 -1 1432 2.3316550068557262e-03 + + + 5.1662999391555786e-01 3.7093898653984070e-01 + + + <_> + + 0 -1 1433 1.6925660893321037e-02 + + + 5.0147360563278198e-01 8.0539882183074951e-01 + + + <_> + + 0 -1 1434 -8.9858826249837875e-03 + + + 6.4707887172698975e-01 4.6570208668708801e-01 + + + <_> + + 0 -1 1435 -1.1874699965119362e-02 + + + 3.2463788986206055e-01 5.2587550878524780e-01 + + + <_> + + 0 -1 1436 1.9350569345988333e-04 + + + 5.1919418573379517e-01 3.8396438956260681e-01 + + + <_> + + 0 -1 1437 5.8713490143418312e-03 + + + 4.9181339144706726e-01 6.1870431900024414e-01 + + + <_> + + 0 -1 1438 -2.4838790297508240e-01 + + + 1.8368029594421387e-01 4.9881500005722046e-01 + + + <_> + + 0 -1 1439 1.2256000190973282e-02 + + + 5.2270537614822388e-01 3.6320298910140991e-01 + + + <_> + + 0 -1 1440 8.3990179700776935e-04 + + + 4.4902500510215759e-01 5.7741481065750122e-01 + + + <_> + + 0 -1 1441 2.5407369248569012e-03 + + + 4.8047870397567749e-01 5.8582991361618042e-01 + + + <_> + + 0 -1 1442 -1.4822429977357388e-02 + + + 2.5210499763488770e-01 5.0235372781753540e-01 + + + <_> + + 0 -1 1443 -5.7973959483206272e-03 + + + 5.9966957569122314e-01 4.8537150025367737e-01 + + + <_> + + 0 -1 1444 7.2662148158997297e-04 + + + 5.1537168025970459e-01 3.6717799305915833e-01 + + + <_> + + 0 -1 1445 -1.7232580110430717e-02 + + + 6.6217190027236938e-01 4.9946561455726624e-01 + + + <_> + + 0 -1 1446 7.8624086454510689e-03 + + + 4.6333950757980347e-01 6.2561017274856567e-01 + + + <_> + + 0 -1 1447 -4.7343620099127293e-03 + + + 3.6155730485916138e-01 5.2818852663040161e-01 + + + <_> + + 0 -1 1448 8.3048478700220585e-04 + + + 4.4428890943527222e-01 5.5509579181671143e-01 + + + <_> + + 0 -1 1449 7.6602199114859104e-03 + + + 5.1629352569580078e-01 2.6133549213409424e-01 + + + <_> + + 0 -1 1450 -4.1048377752304077e-03 + + + 2.7896320819854736e-01 5.0190317630767822e-01 + + + <_> + + 0 -1 1451 4.8512578941881657e-03 + + + 4.9689841270446777e-01 5.6616681814193726e-01 + + + <_> + + 0 -1 1452 9.9896453320980072e-04 + + + 4.4456079602241516e-01 5.5518132448196411e-01 + + + <_> + + 0 -1 1453 -2.7023631334304810e-01 + + + 2.9388209804892540e-02 5.1513141393661499e-01 + + + <_> + + 0 -1 1454 -1.3090680353343487e-02 + + + 5.6993997097015381e-01 4.4474598765373230e-01 + + + <_> + + 0 -1 1455 -9.4342790544033051e-03 + + + 4.3054661154747009e-01 5.4878950119018555e-01 + + + <_> + + 0 -1 1456 -1.5482039889320731e-03 + + + 3.6803171038627625e-01 5.1280808448791504e-01 + + + <_> + + 0 -1 1457 5.3746132180094719e-03 + + + 4.8389169573783875e-01 6.1015558242797852e-01 + + + <_> + + 0 -1 1458 1.5786769799888134e-03 + + + 5.3252232074737549e-01 4.1185480356216431e-01 + + + <_> + + 0 -1 1459 3.6856050137430429e-03 + + + 4.8109480738639832e-01 6.2523031234741211e-01 + + + <_> + + 0 -1 1460 9.3887019902467728e-03 + + + 5.2002298831939697e-01 3.6294108629226685e-01 + + + <_> + + 0 -1 1461 1.2792630121111870e-02 + + + 4.9617099761962891e-01 6.7380160093307495e-01 + + + <_> + + 0 -1 1462 -3.3661040943115950e-03 + + + 4.0602791309356689e-01 5.2835988998413086e-01 + + + <_> + + 0 -1 1463 3.9771420415490866e-04 + + + 4.6741139888763428e-01 5.9007751941680908e-01 + + + <_> + + 0 -1 1464 1.4868030557408929e-03 + + + 4.5191168785095215e-01 6.0820537805557251e-01 + + + <_> + + 0 -1 1465 -8.8686749339103699e-02 + + + 2.8078991174697876e-01 5.1809918880462646e-01 + + + <_> + + 0 -1 1466 -7.4296112870797515e-05 + + + 5.2955842018127441e-01 4.0876251459121704e-01 + + + <_> + + 0 -1 1467 -1.4932939848222304e-05 + + + 5.4614001512527466e-01 4.5385429263114929e-01 + + + <_> + + 0 -1 1468 5.9162238612771034e-03 + + + 5.3291612863540649e-01 4.1921341419219971e-01 + + + <_> + + 0 -1 1469 1.1141640134155750e-03 + + + 4.5120179653167725e-01 5.7062172889709473e-01 + + + <_> + + 0 -1 1470 8.9249362645205110e-05 + + + 4.5778059959411621e-01 5.8976382017135620e-01 + + + <_> + + 0 -1 1471 2.5319510605186224e-03 + + + 5.2996039390563965e-01 3.3576390147209167e-01 + + + <_> + + 0 -1 1472 1.2426200322806835e-02 + + + 4.9590590596199036e-01 1.3466019928455353e-01 + + + <_> + + 0 -1 1473 2.8335750102996826e-02 + + + 5.1170790195465088e-01 6.1043637106195092e-04 + + + <_> + + 0 -1 1474 6.6165882162749767e-03 + + + 4.7363498806953430e-01 7.0116281509399414e-01 + + + <_> + + 0 -1 1475 8.0468766391277313e-03 + + + 5.2164179086685181e-01 3.2828199863433838e-01 + + + <_> + + 0 -1 1476 -1.1193980462849140e-03 + + + 5.8098608255386353e-01 4.5637390017509460e-01 + + + <_> + + 0 -1 1477 1.3277590274810791e-02 + + + 5.3983622789382935e-01 4.1039010882377625e-01 + + + <_> + + 0 -1 1478 4.8794739996083081e-04 + + + 4.2492860555648804e-01 5.4105907678604126e-01 + + + <_> + + 0 -1 1479 1.1243170127272606e-02 + + + 5.2699637413024902e-01 3.4382158517837524e-01 + + + <_> + + 0 -1 1480 -8.9896668214350939e-04 + + + 5.6330758333206177e-01 4.4566130638122559e-01 + + + <_> + + 0 -1 1481 6.6677159629762173e-03 + + + 5.3128892183303833e-01 4.3626791238784790e-01 + + + <_> + + 0 -1 1482 2.8947299346327782e-02 + + + 4.7017949819564819e-01 6.5757977962493896e-01 + + + <_> + + 0 -1 1483 -2.3400049656629562e-02 + + + 0. 5.1373988389968872e-01 + + + <_> + + 0 -1 1484 -8.9117050170898438e-02 + + + 2.3745279759168625e-02 4.9424308538436890e-01 + + + <_> + + 0 -1 1485 -1.4054600149393082e-02 + + + 3.1273230910301208e-01 5.1175111532211304e-01 + + + <_> + + 0 -1 1486 8.1239398568868637e-03 + + + 5.0090491771697998e-01 2.5200259685516357e-01 + + + <_> + + 0 -1 1487 -4.9964650534093380e-03 + + + 6.3871437311172485e-01 4.9278119206428528e-01 + + + <_> + + 0 -1 1488 3.1253970228135586e-03 + + + 5.1368498802185059e-01 3.6804521083831787e-01 + + + <_> + + 0 -1 1489 6.7669642157852650e-03 + + + 5.5098438262939453e-01 4.3636319041252136e-01 + + + <_> + + 0 -1 1490 -2.3711440153419971e-03 + + + 6.1623352766036987e-01 4.5869469642639160e-01 + + + <_> + + 0 -1 1491 -5.3522791713476181e-03 + + + 6.1854577064514160e-01 4.9204909801483154e-01 + + + <_> + + 0 -1 1492 -1.5968859195709229e-02 + + + 1.3826179504394531e-01 4.9832528829574585e-01 + + + <_> + + 0 -1 1493 4.7676060348749161e-03 + + + 4.6880578994750977e-01 5.4900461435317993e-01 + + + <_> + + 0 -1 1494 -2.4714691098779440e-03 + + + 2.3685149848461151e-01 5.0039529800415039e-01 + + + <_> + + 0 -1 1495 -7.1033788844943047e-04 + + + 5.8563941717147827e-01 4.7215330600738525e-01 + + + <_> + + 0 -1 1496 -1.4117559790611267e-01 + + + 8.6900062859058380e-02 4.9615910649299622e-01 + + + <_> + + 0 -1 1497 1.0651809722185135e-01 + + + 5.1388370990753174e-01 1.7410050332546234e-01 + + + <_> + + 0 -1 1498 -5.2744749933481216e-02 + + + 7.3536360263824463e-01 4.7728818655014038e-01 + + + <_> + + 0 -1 1499 -4.7431760467588902e-03 + + + 3.8844060897827148e-01 5.2927017211914062e-01 + + + <_> + + 0 -1 1500 9.9676765967160463e-04 + + + 5.2234929800033569e-01 4.0034240484237671e-01 + + + <_> + + 0 -1 1501 8.0284131690859795e-03 + + + 4.9591061472892761e-01 7.2129642963409424e-01 + + + <_> + + 0 -1 1502 8.6025858763605356e-04 + + + 4.4448840618133545e-01 5.5384761095046997e-01 + + + <_> + + 0 -1 1503 9.3191501218825579e-04 + + + 5.3983712196350098e-01 4.1632440686225891e-01 + + + <_> + + 0 -1 1504 -2.5082060601562262e-03 + + + 5.8542650938034058e-01 4.5625001192092896e-01 + + + <_> + + 0 -1 1505 -2.1378761157393456e-03 + + + 4.6080690622329712e-01 5.2802592515945435e-01 + + + <_> + + 0 -1 1506 -2.1546049974858761e-03 + + + 3.7911269068717957e-01 5.2559971809387207e-01 + + + <_> + + 0 -1 1507 -7.6214009895920753e-03 + + + 5.9986090660095215e-01 4.9520739912986755e-01 + + + <_> + + 0 -1 1508 2.2055360022932291e-03 + + + 4.4842061400413513e-01 5.5885308980941772e-01 + + + <_> + + 0 -1 1509 1.2586950324475765e-03 + + + 5.4507470130920410e-01 4.4238409399986267e-01 + + + <_> + + 0 -1 1510 -5.0926720723509789e-03 + + + 4.1182750463485718e-01 5.2630358934402466e-01 + + + <_> + + 0 -1 1511 -2.5095739401876926e-03 + + + 5.7879078388214111e-01 4.9984949827194214e-01 + + + <_> + + 0 -1 1512 -7.7327556908130646e-02 + + + 8.3978658914566040e-01 4.8111200332641602e-01 + + + <_> + + 0 -1 1513 -4.1485819965600967e-02 + + + 2.4086110293865204e-01 5.1769930124282837e-01 + + + <_> + + 0 -1 1514 1.0355669655837119e-04 + + + 4.3553608655929565e-01 5.4170542955398560e-01 + + + <_> + + 0 -1 1515 1.3255809899419546e-03 + + + 5.4539710283279419e-01 4.8940950632095337e-01 + + + <_> + + 0 -1 1516 -8.0598732456564903e-03 + + + 5.7710242271423340e-01 4.5779189467430115e-01 + + + <_> + + 0 -1 1517 1.9058620557188988e-02 + + + 5.1698678731918335e-01 3.4004750847816467e-01 + + + <_> + + 0 -1 1518 -3.5057891160249710e-02 + + + 2.2032439708709717e-01 5.0005030632019043e-01 + + + <_> + + 0 -1 1519 5.7296059094369411e-03 + + + 5.0434082746505737e-01 6.5975707769393921e-01 + + + <_> + + 0 -1 1520 -1.1648329906165600e-02 + + + 2.1862849593162537e-01 4.9966529011726379e-01 + + + <_> + + 0 -1 1521 1.4544479781761765e-03 + + + 5.0076818466186523e-01 5.5037277936935425e-01 + + + <_> + + 0 -1 1522 -2.5030909455381334e-04 + + + 4.1298410296440125e-01 5.2416700124740601e-01 + + + <_> + + 0 -1 1523 -8.2907272735610604e-04 + + + 5.4128682613372803e-01 4.9744960665702820e-01 + + + <_> + + 0 -1 1524 1.0862209601327777e-03 + + + 4.6055299043655396e-01 5.8792287111282349e-01 + + + <_> + + 0 -1 1525 2.0000500080641359e-04 + + + 5.2788549661636353e-01 4.7052091360092163e-01 + + + <_> + + 0 -1 1526 2.9212920926511288e-03 + + + 5.1296097040176392e-01 3.7555369734764099e-01 + + + <_> + + 0 -1 1527 2.5387400761246681e-02 + + + 4.8226919770240784e-01 5.7907682657241821e-01 + + + <_> + + 0 -1 1528 -3.1968469265848398e-03 + + + 5.2483952045440674e-01 3.9628401398658752e-01 + + + + + <_> + 182 + 9.0253349304199219e+01 + + <_> + + 0 -1 1529 5.8031738735735416e-03 + + + 3.4989839792251587e-01 5.9619832038879395e-01 + + + <_> + + 0 -1 1530 -9.0003069490194321e-03 + + + 6.8166369199752808e-01 4.4785520434379578e-01 + + + <_> + + 0 -1 1531 -1.1549659539014101e-03 + + + 5.5857062339782715e-01 3.5782510042190552e-01 + + + <_> + + 0 -1 1532 -1.1069850297644734e-03 + + + 5.3650361299514771e-01 3.0504280328750610e-01 + + + <_> + + 0 -1 1533 1.0308309720130637e-04 + + + 3.6390951275825500e-01 5.3446358442306519e-01 + + + <_> + + 0 -1 1534 -5.0984839908778667e-03 + + + 2.8591570258140564e-01 5.5042648315429688e-01 + + + <_> + + 0 -1 1535 8.2572200335562229e-04 + + + 5.2365237474441528e-01 3.4760418534278870e-01 + + + <_> + + 0 -1 1536 9.9783325567841530e-03 + + + 4.7503221035003662e-01 6.2196469306945801e-01 + + + <_> + + 0 -1 1537 -3.7402529269456863e-02 + + + 3.3433759212493896e-01 5.2780628204345703e-01 + + + <_> + + 0 -1 1538 4.8548257909715176e-03 + + + 5.1921808719635010e-01 3.7004441022872925e-01 + + + <_> + + 0 -1 1539 -1.8664470408111811e-03 + + + 2.9298439621925354e-01 5.0919449329376221e-01 + + + <_> + + 0 -1 1540 1.6888890415430069e-02 + + + 3.6868458986282349e-01 5.4312258958816528e-01 + + + <_> + + 0 -1 1541 -5.8372621424496174e-03 + + + 3.6321839690208435e-01 5.2213358879089355e-01 + + + <_> + + 0 -1 1542 -1.4713739510625601e-03 + + + 5.8706837892532349e-01 4.7006508708000183e-01 + + + <_> + + 0 -1 1543 -1.1522950371727347e-03 + + + 3.1958949565887451e-01 5.1409542560577393e-01 + + + <_> + + 0 -1 1544 -4.2560300789773464e-03 + + + 6.3018590211868286e-01 4.8149210214614868e-01 + + + <_> + + 0 -1 1545 -6.7378291860222816e-03 + + + 1.9770480692386627e-01 5.0258082151412964e-01 + + + <_> + + 0 -1 1546 1.1382670141756535e-02 + + + 4.9541321396827698e-01 6.8670457601547241e-01 + + + <_> + + 0 -1 1547 5.1794708706438541e-03 + + + 5.1644277572631836e-01 3.3506479859352112e-01 + + + <_> + + 0 -1 1548 -1.1743789911270142e-01 + + + 2.3152460157871246e-01 5.2344137430191040e-01 + + + <_> + + 0 -1 1549 2.8703449293971062e-02 + + + 4.6642971038818359e-01 6.7225211858749390e-01 + + + <_> + + 0 -1 1550 4.8231030814349651e-03 + + + 5.2208751440048218e-01 2.7235329151153564e-01 + + + <_> + + 0 -1 1551 2.6798530016094446e-03 + + + 5.0792771577835083e-01 2.9069489240646362e-01 + + + <_> + + 0 -1 1552 8.0504082143306732e-03 + + + 4.8859509825706482e-01 6.3950210809707642e-01 + + + <_> + + 0 -1 1553 4.8054959625005722e-03 + + + 5.1972568035125732e-01 3.6566638946533203e-01 + + + <_> + + 0 -1 1554 -2.2420159075409174e-03 + + + 6.1534678936004639e-01 4.7637018561363220e-01 + + + <_> + + 0 -1 1555 -1.3757710345089436e-02 + + + 2.6373448967933655e-01 5.0309032201766968e-01 + + + <_> + + 0 -1 1556 -1.0338299721479416e-01 + + + 2.2875219583511353e-01 5.1824611425399780e-01 + + + <_> + + 0 -1 1557 -9.4432085752487183e-03 + + + 6.9533038139343262e-01 4.6949490904808044e-01 + + + <_> + + 0 -1 1558 8.0271181650459766e-04 + + + 5.4506552219390869e-01 4.2687839269638062e-01 + + + <_> + + 0 -1 1559 -4.1945669800043106e-03 + + + 6.0913878679275513e-01 4.5716428756713867e-01 + + + <_> + + 0 -1 1560 1.0942210443317890e-02 + + + 5.2410632371902466e-01 3.2845470309257507e-01 + + + <_> + + 0 -1 1561 -5.7841069065034389e-04 + + + 5.3879290819168091e-01 4.1793689131736755e-01 + + + <_> + + 0 -1 1562 -2.0888620056211948e-03 + + + 4.2926910519599915e-01 5.3017157316207886e-01 + + + <_> + + 0 -1 1563 3.2383969519287348e-03 + + + 3.7923479080200195e-01 5.2207440137863159e-01 + + + <_> + + 0 -1 1564 4.9075027927756310e-03 + + + 5.2372831106185913e-01 4.1267579793930054e-01 + + + <_> + + 0 -1 1565 -3.2277941703796387e-02 + + + 1.9476559758186340e-01 4.9945020675659180e-01 + + + <_> + + 0 -1 1566 -8.9711230248212814e-03 + + + 6.0112851858139038e-01 4.9290320277214050e-01 + + + <_> + + 0 -1 1567 1.5321089886128902e-02 + + + 5.0097537040710449e-01 2.0398220419883728e-01 + + + <_> + + 0 -1 1568 2.0855569746345282e-03 + + + 4.8621898889541626e-01 5.7216948270797729e-01 + + + <_> + + 0 -1 1569 5.0615021027624607e-03 + + + 5.0002187490463257e-01 1.8018059432506561e-01 + + + <_> + + 0 -1 1570 -3.7174751050770283e-03 + + + 5.5301171541213989e-01 4.8975929617881775e-01 + + + <_> + + 0 -1 1571 -1.2170500122010708e-02 + + + 4.1786059737205505e-01 5.3837239742279053e-01 + + + <_> + + 0 -1 1572 4.6248398721218109e-03 + + + 4.9971699714660645e-01 5.7613271474838257e-01 + + + <_> + + 0 -1 1573 -2.1040429419372231e-04 + + + 5.3318071365356445e-01 4.0976810455322266e-01 + + + <_> + + 0 -1 1574 -1.4641780406236649e-02 + + + 5.7559251785278320e-01 5.0517761707305908e-01 + + + <_> + + 0 -1 1575 3.3199489116668701e-03 + + + 4.5769768953323364e-01 6.0318058729171753e-01 + + + <_> + + 0 -1 1576 3.7236879579722881e-03 + + + 4.3803969025611877e-01 5.4158830642700195e-01 + + + <_> + + 0 -1 1577 8.2951161311939359e-04 + + + 5.1630318164825439e-01 3.7022191286087036e-01 + + + <_> + + 0 -1 1578 -1.1408490128815174e-02 + + + 6.0729467868804932e-01 4.8625651001930237e-01 + + + <_> + + 0 -1 1579 -4.5320121571421623e-03 + + + 3.2924759387969971e-01 5.0889629125595093e-01 + + + <_> + + 0 -1 1580 5.1276017911732197e-03 + + + 4.8297679424285889e-01 6.1227089166641235e-01 + + + <_> + + 0 -1 1581 9.8583158105611801e-03 + + + 4.6606799960136414e-01 6.5561771392822266e-01 + + + <_> + + 0 -1 1582 3.6985918879508972e-02 + + + 5.2048492431640625e-01 1.6904720664024353e-01 + + + <_> + + 0 -1 1583 4.6491161920130253e-03 + + + 5.1673221588134766e-01 3.7252250313758850e-01 + + + <_> + + 0 -1 1584 -4.2664702050387859e-03 + + + 6.4064931869506836e-01 4.9873429536819458e-01 + + + <_> + + 0 -1 1585 -4.7956590424291790e-04 + + + 5.8972930908203125e-01 4.4648739695549011e-01 + + + <_> + + 0 -1 1586 3.6827160511165857e-03 + + + 5.4415607452392578e-01 3.4726628661155701e-01 + + + <_> + + 0 -1 1587 -1.0059880092740059e-02 + + + 2.1431629359722137e-01 5.0048297643661499e-01 + + + <_> + + 0 -1 1588 -3.0361840617842972e-04 + + + 5.3864240646362305e-01 4.5903238654136658e-01 + + + <_> + + 0 -1 1589 -1.4545479789376259e-03 + + + 5.7511842250823975e-01 4.4970950484275818e-01 + + + <_> + + 0 -1 1590 1.6515209572389722e-03 + + + 5.4219377040863037e-01 4.2385208606719971e-01 + + + <_> + + 0 -1 1591 -7.8468639403581619e-03 + + + 4.0779209136962891e-01 5.2581572532653809e-01 + + + <_> + + 0 -1 1592 -5.1259850151836872e-03 + + + 4.2292758822441101e-01 5.4794532060623169e-01 + + + <_> + + 0 -1 1593 -3.6890961229801178e-02 + + + 6.5963757038116455e-01 4.6746781468391418e-01 + + + <_> + + 0 -1 1594 2.4035639944486320e-04 + + + 4.2511358857154846e-01 5.5732029676437378e-01 + + + <_> + + 0 -1 1595 -1.5150169929256663e-05 + + + 5.2592468261718750e-01 4.0741148591041565e-01 + + + <_> + + 0 -1 1596 2.2108471021056175e-03 + + + 4.6717229485511780e-01 5.8863520622253418e-01 + + + <_> + + 0 -1 1597 -1.1568620102480054e-03 + + + 5.7110661268234253e-01 4.4871619343757629e-01 + + + <_> + + 0 -1 1598 4.9996292218565941e-03 + + + 5.2641981840133667e-01 2.8983271121978760e-01 + + + <_> + + 0 -1 1599 -1.4656189596280456e-03 + + + 3.8917380571365356e-01 5.1978719234466553e-01 + + + <_> + + 0 -1 1600 -1.1975039960816503e-03 + + + 5.7958728075027466e-01 4.9279558658599854e-01 + + + <_> + + 0 -1 1601 -4.4954330660402775e-03 + + + 2.3776030540466309e-01 5.0125551223754883e-01 + + + <_> + + 0 -1 1602 1.4997160178609192e-04 + + + 4.8766261339187622e-01 5.6176078319549561e-01 + + + <_> + + 0 -1 1603 2.6391509454697371e-03 + + + 5.1680880784988403e-01 3.7655091285705566e-01 + + + <_> + + 0 -1 1604 -2.9368131072260439e-04 + + + 5.4466491937637329e-01 4.8746308684349060e-01 + + + <_> + + 0 -1 1605 1.4211760135367513e-03 + + + 4.6878978610038757e-01 6.6913318634033203e-01 + + + <_> + + 0 -1 1606 7.9427637159824371e-02 + + + 5.1934438943862915e-01 2.7329459786415100e-01 + + + <_> + + 0 -1 1607 7.9937502741813660e-02 + + + 4.9717310070991516e-01 1.7820839583873749e-01 + + + <_> + + 0 -1 1608 1.1089259758591652e-02 + + + 5.1659947633743286e-01 3.2094758749008179e-01 + + + <_> + + 0 -1 1609 1.6560709627810866e-04 + + + 4.0584719181060791e-01 5.3072762489318848e-01 + + + <_> + + 0 -1 1610 -5.3354292176663876e-03 + + + 3.4450569748878479e-01 5.1581299304962158e-01 + + + <_> + + 0 -1 1611 1.1287260567769408e-03 + + + 4.5948630571365356e-01 6.0755330324172974e-01 + + + <_> + + 0 -1 1612 -2.1969219669699669e-02 + + + 1.6804009675979614e-01 5.2285957336425781e-01 + + + <_> + + 0 -1 1613 -2.1775320055894554e-04 + + + 3.8615968823432922e-01 5.2156728506088257e-01 + + + <_> + + 0 -1 1614 2.0200149447191507e-04 + + + 5.5179792642593384e-01 4.3630391359329224e-01 + + + <_> + + 0 -1 1615 -2.1733149886131287e-02 + + + 7.9994601011276245e-01 4.7898510098457336e-01 + + + <_> + + 0 -1 1616 -8.4399932529777288e-04 + + + 4.0859758853912354e-01 5.3747731447219849e-01 + + + <_> + + 0 -1 1617 -4.3895249837078154e-04 + + + 5.4704052209854126e-01 4.3661430478096008e-01 + + + <_> + + 0 -1 1618 1.5092400135472417e-03 + + + 4.9889969825744629e-01 5.8421492576599121e-01 + + + <_> + + 0 -1 1619 -3.5547839943319559e-03 + + + 6.7536902427673340e-01 4.7210058569908142e-01 + + + <_> + + 0 -1 1620 4.8191400128416717e-04 + + + 5.4158538579940796e-01 4.3571090698242188e-01 + + + <_> + + 0 -1 1621 -6.0264398343861103e-03 + + + 2.2585099935531616e-01 4.9918809533119202e-01 + + + <_> + + 0 -1 1622 -1.1668140068650246e-02 + + + 6.2565547227859497e-01 4.9274989962577820e-01 + + + <_> + + 0 -1 1623 -2.8718370012938976e-03 + + + 3.9477849006652832e-01 5.2458018064498901e-01 + + + <_> + + 0 -1 1624 1.7051169648766518e-02 + + + 4.7525110840797424e-01 5.7942241430282593e-01 + + + <_> + + 0 -1 1625 -1.3352080248296261e-02 + + + 6.0411047935485840e-01 4.5445358753204346e-01 + + + <_> + + 0 -1 1626 -3.9301801007241011e-04 + + + 4.2582759261131287e-01 5.5449050664901733e-01 + + + <_> + + 0 -1 1627 3.0483349692076445e-03 + + + 5.2334201335906982e-01 3.7802729010581970e-01 + + + <_> + + 0 -1 1628 -4.3579288758337498e-03 + + + 6.3718891143798828e-01 4.8386740684509277e-01 + + + <_> + + 0 -1 1629 5.6661018170416355e-03 + + + 5.3747057914733887e-01 4.1636660695075989e-01 + + + <_> + + 0 -1 1630 6.0677339206449687e-05 + + + 4.6387958526611328e-01 5.3116250038146973e-01 + + + <_> + + 0 -1 1631 3.6738160997629166e-02 + + + 4.6886560320854187e-01 6.4665240049362183e-01 + + + <_> + + 0 -1 1632 8.6528137326240540e-03 + + + 5.2043187618255615e-01 2.1886579692363739e-01 + + + <_> + + 0 -1 1633 -1.5371359884738922e-01 + + + 1.6303719580173492e-01 4.9588400125503540e-01 + + + <_> + + 0 -1 1634 -4.1560421232134104e-04 + + + 5.7744592428207397e-01 4.6964588761329651e-01 + + + <_> + + 0 -1 1635 -1.2640169588848948e-03 + + + 3.9771759510040283e-01 5.2171981334686279e-01 + + + <_> + + 0 -1 1636 -3.5473341122269630e-03 + + + 6.0465282201766968e-01 4.8083150386810303e-01 + + + <_> + + 0 -1 1637 3.0019069527043030e-05 + + + 3.9967238903045654e-01 5.2282011508941650e-01 + + + <_> + + 0 -1 1638 1.3113019522279501e-03 + + + 4.7121581435203552e-01 5.7659977674484253e-01 + + + <_> + + 0 -1 1639 -1.3374709524214268e-03 + + + 4.1095849871635437e-01 5.2531701326370239e-01 + + + <_> + + 0 -1 1640 2.0876709371805191e-02 + + + 5.2029937505722046e-01 1.7579819262027740e-01 + + + <_> + + 0 -1 1641 -7.5497948564589024e-03 + + + 6.5666097402572632e-01 4.6949750185012817e-01 + + + <_> + + 0 -1 1642 2.4188550189137459e-02 + + + 5.1286739110946655e-01 3.3702209591865540e-01 + + + <_> + + 0 -1 1643 -2.9358828905969858e-03 + + + 6.5807867050170898e-01 4.6945410966873169e-01 + + + <_> + + 0 -1 1644 5.7557929307222366e-02 + + + 5.1464450359344482e-01 2.7752599120140076e-01 + + + <_> + + 0 -1 1645 -1.1343370424583554e-03 + + + 3.8366019725799561e-01 5.1926672458648682e-01 + + + <_> + + 0 -1 1646 1.6816999763250351e-02 + + + 5.0855928659439087e-01 6.1772608757019043e-01 + + + <_> + + 0 -1 1647 5.0535178743302822e-03 + + + 5.1387631893157959e-01 3.6847919225692749e-01 + + + <_> + + 0 -1 1648 -4.5874710194766521e-03 + + + 5.9896552562713623e-01 4.8352020978927612e-01 + + + <_> + + 0 -1 1649 1.6882460331544280e-03 + + + 4.5094868540763855e-01 5.7230567932128906e-01 + + + <_> + + 0 -1 1650 -1.6554000321775675e-03 + + + 3.4967708587646484e-01 5.2433192729949951e-01 + + + <_> + + 0 -1 1651 -1.9373800605535507e-02 + + + 1.1205369979143143e-01 4.9687129259109497e-01 + + + <_> + + 0 -1 1652 1.0374450124800205e-02 + + + 5.1481968164443970e-01 4.3952131271362305e-01 + + + <_> + + 0 -1 1653 1.4973050565458834e-04 + + + 4.0849998593330383e-01 5.2698868513107300e-01 + + + <_> + + 0 -1 1654 -4.2981930077075958e-02 + + + 6.3941049575805664e-01 5.0185042619705200e-01 + + + <_> + + 0 -1 1655 8.3065936341881752e-03 + + + 4.7075539827346802e-01 6.6983532905578613e-01 + + + <_> + + 0 -1 1656 -4.1285790503025055e-03 + + + 4.5413690805435181e-01 5.3236472606658936e-01 + + + <_> + + 0 -1 1657 1.7399420030415058e-03 + + + 4.3339619040489197e-01 5.4398661851882935e-01 + + + <_> + + 0 -1 1658 1.1739750334527344e-04 + + + 4.5796871185302734e-01 5.5434262752532959e-01 + + + <_> + + 0 -1 1659 1.8585780344437808e-04 + + + 4.3246439099311829e-01 5.4267549514770508e-01 + + + <_> + + 0 -1 1660 5.5587692186236382e-03 + + + 5.2572208642959595e-01 3.5506111383438110e-01 + + + <_> + + 0 -1 1661 -7.9851560294628143e-03 + + + 6.0430181026458740e-01 4.6306359767913818e-01 + + + <_> + + 0 -1 1662 6.0594122624024749e-04 + + + 4.5982548594474792e-01 5.5331951379776001e-01 + + + <_> + + 0 -1 1663 -2.2983040253166109e-04 + + + 4.1307520866394043e-01 5.3224611282348633e-01 + + + <_> + + 0 -1 1664 4.3740210821852088e-04 + + + 4.0430399775505066e-01 5.4092890024185181e-01 + + + <_> + + 0 -1 1665 2.9482020181603730e-04 + + + 4.4949638843536377e-01 5.6288522481918335e-01 + + + <_> + + 0 -1 1666 1.0312659665942192e-02 + + + 5.1775109767913818e-01 2.7043169736862183e-01 + + + <_> + + 0 -1 1667 -7.7241109684109688e-03 + + + 1.9880190491676331e-01 4.9805539846420288e-01 + + + <_> + + 0 -1 1668 -4.6797208487987518e-03 + + + 6.6447502374649048e-01 5.0182962417602539e-01 + + + <_> + + 0 -1 1669 -5.0755459815263748e-03 + + + 3.8983049988746643e-01 5.1852691173553467e-01 + + + <_> + + 0 -1 1670 2.2479740437120199e-03 + + + 4.8018088936805725e-01 5.6603360176086426e-01 + + + <_> + + 0 -1 1671 8.3327008178457618e-04 + + + 5.2109199762344360e-01 3.9571881294250488e-01 + + + <_> + + 0 -1 1672 -4.1279330849647522e-02 + + + 6.1545419692993164e-01 5.0070542097091675e-01 + + + <_> + + 0 -1 1673 -5.0930189900100231e-04 + + + 3.9759421348571777e-01 5.2284038066864014e-01 + + + <_> + + 0 -1 1674 1.2568780221045017e-03 + + + 4.9791380763053894e-01 5.9391832351684570e-01 + + + <_> + + 0 -1 1675 8.0048497766256332e-03 + + + 4.9844971299171448e-01 1.6333660483360291e-01 + + + <_> + + 0 -1 1676 -1.1879300000146031e-03 + + + 5.9049648046493530e-01 4.9426248669624329e-01 + + + <_> + + 0 -1 1677 6.1948952497914433e-04 + + + 4.1995579004287720e-01 5.3287261724472046e-01 + + + <_> + + 0 -1 1678 6.6829859279096127e-03 + + + 5.4186028242111206e-01 4.9058890342712402e-01 + + + <_> + + 0 -1 1679 -3.7062340416014194e-03 + + + 3.7259390950202942e-01 5.1380002498626709e-01 + + + <_> + + 0 -1 1680 -3.9739411324262619e-02 + + + 6.4789611101150513e-01 5.0503468513488770e-01 + + + <_> + + 0 -1 1681 1.4085009461268783e-03 + + + 4.6823391318321228e-01 6.3778841495513916e-01 + + + <_> + + 0 -1 1682 3.9322688826359808e-04 + + + 5.4585301876068115e-01 4.1504821181297302e-01 + + + <_> + + 0 -1 1683 -1.8979819724336267e-03 + + + 3.6901599168777466e-01 5.1497042179107666e-01 + + + <_> + + 0 -1 1684 -1.3970440253615379e-02 + + + 6.0505628585815430e-01 4.8113578557968140e-01 + + + <_> + + 0 -1 1685 -1.0100819915533066e-01 + + + 2.0170800387859344e-01 4.9923619627952576e-01 + + + <_> + + 0 -1 1686 -1.7346920445561409e-02 + + + 5.7131487131118774e-01 4.8994860053062439e-01 + + + <_> + + 0 -1 1687 1.5619759506080300e-04 + + + 4.2153888940811157e-01 5.3926420211791992e-01 + + + <_> + + 0 -1 1688 1.3438929617404938e-01 + + + 5.1361519098281860e-01 3.7676128745079041e-01 + + + <_> + + 0 -1 1689 -2.4582240730524063e-02 + + + 7.0273578166961670e-01 4.7479069232940674e-01 + + + <_> + + 0 -1 1690 -3.8553720805794001e-03 + + + 4.3174090981483459e-01 5.4277169704437256e-01 + + + <_> + + 0 -1 1691 -2.3165249731391668e-03 + + + 5.9426987171173096e-01 4.6186479926109314e-01 + + + <_> + + 0 -1 1692 -4.8518120311200619e-03 + + + 6.1915689706802368e-01 4.8848950862884521e-01 + + + <_> + + 0 -1 1693 2.4699938949197531e-03 + + + 5.2566647529602051e-01 4.0171998739242554e-01 + + + <_> + + 0 -1 1694 4.5496959239244461e-02 + + + 5.2378678321838379e-01 2.6857739686965942e-01 + + + <_> + + 0 -1 1695 -2.0319599658250809e-02 + + + 2.1304459869861603e-01 4.9797388911247253e-01 + + + <_> + + 0 -1 1696 2.6994998916052282e-04 + + + 4.8140418529510498e-01 5.5431222915649414e-01 + + + <_> + + 0 -1 1697 -1.8232699949294329e-03 + + + 6.4825797080993652e-01 4.7099891304969788e-01 + + + <_> + + 0 -1 1698 -6.3015790656208992e-03 + + + 4.5819279551506042e-01 5.3062361478805542e-01 + + + <_> + + 0 -1 1699 -2.4139499873854220e-04 + + + 5.2320867776870728e-01 4.0517631173133850e-01 + + + <_> + + 0 -1 1700 -1.0330369696021080e-03 + + + 5.5562019348144531e-01 4.7891938686370850e-01 + + + <_> + + 0 -1 1701 1.8041160365100950e-04 + + + 5.2294427156448364e-01 4.0118101239204407e-01 + + + <_> + + 0 -1 1702 -6.1407860368490219e-02 + + + 6.2986820936203003e-01 5.0107032060623169e-01 + + + <_> + + 0 -1 1703 -6.9543913006782532e-02 + + + 7.2282809019088745e-01 4.7731840610504150e-01 + + + <_> + + 0 -1 1704 -7.0542663335800171e-02 + + + 2.2695130109786987e-01 5.1825290918350220e-01 + + + <_> + + 0 -1 1705 2.4423799477517605e-03 + + + 5.2370971441268921e-01 4.0981510281562805e-01 + + + <_> + + 0 -1 1706 1.5494349645450711e-03 + + + 4.7737509012222290e-01 5.4680430889129639e-01 + + + <_> + + 0 -1 1707 -2.3914219811558723e-02 + + + 7.1469759941101074e-01 4.7838249802589417e-01 + + + <_> + + 0 -1 1708 -1.2453690171241760e-02 + + + 2.6352968811988831e-01 5.2411228418350220e-01 + + + <_> + + 0 -1 1709 -2.0760179904755205e-04 + + + 3.6237570643424988e-01 5.1136088371276855e-01 + + + <_> + + 0 -1 1710 2.9781080229440704e-05 + + + 4.7059321403503418e-01 5.4328018426895142e-01 + + + + + <_> + 211 + 1.0474919891357422e+02 + + <_> + + 0 -1 1711 1.1772749945521355e-02 + + + 3.8605189323425293e-01 6.4211672544479370e-01 + + + <_> + + 0 -1 1712 2.7037570253014565e-02 + + + 4.3856549263000488e-01 6.7540389299392700e-01 + + + <_> + + 0 -1 1713 -3.6419500247575343e-05 + + + 5.4871010780334473e-01 3.4233158826828003e-01 + + + <_> + + 0 -1 1714 1.9995409529656172e-03 + + + 3.2305321097373962e-01 5.4003179073333740e-01 + + + <_> + + 0 -1 1715 4.5278300531208515e-03 + + + 5.0916397571563721e-01 2.9350438714027405e-01 + + + <_> + + 0 -1 1716 4.7890920541249216e-04 + + + 4.1781538724899292e-01 5.3440642356872559e-01 + + + <_> + + 0 -1 1717 1.1720920447260141e-03 + + + 2.8991821408271790e-01 5.1320707798004150e-01 + + + <_> + + 0 -1 1718 9.5305702416226268e-04 + + + 4.2801249027252197e-01 5.5608451366424561e-01 + + + <_> + + 0 -1 1719 1.5099150004971307e-05 + + + 4.0448719263076782e-01 5.4047602415084839e-01 + + + <_> + + 0 -1 1720 -6.0817901976406574e-04 + + + 4.2717689275741577e-01 5.5034661293029785e-01 + + + <_> + + 0 -1 1721 3.3224520739167929e-03 + + + 3.9627239108085632e-01 5.3697347640991211e-01 + + + <_> + + 0 -1 1722 -1.1037490330636501e-03 + + + 4.7271779179573059e-01 5.2377498149871826e-01 + + + <_> + + 0 -1 1723 -1.4350269921123981e-03 + + + 5.6030082702636719e-01 4.2235091328620911e-01 + + + <_> + + 0 -1 1724 2.0767399109899998e-03 + + + 5.2259171009063721e-01 4.7327259182929993e-01 + + + <_> + + 0 -1 1725 -1.6412809782195836e-04 + + + 3.9990758895874023e-01 5.4327398538589478e-01 + + + <_> + + 0 -1 1726 8.8302437216043472e-03 + + + 4.6783858537673950e-01 6.0273271799087524e-01 + + + <_> + + 0 -1 1727 -1.0552070103585720e-02 + + + 3.4939670562744141e-01 5.2139747142791748e-01 + + + <_> + + 0 -1 1728 -2.2731600329279900e-03 + + + 6.1858189105987549e-01 4.7490629553794861e-01 + + + <_> + + 0 -1 1729 -8.4786332445219159e-04 + + + 5.2853411436080933e-01 3.8434821367263794e-01 + + + <_> + + 0 -1 1730 1.2081359745934606e-03 + + + 5.3606408834457397e-01 3.4473359584808350e-01 + + + <_> + + 0 -1 1731 2.6512730401009321e-03 + + + 4.5582920312881470e-01 6.1939620971679688e-01 + + + <_> + + 0 -1 1732 -1.1012479662895203e-03 + + + 3.6802300810813904e-01 5.3276282548904419e-01 + + + <_> + + 0 -1 1733 4.9561518244445324e-04 + + + 3.9605951309204102e-01 5.2749407291412354e-01 + + + <_> + + 0 -1 1734 -4.3901771306991577e-02 + + + 7.0204448699951172e-01 4.9928390979766846e-01 + + + <_> + + 0 -1 1735 3.4690350294113159e-02 + + + 5.0491642951965332e-01 2.7666029334068298e-01 + + + <_> + + 0 -1 1736 -2.7442190330475569e-03 + + + 2.6726329326629639e-01 5.2749711275100708e-01 + + + <_> + + 0 -1 1737 3.3316588960587978e-03 + + + 4.5794829726219177e-01 6.0011017322540283e-01 + + + <_> + + 0 -1 1738 -2.0044570788741112e-02 + + + 3.1715941429138184e-01 5.2357178926467896e-01 + + + <_> + + 0 -1 1739 1.3492030557245016e-03 + + + 5.2653628587722778e-01 4.0343248844146729e-01 + + + <_> + + 0 -1 1740 2.9702018946409225e-03 + + + 5.3324568271636963e-01 4.5719841122627258e-01 + + + <_> + + 0 -1 1741 6.3039981760084629e-03 + + + 4.5933109521865845e-01 6.0346359014511108e-01 + + + <_> + + 0 -1 1742 -1.2936590239405632e-02 + + + 4.4379639625549316e-01 5.3729712963104248e-01 + + + <_> + + 0 -1 1743 4.0148729458451271e-03 + + + 4.6803238987922668e-01 6.4378339052200317e-01 + + + <_> + + 0 -1 1744 -2.6401679497212172e-03 + + + 3.7096318602561951e-01 5.3143328428268433e-01 + + + <_> + + 0 -1 1745 1.3918439857661724e-02 + + + 4.7235551476478577e-01 7.1308088302612305e-01 + + + <_> + + 0 -1 1746 -4.5087869511917233e-04 + + + 4.4923940300941467e-01 5.3704041242599487e-01 + + + <_> + + 0 -1 1747 2.5384349282830954e-04 + + + 4.4068640470504761e-01 5.5144029855728149e-01 + + + <_> + + 0 -1 1748 2.2710000630468130e-03 + + + 4.6824169158935547e-01 5.9679841995239258e-01 + + + <_> + + 0 -1 1749 2.4120779708027840e-03 + + + 5.0793921947479248e-01 3.0185988545417786e-01 + + + <_> + + 0 -1 1750 -3.6025670851813629e-05 + + + 5.6010371446609497e-01 4.4710969924926758e-01 + + + <_> + + 0 -1 1751 -7.4905529618263245e-03 + + + 2.2075350582599640e-01 4.9899441003799438e-01 + + + <_> + + 0 -1 1752 -1.7513120546936989e-02 + + + 6.5312159061431885e-01 5.0176489353179932e-01 + + + <_> + + 0 -1 1753 1.4281630516052246e-01 + + + 4.9679630994796753e-01 1.4820620417594910e-01 + + + <_> + + 0 -1 1754 5.5345268920063972e-03 + + + 4.8989468812942505e-01 5.9542238712310791e-01 + + + <_> + + 0 -1 1755 -9.6323591424152255e-04 + + + 3.9271169900894165e-01 5.1960742473602295e-01 + + + <_> + + 0 -1 1756 -2.0370010752230883e-03 + + + 5.6133252382278442e-01 4.8848581314086914e-01 + + + <_> + + 0 -1 1757 1.6614829655736685e-03 + + + 4.4728800654411316e-01 5.5788809061050415e-01 + + + <_> + + 0 -1 1758 -3.1188090797513723e-03 + + + 3.8405328989028931e-01 5.3974777460098267e-01 + + + <_> + + 0 -1 1759 -6.4000617712736130e-03 + + + 5.8439838886260986e-01 4.5332181453704834e-01 + + + <_> + + 0 -1 1760 3.1319601112045348e-04 + + + 5.4392218589782715e-01 4.2347279191017151e-01 + + + <_> + + 0 -1 1761 -1.8222099170088768e-02 + + + 1.2884649634361267e-01 4.9584048986434937e-01 + + + <_> + + 0 -1 1762 8.7969247251749039e-03 + + + 4.9512979388237000e-01 7.1534800529479980e-01 + + + <_> + + 0 -1 1763 -4.2395070195198059e-03 + + + 3.9465999603271484e-01 5.1949369907379150e-01 + + + <_> + + 0 -1 1764 9.7086271271109581e-03 + + + 4.8975038528442383e-01 6.0649001598358154e-01 + + + <_> + + 0 -1 1765 -3.9934171363711357e-03 + + + 3.2454401254653931e-01 5.0608289241790771e-01 + + + <_> + + 0 -1 1766 -1.6785059124231339e-02 + + + 1.5819530189037323e-01 5.2037787437438965e-01 + + + <_> + + 0 -1 1767 1.8272090703248978e-02 + + + 4.6809351444244385e-01 6.6269791126251221e-01 + + + <_> + + 0 -1 1768 5.6872838176786900e-03 + + + 5.2116978168487549e-01 3.5121849179267883e-01 + + + <_> + + 0 -1 1769 -1.0739039862528443e-03 + + + 5.7683861255645752e-01 4.5298451185226440e-01 + + + <_> + + 0 -1 1770 -3.7093870341777802e-03 + + + 4.5077630877494812e-01 5.3135812282562256e-01 + + + <_> + + 0 -1 1771 -2.1110709349159151e-04 + + + 5.4608201980590820e-01 4.3333768844604492e-01 + + + <_> + + 0 -1 1772 1.0670139454305172e-03 + + + 5.3718560934066772e-01 4.0783908963203430e-01 + + + <_> + + 0 -1 1773 3.5943021066486835e-03 + + + 4.4712871313095093e-01 5.6438362598419189e-01 + + + <_> + + 0 -1 1774 -5.1776031032204628e-03 + + + 4.4993931055068970e-01 5.2803301811218262e-01 + + + <_> + + 0 -1 1775 -2.5414369883947074e-04 + + + 5.5161732435226440e-01 4.4077080488204956e-01 + + + <_> + + 0 -1 1776 6.3522560521960258e-03 + + + 5.1941901445388794e-01 2.4652279913425446e-01 + + + <_> + + 0 -1 1777 -4.4205080484971404e-04 + + + 3.8307058811187744e-01 5.1396822929382324e-01 + + + <_> + + 0 -1 1778 7.4488727841526270e-04 + + + 4.8910909891128540e-01 5.9747868776321411e-01 + + + <_> + + 0 -1 1779 -3.5116379149258137e-03 + + + 7.4136817455291748e-01 4.7687649726867676e-01 + + + <_> + + 0 -1 1780 -1.2540910392999649e-02 + + + 3.6488190293312073e-01 5.2528268098831177e-01 + + + <_> + + 0 -1 1781 9.4931852072477341e-03 + + + 5.1004928350448608e-01 3.6295869946479797e-01 + + + <_> + + 0 -1 1782 1.2961150147020817e-02 + + + 5.2324420213699341e-01 4.3335610628128052e-01 + + + <_> + + 0 -1 1783 4.7209449112415314e-03 + + + 4.6481490135192871e-01 6.3310527801513672e-01 + + + <_> + + 0 -1 1784 -2.3119079414755106e-03 + + + 5.9303098917007446e-01 4.5310580730438232e-01 + + + <_> + + 0 -1 1785 -2.8262299019843340e-03 + + + 3.8704779744148254e-01 5.2571010589599609e-01 + + + <_> + + 0 -1 1786 -1.4311339473351836e-03 + + + 5.5225032567977905e-01 4.5618548989295959e-01 + + + <_> + + 0 -1 1787 1.9378310535103083e-03 + + + 4.5462208986282349e-01 5.7369667291641235e-01 + + + <_> + + 0 -1 1788 2.6343559147790074e-04 + + + 5.3457391262054443e-01 4.5718750357627869e-01 + + + <_> + + 0 -1 1789 7.8257522545754910e-04 + + + 3.9678159356117249e-01 5.2201879024505615e-01 + + + <_> + + 0 -1 1790 -1.9550440832972527e-02 + + + 2.8296428918838501e-01 5.2435082197189331e-01 + + + <_> + + 0 -1 1791 4.3914958951063454e-04 + + + 4.5900669693946838e-01 5.8990901708602905e-01 + + + <_> + + 0 -1 1792 2.1452000364661217e-02 + + + 5.2314108610153198e-01 2.8553789854049683e-01 + + + <_> + + 0 -1 1793 5.8973580598831177e-04 + + + 4.3972569704055786e-01 5.5064219236373901e-01 + + + <_> + + 0 -1 1794 -2.6157610118389130e-02 + + + 3.1350791454315186e-01 5.1891750097274780e-01 + + + <_> + + 0 -1 1795 -1.3959860429167747e-02 + + + 3.2132729887962341e-01 5.0407177209854126e-01 + + + <_> + + 0 -1 1796 -6.3699018210172653e-03 + + + 6.3875448703765869e-01 4.8495069146156311e-01 + + + <_> + + 0 -1 1797 -8.5613820701837540e-03 + + + 2.7591320872306824e-01 5.0320190191268921e-01 + + + <_> + + 0 -1 1798 9.6622901037335396e-04 + + + 4.6856409311294556e-01 5.8348792791366577e-01 + + + <_> + + 0 -1 1799 7.6550268568098545e-04 + + + 5.1752072572708130e-01 3.8964220881462097e-01 + + + <_> + + 0 -1 1800 -8.1833340227603912e-03 + + + 2.0691369473934174e-01 5.2081221342086792e-01 + + + <_> + + 0 -1 1801 -9.3976939097046852e-03 + + + 6.1340910196304321e-01 4.6412229537963867e-01 + + + <_> + + 0 -1 1802 4.8028980381786823e-03 + + + 5.4541081190109253e-01 4.3952199816703796e-01 + + + <_> + + 0 -1 1803 -3.5680569708347321e-03 + + + 6.3444852828979492e-01 4.6810939908027649e-01 + + + <_> + + 0 -1 1804 4.0733120404183865e-03 + + + 5.2926832437515259e-01 4.0156200528144836e-01 + + + <_> + + 0 -1 1805 1.2568129459396005e-03 + + + 4.3929880857467651e-01 5.4528248310089111e-01 + + + <_> + + 0 -1 1806 -2.9065010603517294e-03 + + + 5.8988320827484131e-01 4.8633798956871033e-01 + + + <_> + + 0 -1 1807 -2.4409340694546700e-03 + + + 4.0693649649620056e-01 5.2474218606948853e-01 + + + <_> + + 0 -1 1808 2.4830700829625130e-02 + + + 5.1827257871627808e-01 3.6825248599052429e-01 + + + <_> + + 0 -1 1809 -4.8854008316993713e-02 + + + 1.3075779378414154e-01 4.9612811207771301e-01 + + + <_> + + 0 -1 1810 -1.6110379947349429e-03 + + + 6.4210057258605957e-01 4.8726621270179749e-01 + + + <_> + + 0 -1 1811 -9.7009479999542236e-02 + + + 4.7769349068403244e-02 4.9509888887405396e-01 + + + <_> + + 0 -1 1812 1.1209240183234215e-03 + + + 4.6162670850753784e-01 5.3547459840774536e-01 + + + <_> + + 0 -1 1813 -1.3064090162515640e-03 + + + 6.2618541717529297e-01 4.6388059854507446e-01 + + + <_> + + 0 -1 1814 4.5771620352752507e-04 + + + 5.3844177722930908e-01 4.6466401219367981e-01 + + + <_> + + 0 -1 1815 -6.3149951165542006e-04 + + + 3.8040471076965332e-01 5.1302570104598999e-01 + + + <_> + + 0 -1 1816 1.4505970466416329e-04 + + + 4.5543101429939270e-01 5.6644618511199951e-01 + + + <_> + + 0 -1 1817 -1.6474550589919090e-02 + + + 6.5969580411911011e-01 4.7158598899841309e-01 + + + <_> + + 0 -1 1818 1.3369579799473286e-02 + + + 5.1954662799835205e-01 3.0359649658203125e-01 + + + <_> + + 0 -1 1819 1.0271780047332868e-04 + + + 5.2291762828826904e-01 4.1070660948753357e-01 + + + <_> + + 0 -1 1820 -5.5311559699475765e-03 + + + 6.3528877496719360e-01 4.9609071016311646e-01 + + + <_> + + 0 -1 1821 -2.6187049224972725e-03 + + + 3.8245460391044617e-01 5.1409840583801270e-01 + + + <_> + + 0 -1 1822 5.0834268331527710e-03 + + + 4.9504399299621582e-01 6.2208187580108643e-01 + + + <_> + + 0 -1 1823 7.9818159341812134e-02 + + + 4.9523359537124634e-01 1.3224759697914124e-01 + + + <_> + + 0 -1 1824 -9.9226586520671844e-02 + + + 7.5427287817001343e-01 5.0084167718887329e-01 + + + <_> + + 0 -1 1825 -6.5174017800018191e-04 + + + 3.6993029713630676e-01 5.1301211118698120e-01 + + + <_> + + 0 -1 1826 -1.8996849656105042e-02 + + + 6.6891789436340332e-01 4.9212029576301575e-01 + + + <_> + + 0 -1 1827 1.7346899956464767e-02 + + + 4.9833008646965027e-01 1.8591980636119843e-01 + + + <_> + + 0 -1 1828 5.5082101607695222e-04 + + + 4.5744240283966064e-01 5.5221217870712280e-01 + + + <_> + + 0 -1 1829 2.0056050270795822e-03 + + + 5.1317447423934937e-01 3.8564699888229370e-01 + + + <_> + + 0 -1 1830 -7.7688191086053848e-03 + + + 4.3617001175880432e-01 5.4343092441558838e-01 + + + <_> + + 0 -1 1831 5.0878278911113739e-02 + + + 4.6827208995819092e-01 6.8406397104263306e-01 + + + <_> + + 0 -1 1832 -2.2901780903339386e-03 + + + 4.3292450904846191e-01 5.3060990571975708e-01 + + + <_> + + 0 -1 1833 -1.5715380141045898e-04 + + + 5.3700572252273560e-01 4.3781641125679016e-01 + + + <_> + + 0 -1 1834 1.0519240051507950e-01 + + + 5.1372742652893066e-01 6.7361466586589813e-02 + + + <_> + + 0 -1 1835 2.7198919560760260e-03 + + + 4.1120609641075134e-01 5.2556651830673218e-01 + + + <_> + + 0 -1 1836 4.8337779939174652e-02 + + + 5.4046237468719482e-01 4.4389671087265015e-01 + + + <_> + + 0 -1 1837 9.5703761326149106e-04 + + + 4.3559691309928894e-01 5.3995108604431152e-01 + + + <_> + + 0 -1 1838 -2.5371259078383446e-02 + + + 5.9951752424240112e-01 5.0310248136520386e-01 + + + <_> + + 0 -1 1839 5.2457951009273529e-02 + + + 4.9502879381179810e-01 1.3983510434627533e-01 + + + <_> + + 0 -1 1840 -1.2365629896521568e-02 + + + 6.3972991704940796e-01 4.9641060829162598e-01 + + + <_> + + 0 -1 1841 -1.4589719474315643e-01 + + + 1.0016699880361557e-01 4.9463221430778503e-01 + + + <_> + + 0 -1 1842 -1.5908600762486458e-02 + + + 3.3123299479484558e-01 5.2083408832550049e-01 + + + <_> + + 0 -1 1843 3.9486068999394774e-04 + + + 4.4063639640808105e-01 5.4261028766632080e-01 + + + <_> + + 0 -1 1844 -5.2454001270234585e-03 + + + 2.7995899319648743e-01 5.1899671554565430e-01 + + + <_> + + 0 -1 1845 -5.0421799533069134e-03 + + + 6.9875800609588623e-01 4.7521421313285828e-01 + + + <_> + + 0 -1 1846 2.9812189750373363e-03 + + + 4.9832889437675476e-01 6.3074797391891479e-01 + + + <_> + + 0 -1 1847 -7.2884308174252510e-03 + + + 2.9823330044746399e-01 5.0268697738647461e-01 + + + <_> + + 0 -1 1848 1.5094350092113018e-03 + + + 5.3084421157836914e-01 3.8329708576202393e-01 + + + <_> + + 0 -1 1849 -9.3340799212455750e-03 + + + 2.0379640161991119e-01 4.9698171019554138e-01 + + + <_> + + 0 -1 1850 2.8667140752077103e-02 + + + 5.0256967544555664e-01 6.9280272722244263e-01 + + + <_> + + 0 -1 1851 1.7019680142402649e-01 + + + 4.9600529670715332e-01 1.4764429628849030e-01 + + + <_> + + 0 -1 1852 -3.2614478841423988e-03 + + + 5.6030637025833130e-01 4.8260560631752014e-01 + + + <_> + + 0 -1 1853 5.5769277969375253e-04 + + + 5.2055621147155762e-01 4.1296330094337463e-01 + + + <_> + + 0 -1 1854 3.6258339881896973e-01 + + + 5.2216529846191406e-01 3.7686121463775635e-01 + + + <_> + + 0 -1 1855 -1.1615130119025707e-02 + + + 6.0226827859878540e-01 4.6374899148941040e-01 + + + <_> + + 0 -1 1856 -4.0795197710394859e-03 + + + 4.0704470872879028e-01 5.3374791145324707e-01 + + + <_> + + 0 -1 1857 5.7204300537705421e-04 + + + 4.6018350124359131e-01 5.9003931283950806e-01 + + + <_> + + 0 -1 1858 6.7543348995968699e-04 + + + 5.3982520103454590e-01 4.3454289436340332e-01 + + + <_> + + 0 -1 1859 6.3295697327703238e-04 + + + 5.2015632390975952e-01 4.0513589978218079e-01 + + + <_> + + 0 -1 1860 1.2435320531949401e-03 + + + 4.6423879265785217e-01 5.5474412441253662e-01 + + + <_> + + 0 -1 1861 -4.7363857738673687e-03 + + + 6.1985671520233154e-01 4.6725520491600037e-01 + + + <_> + + 0 -1 1862 -6.4658462069928646e-03 + + + 6.8373328447341919e-01 5.0190007686614990e-01 + + + <_> + + 0 -1 1863 3.5017321351915598e-04 + + + 4.3448030948638916e-01 5.3636229038238525e-01 + + + <_> + + 0 -1 1864 1.5754920605104417e-04 + + + 4.7600790858268738e-01 5.7320207357406616e-01 + + + <_> + + 0 -1 1865 9.9774366244673729e-03 + + + 5.0909858942031860e-01 3.6350399255752563e-01 + + + <_> + + 0 -1 1866 -4.1464529931545258e-04 + + + 5.5700647830963135e-01 4.5938020944595337e-01 + + + <_> + + 0 -1 1867 -3.5888899583369493e-04 + + + 5.3568458557128906e-01 4.3391349911689758e-01 + + + <_> + + 0 -1 1868 4.0463250479660928e-04 + + + 4.4398030638694763e-01 5.4367768764495850e-01 + + + <_> + + 0 -1 1869 -8.2184787606820464e-04 + + + 4.0422949194908142e-01 5.1762992143630981e-01 + + + <_> + + 0 -1 1870 5.9467419050633907e-03 + + + 4.9276518821716309e-01 5.6337797641754150e-01 + + + <_> + + 0 -1 1871 -2.1753389388322830e-02 + + + 8.0062937736511230e-01 4.8008409142494202e-01 + + + <_> + + 0 -1 1872 -1.4540379866957664e-02 + + + 3.9460548758506775e-01 5.1822227239608765e-01 + + + <_> + + 0 -1 1873 -4.0510769933462143e-02 + + + 2.1324990317225456e-02 4.9357929825782776e-01 + + + <_> + + 0 -1 1874 -5.8458268176764250e-04 + + + 4.0127959847450256e-01 5.3140252828598022e-01 + + + <_> + + 0 -1 1875 5.5151800625026226e-03 + + + 4.6424189209938049e-01 5.8962607383728027e-01 + + + <_> + + 0 -1 1876 -6.0626221820712090e-03 + + + 6.5021592378616333e-01 5.0164777040481567e-01 + + + <_> + + 0 -1 1877 9.4535842537879944e-02 + + + 5.2647089958190918e-01 4.1268271207809448e-01 + + + <_> + + 0 -1 1878 4.7315051779150963e-03 + + + 4.8791998624801636e-01 5.8924478292465210e-01 + + + <_> + + 0 -1 1879 -5.2571471314877272e-04 + + + 3.9172801375389099e-01 5.1894128322601318e-01 + + + <_> + + 0 -1 1880 -2.5464049540460110e-03 + + + 5.8375990390777588e-01 4.9857059121131897e-01 + + + <_> + + 0 -1 1881 -2.6075689122080803e-02 + + + 1.2619839608669281e-01 4.9558219313621521e-01 + + + <_> + + 0 -1 1882 -5.4779709316790104e-03 + + + 5.7225137948989868e-01 5.0102657079696655e-01 + + + <_> + + 0 -1 1883 5.1337741315364838e-03 + + + 5.2732622623443604e-01 4.2263761162757874e-01 + + + <_> + + 0 -1 1884 4.7944980906322598e-04 + + + 4.4500669836997986e-01 5.8195871114730835e-01 + + + <_> + + 0 -1 1885 -2.1114079281687737e-03 + + + 5.7576531171798706e-01 4.5117148756980896e-01 + + + <_> + + 0 -1 1886 -1.3179990462958813e-02 + + + 1.8843810260295868e-01 5.1607340574264526e-01 + + + <_> + + 0 -1 1887 -4.7968099825084209e-03 + + + 6.5897899866104126e-01 4.7361189126968384e-01 + + + <_> + + 0 -1 1888 6.7483168095350266e-03 + + + 5.2594298124313354e-01 3.3563950657844543e-01 + + + <_> + + 0 -1 1889 1.4623369788751006e-03 + + + 5.3552711009979248e-01 4.2640921473503113e-01 + + + <_> + + 0 -1 1890 4.7645159065723419e-03 + + + 5.0344067811965942e-01 5.7868278026580811e-01 + + + <_> + + 0 -1 1891 6.8066660314798355e-03 + + + 4.7566050291061401e-01 6.6778290271759033e-01 + + + <_> + + 0 -1 1892 3.6608621012419462e-03 + + + 5.3696119785308838e-01 4.3115469813346863e-01 + + + <_> + + 0 -1 1893 2.1449640393257141e-02 + + + 4.9686419963836670e-01 1.8888160586357117e-01 + + + <_> + + 0 -1 1894 4.1678901761770248e-03 + + + 4.9307331442832947e-01 5.8153688907623291e-01 + + + <_> + + 0 -1 1895 8.6467564105987549e-03 + + + 5.2052050828933716e-01 4.1325950622558594e-01 + + + <_> + + 0 -1 1896 -3.6114078829996288e-04 + + + 5.4835551977157593e-01 4.8009279370307922e-01 + + + <_> + + 0 -1 1897 1.0808729566633701e-03 + + + 4.6899020671844482e-01 6.0414212942123413e-01 + + + <_> + + 0 -1 1898 5.7719959877431393e-03 + + + 5.1711422204971313e-01 3.0532771348953247e-01 + + + <_> + + 0 -1 1899 1.5720770461484790e-03 + + + 5.2199780941009521e-01 4.1788038611412048e-01 + + + <_> + + 0 -1 1900 -1.9307859474793077e-03 + + + 5.8603698015213013e-01 4.8129200935363770e-01 + + + <_> + + 0 -1 1901 -7.8926272690296173e-03 + + + 1.7492769658565521e-01 4.9717339873313904e-01 + + + <_> + + 0 -1 1902 -2.2224679123610258e-03 + + + 4.3425890803337097e-01 5.2128481864929199e-01 + + + <_> + + 0 -1 1903 1.9011989934369922e-03 + + + 4.7651869058609009e-01 6.8920552730560303e-01 + + + <_> + + 0 -1 1904 2.7576119173318148e-03 + + + 5.2621912956237793e-01 4.3374860286712646e-01 + + + <_> + + 0 -1 1905 5.1787449046969414e-03 + + + 4.8040691018104553e-01 7.8437292575836182e-01 + + + <_> + + 0 -1 1906 -9.0273341629654169e-04 + + + 4.1208469867706299e-01 5.3534239530563354e-01 + + + <_> + + 0 -1 1907 5.1797959022223949e-03 + + + 4.7403728961944580e-01 6.4259600639343262e-01 + + + <_> + + 0 -1 1908 -1.0114000178873539e-02 + + + 2.4687920510768890e-01 5.1750177145004272e-01 + + + <_> + + 0 -1 1909 -1.8617060035467148e-02 + + + 5.7562941312789917e-01 4.6289789676666260e-01 + + + <_> + + 0 -1 1910 5.9225959703326225e-03 + + + 5.1696258783340454e-01 3.2142710685729980e-01 + + + <_> + + 0 -1 1911 -6.2945079989731312e-03 + + + 3.8720148801803589e-01 5.1416367292404175e-01 + + + <_> + + 0 -1 1912 6.5353019163012505e-03 + + + 4.8530489206314087e-01 6.3104897737503052e-01 + + + <_> + + 0 -1 1913 1.0878399480134249e-03 + + + 5.1173150539398193e-01 3.7232589721679688e-01 + + + <_> + + 0 -1 1914 -2.2542240098118782e-02 + + + 5.6927400827407837e-01 4.8871129751205444e-01 + + + <_> + + 0 -1 1915 -3.0065660830587149e-03 + + + 2.5560128688812256e-01 5.0039929151535034e-01 + + + <_> + + 0 -1 1916 7.4741272255778313e-03 + + + 4.8108729720115662e-01 5.6759268045425415e-01 + + + <_> + + 0 -1 1917 2.6162320747971535e-02 + + + 4.9711948633193970e-01 1.7772370576858521e-01 + + + <_> + + 0 -1 1918 9.4352738233283162e-04 + + + 4.9400109052658081e-01 5.4912507534027100e-01 + + + <_> + + 0 -1 1919 3.3363241702318192e-02 + + + 5.0076121091842651e-01 2.7907240390777588e-01 + + + <_> + + 0 -1 1920 -1.5118650160729885e-02 + + + 7.0595788955688477e-01 4.9730318784713745e-01 + + + <_> + + 0 -1 1921 9.8648946732282639e-04 + + + 5.1286202669143677e-01 3.7767618894577026e-01 + + + + + <_> + 213 + 1.0576110076904297e+02 + + <_> + + 0 -1 1922 -9.5150798559188843e-02 + + + 6.4707571268081665e-01 4.0172868967056274e-01 + + + <_> + + 0 -1 1923 6.2702340073883533e-03 + + + 3.9998221397399902e-01 5.7464492321014404e-01 + + + <_> + + 0 -1 1924 3.0018089455552399e-04 + + + 3.5587701201438904e-01 5.5388098955154419e-01 + + + <_> + + 0 -1 1925 1.1757409665733576e-03 + + + 4.2565348744392395e-01 5.3826177120208740e-01 + + + <_> + + 0 -1 1926 4.4235268433112651e-05 + + + 3.6829081177711487e-01 5.5899268388748169e-01 + + + <_> + + 0 -1 1927 -2.9936920327600092e-05 + + + 5.4524701833724976e-01 4.0203678607940674e-01 + + + <_> + + 0 -1 1928 3.0073199886828661e-03 + + + 5.2390581369400024e-01 3.3178439736366272e-01 + + + <_> + + 0 -1 1929 -1.0513889603316784e-02 + + + 4.3206891417503357e-01 5.3079837560653687e-01 + + + <_> + + 0 -1 1930 8.3476826548576355e-03 + + + 4.5046371221542358e-01 6.4532989263534546e-01 + + + <_> + + 0 -1 1931 -3.1492270063608885e-03 + + + 4.3134251236915588e-01 5.3705251216888428e-01 + + + <_> + + 0 -1 1932 -1.4435649973165710e-05 + + + 5.3266030550003052e-01 3.8179719448089600e-01 + + + <_> + + 0 -1 1933 -4.2855090578086674e-04 + + + 4.3051639199256897e-01 5.3820097446441650e-01 + + + <_> + + 0 -1 1934 1.5062429883982986e-04 + + + 4.2359709739685059e-01 5.5449652671813965e-01 + + + <_> + + 0 -1 1935 7.1559831500053406e-02 + + + 5.3030598163604736e-01 2.6788029074668884e-01 + + + <_> + + 0 -1 1936 8.4095180500298738e-04 + + + 3.5571089386940002e-01 5.2054339647293091e-01 + + + <_> + + 0 -1 1937 6.2986500561237335e-02 + + + 5.2253627777099609e-01 2.8613761067390442e-01 + + + <_> + + 0 -1 1938 -3.3798629883676767e-03 + + + 3.6241859197616577e-01 5.2016979455947876e-01 + + + <_> + + 0 -1 1939 -1.1810739670181647e-04 + + + 5.4744768142700195e-01 3.9598938822746277e-01 + + + <_> + + 0 -1 1940 -5.4505601292476058e-04 + + + 3.7404221296310425e-01 5.2157157659530640e-01 + + + <_> + + 0 -1 1941 -1.8454910023137927e-03 + + + 5.8930522203445435e-01 4.5844489336013794e-01 + + + <_> + + 0 -1 1942 -4.3832371011376381e-04 + + + 4.0845820307731628e-01 5.3853511810302734e-01 + + + <_> + + 0 -1 1943 -2.4000830017030239e-03 + + + 3.7774550914764404e-01 5.2935802936553955e-01 + + + <_> + + 0 -1 1944 -9.8795741796493530e-02 + + + 2.9636120796203613e-01 5.0700891017913818e-01 + + + <_> + + 0 -1 1945 3.1798239797353745e-03 + + + 4.8776328563690186e-01 6.7264437675476074e-01 + + + <_> + + 0 -1 1946 3.2406419632025063e-04 + + + 4.3669110536575317e-01 5.5611097812652588e-01 + + + <_> + + 0 -1 1947 -3.2547250390052795e-02 + + + 3.1281578540802002e-01 5.3086161613464355e-01 + + + <_> + + 0 -1 1948 -7.7561130747199059e-03 + + + 6.5602248907089233e-01 4.6398720145225525e-01 + + + <_> + + 0 -1 1949 1.6027249395847321e-02 + + + 5.1726800203323364e-01 3.1418979167938232e-01 + + + <_> + + 0 -1 1950 7.1002350523485802e-06 + + + 4.0844461321830750e-01 5.3362947702407837e-01 + + + <_> + + 0 -1 1951 7.3422808200120926e-03 + + + 4.9669221043586731e-01 6.6034650802612305e-01 + + + <_> + + 0 -1 1952 -1.6970280557870865e-03 + + + 5.9082370996475220e-01 4.5001828670501709e-01 + + + <_> + + 0 -1 1953 2.4118260480463505e-03 + + + 5.3151607513427734e-01 3.5997208952903748e-01 + + + <_> + + 0 -1 1954 -5.5300937965512276e-03 + + + 2.3340409994125366e-01 4.9968141317367554e-01 + + + <_> + + 0 -1 1955 -2.6478730142116547e-03 + + + 5.8809357881546021e-01 4.6847340464591980e-01 + + + <_> + + 0 -1 1956 1.1295629665255547e-02 + + + 4.9837771058082581e-01 1.8845909833908081e-01 + + + <_> + + 0 -1 1957 -6.6952878842130303e-04 + + + 5.8721381425857544e-01 4.7990199923515320e-01 + + + <_> + + 0 -1 1958 1.4410680159926414e-03 + + + 5.1311892271041870e-01 3.5010111331939697e-01 + + + <_> + + 0 -1 1959 2.4637870956212282e-03 + + + 5.3393721580505371e-01 4.1176390647888184e-01 + + + <_> + + 0 -1 1960 3.3114518737420440e-04 + + + 4.3133831024169922e-01 5.3982460498809814e-01 + + + <_> + + 0 -1 1961 -3.3557269722223282e-02 + + + 2.6753368973731995e-01 5.1791548728942871e-01 + + + <_> + + 0 -1 1962 1.8539419397711754e-02 + + + 4.9738699197769165e-01 2.3171770572662354e-01 + + + <_> + + 0 -1 1963 -2.9698139405809343e-04 + + + 5.5297082662582397e-01 4.6436640620231628e-01 + + + <_> + + 0 -1 1964 -4.5577259152196348e-04 + + + 5.6295841932296753e-01 4.4691911339759827e-01 + + + <_> + + 0 -1 1965 -1.0158980265259743e-02 + + + 6.7062127590179443e-01 4.9259188771247864e-01 + + + <_> + + 0 -1 1966 -2.2413829356082715e-05 + + + 5.2394217252731323e-01 3.9129018783569336e-01 + + + <_> + + 0 -1 1967 7.2034963523037732e-05 + + + 4.7994381189346313e-01 5.5017888545989990e-01 + + + <_> + + 0 -1 1968 -6.9267209619283676e-03 + + + 6.9300097227096558e-01 4.6980848908424377e-01 + + + <_> + + 0 -1 1969 -7.6997838914394379e-03 + + + 4.0996238589286804e-01 5.4808831214904785e-01 + + + <_> + + 0 -1 1970 -7.3130549862980843e-03 + + + 3.2834759354591370e-01 5.0578862428665161e-01 + + + <_> + + 0 -1 1971 1.9650589674711227e-03 + + + 4.9780470132827759e-01 6.3982498645782471e-01 + + + <_> + + 0 -1 1972 7.1647600270807743e-03 + + + 4.6611601114273071e-01 6.2221372127532959e-01 + + + <_> + + 0 -1 1973 -2.4078639224171638e-02 + + + 2.3346449434757233e-01 5.2221620082855225e-01 + + + <_> + + 0 -1 1974 -2.1027969196438789e-02 + + + 1.1836539953947067e-01 4.9382260441780090e-01 + + + <_> + + 0 -1 1975 3.6017020465806127e-04 + + + 5.3250199556350708e-01 4.1167110204696655e-01 + + + <_> + + 0 -1 1976 -1.7219729721546173e-02 + + + 6.2787622213363647e-01 4.6642690896987915e-01 + + + <_> + + 0 -1 1977 -7.8672142699360847e-03 + + + 3.4034150838851929e-01 5.2497369050979614e-01 + + + <_> + + 0 -1 1978 -4.4777389848604798e-04 + + + 3.6104118824005127e-01 5.0862592458724976e-01 + + + <_> + + 0 -1 1979 5.5486010387539864e-03 + + + 4.8842659592628479e-01 6.2034982442855835e-01 + + + <_> + + 0 -1 1980 -6.9461148232221603e-03 + + + 2.6259300112724304e-01 5.0110971927642822e-01 + + + <_> + + 0 -1 1981 1.3569870498031378e-04 + + + 4.3407949805259705e-01 5.6283122301101685e-01 + + + <_> + + 0 -1 1982 -4.5880250632762909e-02 + + + 6.5079987049102783e-01 4.6962749958038330e-01 + + + <_> + + 0 -1 1983 -2.1582560613751411e-02 + + + 3.8265028595924377e-01 5.2876168489456177e-01 + + + <_> + + 0 -1 1984 -2.0209539681673050e-02 + + + 3.2333680987358093e-01 5.0744771957397461e-01 + + + <_> + + 0 -1 1985 5.8496710844337940e-03 + + + 5.1776039600372314e-01 4.4896709918975830e-01 + + + <_> + + 0 -1 1986 -5.7476379879517481e-05 + + + 4.0208509564399719e-01 5.2463638782501221e-01 + + + <_> + + 0 -1 1987 -1.1513100471347570e-03 + + + 6.3150721788406372e-01 4.9051541090011597e-01 + + + <_> + + 0 -1 1988 1.9862831104546785e-03 + + + 4.7024598717689514e-01 6.4971512556076050e-01 + + + <_> + + 0 -1 1989 -5.2719512023031712e-03 + + + 3.6503839492797852e-01 5.2276527881622314e-01 + + + <_> + + 0 -1 1990 1.2662699446082115e-03 + + + 5.1661008596420288e-01 3.8776180148124695e-01 + + + <_> + + 0 -1 1991 -6.2919440679252148e-03 + + + 7.3758941888809204e-01 5.0238478183746338e-01 + + + <_> + + 0 -1 1992 6.7360111279413104e-04 + + + 4.4232261180877686e-01 5.4955857992172241e-01 + + + <_> + + 0 -1 1993 -1.0523450328037143e-03 + + + 5.9763962030410767e-01 4.8595830798149109e-01 + + + <_> + + 0 -1 1994 -4.4216238893568516e-04 + + + 5.9559392929077148e-01 4.3989309668540955e-01 + + + <_> + + 0 -1 1995 1.1747940443456173e-03 + + + 5.3498882055282593e-01 4.6050581336021423e-01 + + + <_> + + 0 -1 1996 5.2457437850534916e-03 + + + 5.0491911172866821e-01 2.9415771365165710e-01 + + + <_> + + 0 -1 1997 -2.4539720267057419e-02 + + + 2.5501778721809387e-01 5.2185869216918945e-01 + + + <_> + + 0 -1 1998 7.3793041519820690e-04 + + + 4.4248610734939575e-01 5.4908162355422974e-01 + + + <_> + + 0 -1 1999 1.4233799884095788e-03 + + + 5.3195142745971680e-01 4.0813559293746948e-01 + + + <_> + + 0 -1 2000 -2.4149110540747643e-03 + + + 4.0876591205596924e-01 5.2389502525329590e-01 + + + <_> + + 0 -1 2001 -1.2165299849584699e-03 + + + 5.6745791435241699e-01 4.9080529808998108e-01 + + + <_> + + 0 -1 2002 -1.2438809499144554e-03 + + + 4.1294258832931519e-01 5.2561181783676147e-01 + + + <_> + + 0 -1 2003 6.1942739412188530e-03 + + + 5.0601941347122192e-01 7.3136532306671143e-01 + + + <_> + + 0 -1 2004 -1.6607169527560472e-03 + + + 5.9796321392059326e-01 4.5963698625564575e-01 + + + <_> + + 0 -1 2005 -2.7316259220242500e-02 + + + 4.1743651032447815e-01 5.3088420629501343e-01 + + + <_> + + 0 -1 2006 -1.5845570014789701e-03 + + + 5.6158047914505005e-01 4.5194861292839050e-01 + + + <_> + + 0 -1 2007 -1.5514739789068699e-03 + + + 4.0761870145797729e-01 5.3607851266860962e-01 + + + <_> + + 0 -1 2008 3.8446558755822480e-04 + + + 4.3472939729690552e-01 5.4304420948028564e-01 + + + <_> + + 0 -1 2009 -1.4672259800136089e-02 + + + 1.6593049466609955e-01 5.1460939645767212e-01 + + + <_> + + 0 -1 2010 8.1608882173895836e-03 + + + 4.9618190526962280e-01 1.8847459554672241e-01 + + + <_> + + 0 -1 2011 1.1121659772470593e-03 + + + 4.8682639002799988e-01 6.0938161611557007e-01 + + + <_> + + 0 -1 2012 -7.2603770531713963e-03 + + + 6.2843251228332520e-01 4.6903759241104126e-01 + + + <_> + + 0 -1 2013 -2.4046430189628154e-04 + + + 5.5750000476837158e-01 4.0460440516471863e-01 + + + <_> + + 0 -1 2014 -2.3348190006799996e-04 + + + 4.1157621145248413e-01 5.2528482675552368e-01 + + + <_> + + 0 -1 2015 5.5736480280756950e-03 + + + 4.7300729155540466e-01 5.6901007890701294e-01 + + + <_> + + 0 -1 2016 3.0623769387602806e-02 + + + 4.9718868732452393e-01 1.7400950193405151e-01 + + + <_> + + 0 -1 2017 9.2074798885732889e-04 + + + 5.3721177577972412e-01 4.3548721075057983e-01 + + + <_> + + 0 -1 2018 -4.3550739064812660e-05 + + + 5.3668838739395142e-01 4.3473169207572937e-01 + + + <_> + + 0 -1 2019 -6.6452710889279842e-03 + + + 3.4355181455612183e-01 5.1605331897735596e-01 + + + <_> + + 0 -1 2020 4.3221998959779739e-02 + + + 4.7667920589447021e-01 7.2936528921127319e-01 + + + <_> + + 0 -1 2021 2.2331769578158855e-03 + + + 5.0293159484863281e-01 5.6331712007522583e-01 + + + <_> + + 0 -1 2022 3.1829739455133677e-03 + + + 4.0160921216011047e-01 5.1921367645263672e-01 + + + <_> + + 0 -1 2023 -1.8027749320026487e-04 + + + 4.0883159637451172e-01 5.4179197549819946e-01 + + + <_> + + 0 -1 2024 -5.2934689447283745e-03 + + + 4.0756770968437195e-01 5.2435618638992310e-01 + + + <_> + + 0 -1 2025 1.2750959722325206e-03 + + + 4.9132829904556274e-01 6.3870108127593994e-01 + + + <_> + + 0 -1 2026 4.3385322205722332e-03 + + + 5.0316721200942993e-01 2.9473468661308289e-01 + + + <_> + + 0 -1 2027 8.5250744596123695e-03 + + + 4.9497890472412109e-01 6.3088691234588623e-01 + + + <_> + + 0 -1 2028 -9.4266352243721485e-04 + + + 5.3283667564392090e-01 4.2856499552726746e-01 + + + <_> + + 0 -1 2029 1.3609660090878606e-03 + + + 4.9915251135826111e-01 5.9415012598037720e-01 + + + <_> + + 0 -1 2030 4.4782509212382138e-04 + + + 4.5735040307044983e-01 5.8544808626174927e-01 + + + <_> + + 0 -1 2031 1.3360050506889820e-03 + + + 4.6043589711189270e-01 5.8490520715713501e-01 + + + <_> + + 0 -1 2032 -6.0967548051849008e-04 + + + 3.9693889021873474e-01 5.2294230461120605e-01 + + + <_> + + 0 -1 2033 -2.3656780831515789e-03 + + + 5.8083200454711914e-01 4.8983570933341980e-01 + + + <_> + + 0 -1 2034 1.0734340175986290e-03 + + + 4.3512108922004700e-01 5.4700392484664917e-01 + + + <_> + + 0 -1 2035 2.1923359017819166e-03 + + + 5.3550601005554199e-01 3.8429039716720581e-01 + + + <_> + + 0 -1 2036 5.4968618787825108e-03 + + + 5.0181388854980469e-01 2.8271919488906860e-01 + + + <_> + + 0 -1 2037 -7.5368821620941162e-02 + + + 1.2250760197639465e-01 5.1488268375396729e-01 + + + <_> + + 0 -1 2038 2.5134470313787460e-02 + + + 4.7317668795585632e-01 7.0254462957382202e-01 + + + <_> + + 0 -1 2039 -2.9358599931583740e-05 + + + 5.4305320978164673e-01 4.6560868620872498e-01 + + + <_> + + 0 -1 2040 -5.8355910005047917e-04 + + + 4.0310400724411011e-01 5.1901197433471680e-01 + + + <_> + + 0 -1 2041 -2.6639450807124376e-03 + + + 4.3081268668174744e-01 5.1617711782455444e-01 + + + <_> + + 0 -1 2042 -1.3804089976474643e-03 + + + 6.2198299169540405e-01 4.6955159306526184e-01 + + + <_> + + 0 -1 2043 1.2313219485804439e-03 + + + 5.3793638944625854e-01 4.4258311390876770e-01 + + + <_> + + 0 -1 2044 -1.4644179827882908e-05 + + + 5.2816402912139893e-01 4.2225030064582825e-01 + + + <_> + + 0 -1 2045 -1.2818809598684311e-02 + + + 2.5820928812026978e-01 5.1799327135086060e-01 + + + <_> + + 0 -1 2046 2.2852189838886261e-02 + + + 4.7786930203437805e-01 7.6092642545700073e-01 + + + <_> + + 0 -1 2047 8.2305970136076212e-04 + + + 5.3409922122955322e-01 4.6717241406440735e-01 + + + <_> + + 0 -1 2048 1.2770120054483414e-02 + + + 4.9657610058784485e-01 1.4723660051822662e-01 + + + <_> + + 0 -1 2049 -5.0051510334014893e-02 + + + 6.4149940013885498e-01 5.0165921449661255e-01 + + + <_> + + 0 -1 2050 1.5775270760059357e-02 + + + 4.5223200321197510e-01 5.6853622198104858e-01 + + + <_> + + 0 -1 2051 -1.8501620739698410e-02 + + + 2.7647489309310913e-01 5.1379591226577759e-01 + + + <_> + + 0 -1 2052 2.4626250378787518e-03 + + + 5.1419419050216675e-01 3.7954080104827881e-01 + + + <_> + + 0 -1 2053 6.2916167080402374e-02 + + + 5.0606489181518555e-01 6.5804338455200195e-01 + + + <_> + + 0 -1 2054 -2.1648500478477217e-05 + + + 5.1953881978988647e-01 4.0198868513107300e-01 + + + <_> + + 0 -1 2055 2.1180990152060986e-03 + + + 4.9623650312423706e-01 5.9544587135314941e-01 + + + <_> + + 0 -1 2056 -1.6634890809655190e-02 + + + 3.7579330801963806e-01 5.1754468679428101e-01 + + + <_> + + 0 -1 2057 -2.8899470344185829e-03 + + + 6.6240137815475464e-01 5.0571787357330322e-01 + + + <_> + + 0 -1 2058 7.6783262193202972e-02 + + + 4.7957968711853027e-01 8.0477148294448853e-01 + + + <_> + + 0 -1 2059 3.9170677773654461e-03 + + + 4.9378821253776550e-01 5.7199418544769287e-01 + + + <_> + + 0 -1 2060 -7.2670601308345795e-02 + + + 5.3894560784101486e-02 4.9439039826393127e-01 + + + <_> + + 0 -1 2061 5.4039502143859863e-01 + + + 5.1297742128372192e-01 1.1433389782905579e-01 + + + <_> + + 0 -1 2062 2.9510019812732935e-03 + + + 4.5283439755439758e-01 5.6985741853713989e-01 + + + <_> + + 0 -1 2063 3.4508369863033295e-03 + + + 5.3577268123626709e-01 4.2187309265136719e-01 + + + <_> + + 0 -1 2064 -4.2077939724549651e-04 + + + 5.9161728620529175e-01 4.6379259228706360e-01 + + + <_> + + 0 -1 2065 3.3051050268113613e-03 + + + 5.2733850479125977e-01 4.3820428848266602e-01 + + + <_> + + 0 -1 2066 4.7735060798004270e-04 + + + 4.0465280413627625e-01 5.1818847656250000e-01 + + + <_> + + 0 -1 2067 -2.5928510352969170e-02 + + + 7.4522358179092407e-01 5.0893861055374146e-01 + + + <_> + + 0 -1 2068 -2.9729790985584259e-03 + + + 3.2954359054565430e-01 5.0587952136993408e-01 + + + <_> + + 0 -1 2069 5.8508329093456268e-03 + + + 4.8571440577507019e-01 5.7930248975753784e-01 + + + <_> + + 0 -1 2070 -4.5967519283294678e-02 + + + 4.3127310276031494e-01 5.3806531429290771e-01 + + + <_> + + 0 -1 2071 1.5585960447788239e-01 + + + 5.1961702108383179e-01 1.6847139596939087e-01 + + + <_> + + 0 -1 2072 1.5164829790592194e-02 + + + 4.7357571125030518e-01 6.7350268363952637e-01 + + + <_> + + 0 -1 2073 -1.0604249546304345e-03 + + + 5.8229267597198486e-01 4.7757029533386230e-01 + + + <_> + + 0 -1 2074 6.6476291976869106e-03 + + + 4.9991989135742188e-01 2.3195350170135498e-01 + + + <_> + + 0 -1 2075 -1.2231130152940750e-02 + + + 4.7508931159973145e-01 5.2629822492599487e-01 + + + <_> + + 0 -1 2076 5.6528882123529911e-03 + + + 5.0697678327560425e-01 3.5618188977241516e-01 + + + <_> + + 0 -1 2077 1.2977829901501536e-03 + + + 4.8756939172744751e-01 5.6190627813339233e-01 + + + <_> + + 0 -1 2078 1.0781589895486832e-02 + + + 4.7507700324058533e-01 6.7823082208633423e-01 + + + <_> + + 0 -1 2079 2.8654779307544231e-03 + + + 5.3054618835449219e-01 4.2907360196113586e-01 + + + <_> + + 0 -1 2080 2.8663428965955973e-03 + + + 4.5184791088104248e-01 5.5393511056900024e-01 + + + <_> + + 0 -1 2081 -5.1983320154249668e-03 + + + 4.1491198539733887e-01 5.4341888427734375e-01 + + + <_> + + 0 -1 2082 5.3739990107715130e-03 + + + 4.7178968787193298e-01 6.5076571702957153e-01 + + + <_> + + 0 -1 2083 -1.4641529880464077e-02 + + + 2.1721640229225159e-01 5.1617771387100220e-01 + + + <_> + + 0 -1 2084 -1.5042580344015732e-05 + + + 5.3373837471008301e-01 4.2988368868827820e-01 + + + <_> + + 0 -1 2085 -1.1875660129589960e-04 + + + 4.6045941114425659e-01 5.5824470520019531e-01 + + + <_> + + 0 -1 2086 1.6995530575513840e-02 + + + 4.9458950757980347e-01 7.3880076408386230e-02 + + + <_> + + 0 -1 2087 -3.5095941275358200e-02 + + + 7.0055091381072998e-01 4.9775910377502441e-01 + + + <_> + + 0 -1 2088 2.4217350874096155e-03 + + + 4.4662651419639587e-01 5.4776942729949951e-01 + + + <_> + + 0 -1 2089 -9.6340337768197060e-04 + + + 4.7140988707542419e-01 5.3133380413055420e-01 + + + <_> + + 0 -1 2090 1.6391130338888615e-04 + + + 4.3315461277961731e-01 5.3422421216964722e-01 + + + <_> + + 0 -1 2091 -2.1141460165381432e-02 + + + 2.6447001099586487e-01 5.2044987678527832e-01 + + + <_> + + 0 -1 2092 8.7775202700868249e-04 + + + 5.2083498239517212e-01 4.1527429223060608e-01 + + + <_> + + 0 -1 2093 -2.7943920344114304e-02 + + + 6.3441252708435059e-01 5.0188118219375610e-01 + + + <_> + + 0 -1 2094 6.7297378554940224e-03 + + + 5.0504380464553833e-01 3.5008639097213745e-01 + + + <_> + + 0 -1 2095 2.3281039670109749e-02 + + + 4.9663180112838745e-01 6.9686770439147949e-01 + + + <_> + + 0 -1 2096 -1.1644979938864708e-02 + + + 3.3002600073814392e-01 5.0496298074722290e-01 + + + <_> + + 0 -1 2097 1.5764309093356133e-02 + + + 4.9915981292724609e-01 7.3211538791656494e-01 + + + <_> + + 0 -1 2098 -1.3611479662358761e-03 + + + 3.9117351174354553e-01 5.1606708765029907e-01 + + + <_> + + 0 -1 2099 -8.1522337859496474e-04 + + + 5.6289112567901611e-01 4.9497190117835999e-01 + + + <_> + + 0 -1 2100 -6.0066272271797061e-04 + + + 5.8535951375961304e-01 4.5505958795547485e-01 + + + <_> + + 0 -1 2101 4.9715518252924085e-04 + + + 4.2714700102806091e-01 5.4435992240905762e-01 + + + <_> + + 0 -1 2102 2.3475370835512877e-03 + + + 5.1431107521057129e-01 3.8876569271087646e-01 + + + <_> + + 0 -1 2103 -8.9261569082736969e-03 + + + 6.0445022583007812e-01 4.9717208743095398e-01 + + + <_> + + 0 -1 2104 -1.3919910416007042e-02 + + + 2.5831609964370728e-01 5.0003677606582642e-01 + + + <_> + + 0 -1 2105 1.0209949687123299e-03 + + + 4.8573741316795349e-01 5.5603581666946411e-01 + + + <_> + + 0 -1 2106 -2.7441629208624363e-03 + + + 5.9368848800659180e-01 4.6457770466804504e-01 + + + <_> + + 0 -1 2107 -1.6200130805373192e-02 + + + 3.1630149483680725e-01 5.1934951543807983e-01 + + + <_> + + 0 -1 2108 4.3331980705261230e-03 + + + 5.0612241029739380e-01 3.4588789939880371e-01 + + + <_> + + 0 -1 2109 5.8497930876910686e-04 + + + 4.7790178656578064e-01 5.8701777458190918e-01 + + + <_> + + 0 -1 2110 -2.2466450463980436e-03 + + + 4.2978510260581970e-01 5.3747731447219849e-01 + + + <_> + + 0 -1 2111 2.3146099410951138e-03 + + + 5.4386717081069946e-01 4.6409699320793152e-01 + + + <_> + + 0 -1 2112 8.7679121643304825e-03 + + + 4.7268930077552795e-01 6.7717897891998291e-01 + + + <_> + + 0 -1 2113 -2.2448020172305405e-04 + + + 4.2291730642318726e-01 5.4280489683151245e-01 + + + <_> + + 0 -1 2114 -7.4336021207273006e-03 + + + 6.0988807678222656e-01 4.6836739778518677e-01 + + + <_> + + 0 -1 2115 -2.3189240600913763e-03 + + + 5.6894367933273315e-01 4.4242420792579651e-01 + + + <_> + + 0 -1 2116 -2.1042178850620985e-03 + + + 3.7622210383415222e-01 5.1870870590209961e-01 + + + <_> + + 0 -1 2117 4.6034841216169298e-04 + + + 4.6994051337242126e-01 5.7712072134017944e-01 + + + <_> + + 0 -1 2118 1.0547629790380597e-03 + + + 4.4652169942855835e-01 5.6017017364501953e-01 + + + <_> + + 0 -1 2119 8.7148818420246243e-04 + + + 5.4498052597045898e-01 3.9147090911865234e-01 + + + <_> + + 0 -1 2120 3.3364820410497487e-04 + + + 4.5640090107917786e-01 5.6457388401031494e-01 + + + <_> + + 0 -1 2121 -1.4853250468149781e-03 + + + 5.7473778724670410e-01 4.6927788853645325e-01 + + + <_> + + 0 -1 2122 3.0251620337367058e-03 + + + 5.1661968231201172e-01 3.7628141045570374e-01 + + + <_> + + 0 -1 2123 5.0280741415917873e-03 + + + 5.0021117925643921e-01 6.1515271663665771e-01 + + + <_> + + 0 -1 2124 -5.8164511574432254e-04 + + + 5.3945982456207275e-01 4.3907511234283447e-01 + + + <_> + + 0 -1 2125 4.5141529291868210e-02 + + + 5.1883268356323242e-01 2.0630359649658203e-01 + + + <_> + + 0 -1 2126 -1.0795620037242770e-03 + + + 3.9046850800514221e-01 5.1379072666168213e-01 + + + <_> + + 0 -1 2127 1.5995999274309725e-04 + + + 4.8953229188919067e-01 5.4275041818618774e-01 + + + <_> + + 0 -1 2128 -1.9359270110726357e-02 + + + 6.9752287864685059e-01 4.7735071182250977e-01 + + + <_> + + 0 -1 2129 2.0725509524345398e-01 + + + 5.2336359024047852e-01 3.0349919199943542e-01 + + + <_> + + 0 -1 2130 -4.1953290929086506e-04 + + + 5.4193967580795288e-01 4.4601860642433167e-01 + + + <_> + + 0 -1 2131 2.2582069505006075e-03 + + + 4.8157641291618347e-01 6.0274088382720947e-01 + + + <_> + + 0 -1 2132 -6.7811207845807076e-03 + + + 3.9802789688110352e-01 5.1833057403564453e-01 + + + <_> + + 0 -1 2133 1.1154309846460819e-02 + + + 5.4312318563461304e-01 4.1887599229812622e-01 + + + <_> + + 0 -1 2134 4.3162431567907333e-02 + + + 4.7382280230522156e-01 6.5229612588882446e-01 + + + + + + + <_> + + <_> + 3 7 14 4 -1. + + <_> + 3 9 14 2 2. + + + + <_> + + <_> + 1 2 18 4 -1. + + <_> + 7 2 6 4 3. + + + + <_> + + <_> + 1 7 15 9 -1. + + <_> + 1 10 15 3 3. + + + + <_> + + <_> + 5 6 2 6 -1. + + <_> + 5 9 2 3 2. + + + + <_> + + <_> + 7 5 6 3 -1. + + <_> + 9 5 2 3 3. + + + + <_> + + <_> + 4 0 12 9 -1. + + <_> + 4 3 12 3 3. + + + + <_> + + <_> + 6 9 10 8 -1. + + <_> + 6 13 10 4 2. + + + + <_> + + <_> + 3 6 14 8 -1. + + <_> + 3 10 14 4 2. + + + + <_> + + <_> + 14 1 6 10 -1. + + <_> + 14 1 3 10 2. + + + + <_> + + <_> + 7 8 5 12 -1. + + <_> + 7 12 5 4 3. + + + + <_> + + <_> + 1 1 18 3 -1. + + <_> + 7 1 6 3 3. + + + + <_> + + <_> + 1 8 17 2 -1. + + <_> + 1 9 17 1 2. + + + + <_> + + <_> + 16 6 4 2 -1. + + <_> + 16 7 4 1 2. + + + + <_> + + <_> + 5 17 2 2 -1. + + <_> + 5 18 2 1 2. + + + + <_> + + <_> + 14 2 6 12 -1. + + <_> + 14 2 3 12 2. + + + + <_> + + <_> + 4 0 4 12 -1. + + <_> + 4 0 2 6 2. + + <_> + 6 6 2 6 2. + + + + <_> + + <_> + 2 11 18 8 -1. + + <_> + 8 11 6 8 3. + + + + <_> + + <_> + 5 7 10 2 -1. + + <_> + 5 8 10 1 2. + + + + <_> + + <_> + 15 11 5 3 -1. + + <_> + 15 12 5 1 3. + + + + <_> + + <_> + 5 3 10 9 -1. + + <_> + 5 6 10 3 3. + + + + <_> + + <_> + 9 4 2 14 -1. + + <_> + 9 11 2 7 2. + + + + <_> + + <_> + 3 5 4 12 -1. + + <_> + 3 9 4 4 3. + + + + <_> + + <_> + 4 5 12 5 -1. + + <_> + 8 5 4 5 3. + + + + <_> + + <_> + 5 6 10 8 -1. + + <_> + 5 10 10 4 2. + + + + <_> + + <_> + 8 0 6 9 -1. + + <_> + 8 3 6 3 3. + + + + <_> + + <_> + 9 12 1 8 -1. + + <_> + 9 16 1 4 2. + + + + <_> + + <_> + 0 7 20 6 -1. + + <_> + 0 9 20 2 3. + + + + <_> + + <_> + 7 0 6 17 -1. + + <_> + 9 0 2 17 3. + + + + <_> + + <_> + 9 0 6 4 -1. + + <_> + 11 0 2 4 3. + + + + <_> + + <_> + 5 1 6 4 -1. + + <_> + 7 1 2 4 3. + + + + <_> + + <_> + 12 1 6 16 -1. + + <_> + 14 1 2 16 3. + + + + <_> + + <_> + 0 5 18 8 -1. + + <_> + 0 5 9 4 2. + + <_> + 9 9 9 4 2. + + + + <_> + + <_> + 8 15 10 4 -1. + + <_> + 13 15 5 2 2. + + <_> + 8 17 5 2 2. + + + + <_> + + <_> + 3 1 4 8 -1. + + <_> + 3 1 2 4 2. + + <_> + 5 5 2 4 2. + + + + <_> + + <_> + 3 6 14 10 -1. + + <_> + 10 6 7 5 2. + + <_> + 3 11 7 5 2. + + + + <_> + + <_> + 2 1 6 16 -1. + + <_> + 4 1 2 16 3. + + + + <_> + + <_> + 0 18 20 2 -1. + + <_> + 0 19 20 1 2. + + + + <_> + + <_> + 8 13 4 3 -1. + + <_> + 8 14 4 1 3. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 0 12 9 6 -1. + + <_> + 0 14 9 2 3. + + + + <_> + + <_> + 5 7 3 4 -1. + + <_> + 5 9 3 2 2. + + + + <_> + + <_> + 9 3 2 16 -1. + + <_> + 9 11 2 8 2. + + + + <_> + + <_> + 3 6 13 8 -1. + + <_> + 3 10 13 4 2. + + + + <_> + + <_> + 12 3 8 2 -1. + + <_> + 12 3 4 2 2. + + + + <_> + + <_> + 8 8 4 12 -1. + + <_> + 8 12 4 4 3. + + + + <_> + + <_> + 11 3 8 6 -1. + + <_> + 15 3 4 3 2. + + <_> + 11 6 4 3 2. + + + + <_> + + <_> + 7 1 6 19 -1. + + <_> + 9 1 2 19 3. + + + + <_> + + <_> + 9 0 6 4 -1. + + <_> + 11 0 2 4 3. + + + + <_> + + <_> + 3 1 9 3 -1. + + <_> + 6 1 3 3 3. + + + + <_> + + <_> + 8 15 10 4 -1. + + <_> + 13 15 5 2 2. + + <_> + 8 17 5 2 2. + + + + <_> + + <_> + 0 3 6 10 -1. + + <_> + 3 3 3 10 2. + + + + <_> + + <_> + 3 4 15 15 -1. + + <_> + 3 9 15 5 3. + + + + <_> + + <_> + 6 5 8 6 -1. + + <_> + 6 7 8 2 3. + + + + <_> + + <_> + 4 4 12 10 -1. + + <_> + 10 4 6 5 2. + + <_> + 4 9 6 5 2. + + + + <_> + + <_> + 6 4 4 4 -1. + + <_> + 8 4 2 4 2. + + + + <_> + + <_> + 15 11 1 2 -1. + + <_> + 15 12 1 1 2. + + + + <_> + + <_> + 3 11 2 2 -1. + + <_> + 3 12 2 1 2. + + + + <_> + + <_> + 16 11 1 3 -1. + + <_> + 16 12 1 1 3. + + + + <_> + + <_> + 3 15 6 4 -1. + + <_> + 3 15 3 2 2. + + <_> + 6 17 3 2 2. + + + + <_> + + <_> + 6 7 8 2 -1. + + <_> + 6 8 8 1 2. + + + + <_> + + <_> + 3 11 1 3 -1. + + <_> + 3 12 1 1 3. + + + + <_> + + <_> + 6 0 12 2 -1. + + <_> + 6 1 12 1 2. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 7 15 6 2 -1. + + <_> + 7 16 6 1 2. + + + + <_> + + <_> + 0 5 4 6 -1. + + <_> + 0 7 4 2 3. + + + + <_> + + <_> + 4 12 12 2 -1. + + <_> + 8 12 4 2 3. + + + + <_> + + <_> + 6 3 1 9 -1. + + <_> + 6 6 1 3 3. + + + + <_> + + <_> + 10 17 3 2 -1. + + <_> + 11 17 1 2 3. + + + + <_> + + <_> + 9 9 2 2 -1. + + <_> + 9 10 2 1 2. + + + + <_> + + <_> + 7 6 6 4 -1. + + <_> + 9 6 2 4 3. + + + + <_> + + <_> + 7 17 3 2 -1. + + <_> + 8 17 1 2 3. + + + + <_> + + <_> + 10 17 3 3 -1. + + <_> + 11 17 1 3 3. + + + + <_> + + <_> + 8 12 3 2 -1. + + <_> + 8 13 3 1 2. + + + + <_> + + <_> + 9 3 6 2 -1. + + <_> + 11 3 2 2 3. + + + + <_> + + <_> + 3 11 14 4 -1. + + <_> + 3 13 14 2 2. + + + + <_> + + <_> + 1 10 18 4 -1. + + <_> + 10 10 9 2 2. + + <_> + 1 12 9 2 2. + + + + <_> + + <_> + 0 10 3 3 -1. + + <_> + 0 11 3 1 3. + + + + <_> + + <_> + 9 1 6 6 -1. + + <_> + 11 1 2 6 3. + + + + <_> + + <_> + 8 7 3 6 -1. + + <_> + 9 7 1 6 3. + + + + <_> + + <_> + 1 0 18 9 -1. + + <_> + 1 3 18 3 3. + + + + <_> + + <_> + 12 10 2 6 -1. + + <_> + 12 13 2 3 2. + + + + <_> + + <_> + 0 5 19 8 -1. + + <_> + 0 9 19 4 2. + + + + <_> + + <_> + 7 0 6 9 -1. + + <_> + 9 0 2 9 3. + + + + <_> + + <_> + 5 3 6 1 -1. + + <_> + 7 3 2 1 3. + + + + <_> + + <_> + 11 3 6 1 -1. + + <_> + 13 3 2 1 3. + + + + <_> + + <_> + 5 10 4 6 -1. + + <_> + 5 13 4 3 2. + + + + <_> + + <_> + 11 3 6 1 -1. + + <_> + 13 3 2 1 3. + + + + <_> + + <_> + 4 4 12 6 -1. + + <_> + 4 6 12 2 3. + + + + <_> + + <_> + 15 12 2 6 -1. + + <_> + 15 14 2 2 3. + + + + <_> + + <_> + 9 3 2 2 -1. + + <_> + 10 3 1 2 2. + + + + <_> + + <_> + 9 3 3 1 -1. + + <_> + 10 3 1 1 3. + + + + <_> + + <_> + 1 1 4 14 -1. + + <_> + 3 1 2 14 2. + + + + <_> + + <_> + 9 0 4 4 -1. + + <_> + 11 0 2 2 2. + + <_> + 9 2 2 2 2. + + + + <_> + + <_> + 7 5 1 14 -1. + + <_> + 7 12 1 7 2. + + + + <_> + + <_> + 19 0 1 4 -1. + + <_> + 19 2 1 2 2. + + + + <_> + + <_> + 5 5 6 4 -1. + + <_> + 8 5 3 4 2. + + + + <_> + + <_> + 9 18 3 2 -1. + + <_> + 10 18 1 2 3. + + + + <_> + + <_> + 8 18 3 2 -1. + + <_> + 9 18 1 2 3. + + + + <_> + + <_> + 4 5 12 6 -1. + + <_> + 4 7 12 2 3. + + + + <_> + + <_> + 3 12 2 6 -1. + + <_> + 3 14 2 2 3. + + + + <_> + + <_> + 10 8 2 12 -1. + + <_> + 10 12 2 4 3. + + + + <_> + + <_> + 7 18 3 2 -1. + + <_> + 8 18 1 2 3. + + + + <_> + + <_> + 9 0 6 2 -1. + + <_> + 11 0 2 2 3. + + + + <_> + + <_> + 5 11 9 3 -1. + + <_> + 5 12 9 1 3. + + + + <_> + + <_> + 9 0 6 2 -1. + + <_> + 11 0 2 2 3. + + + + <_> + + <_> + 1 1 18 5 -1. + + <_> + 7 1 6 5 3. + + + + <_> + + <_> + 8 0 4 4 -1. + + <_> + 10 0 2 2 2. + + <_> + 8 2 2 2 2. + + + + <_> + + <_> + 3 12 1 3 -1. + + <_> + 3 13 1 1 3. + + + + <_> + + <_> + 8 14 5 3 -1. + + <_> + 8 15 5 1 3. + + + + <_> + + <_> + 5 4 10 12 -1. + + <_> + 5 4 5 6 2. + + <_> + 10 10 5 6 2. + + + + <_> + + <_> + 9 6 9 12 -1. + + <_> + 9 10 9 4 3. + + + + <_> + + <_> + 2 2 12 14 -1. + + <_> + 2 2 6 7 2. + + <_> + 8 9 6 7 2. + + + + <_> + + <_> + 4 7 12 2 -1. + + <_> + 8 7 4 2 3. + + + + <_> + + <_> + 7 4 6 4 -1. + + <_> + 7 6 6 2 2. + + + + <_> + + <_> + 4 5 11 8 -1. + + <_> + 4 9 11 4 2. + + + + <_> + + <_> + 3 10 16 4 -1. + + <_> + 3 12 16 2 2. + + + + <_> + + <_> + 0 0 16 2 -1. + + <_> + 0 1 16 1 2. + + + + <_> + + <_> + 7 5 6 2 -1. + + <_> + 9 5 2 2 3. + + + + <_> + + <_> + 3 2 6 10 -1. + + <_> + 3 2 3 5 2. + + <_> + 6 7 3 5 2. + + + + <_> + + <_> + 10 5 8 15 -1. + + <_> + 10 10 8 5 3. + + + + <_> + + <_> + 3 14 8 6 -1. + + <_> + 3 14 4 3 2. + + <_> + 7 17 4 3 2. + + + + <_> + + <_> + 14 2 2 2 -1. + + <_> + 14 3 2 1 2. + + + + <_> + + <_> + 1 10 7 6 -1. + + <_> + 1 13 7 3 2. + + + + <_> + + <_> + 15 4 4 3 -1. + + <_> + 15 4 2 3 2. + + + + <_> + + <_> + 2 9 14 6 -1. + + <_> + 2 9 7 3 2. + + <_> + 9 12 7 3 2. + + + + <_> + + <_> + 5 7 10 4 -1. + + <_> + 5 9 10 2 2. + + + + <_> + + <_> + 6 9 8 8 -1. + + <_> + 6 9 4 4 2. + + <_> + 10 13 4 4 2. + + + + <_> + + <_> + 14 1 3 2 -1. + + <_> + 14 2 3 1 2. + + + + <_> + + <_> + 1 4 4 2 -1. + + <_> + 3 4 2 2 2. + + + + <_> + + <_> + 11 10 2 8 -1. + + <_> + 11 14 2 4 2. + + + + <_> + + <_> + 0 0 5 3 -1. + + <_> + 0 1 5 1 3. + + + + <_> + + <_> + 2 5 18 8 -1. + + <_> + 11 5 9 4 2. + + <_> + 2 9 9 4 2. + + + + <_> + + <_> + 6 6 1 6 -1. + + <_> + 6 9 1 3 2. + + + + <_> + + <_> + 19 1 1 3 -1. + + <_> + 19 2 1 1 3. + + + + <_> + + <_> + 7 6 6 6 -1. + + <_> + 9 6 2 6 3. + + + + <_> + + <_> + 19 1 1 3 -1. + + <_> + 19 2 1 1 3. + + + + <_> + + <_> + 3 13 2 3 -1. + + <_> + 3 14 2 1 3. + + + + <_> + + <_> + 8 4 8 12 -1. + + <_> + 12 4 4 6 2. + + <_> + 8 10 4 6 2. + + + + <_> + + <_> + 5 2 6 3 -1. + + <_> + 7 2 2 3 3. + + + + <_> + + <_> + 6 1 9 10 -1. + + <_> + 6 6 9 5 2. + + + + <_> + + <_> + 0 4 6 12 -1. + + <_> + 2 4 2 12 3. + + + + <_> + + <_> + 15 13 2 3 -1. + + <_> + 15 14 2 1 3. + + + + <_> + + <_> + 7 14 5 3 -1. + + <_> + 7 15 5 1 3. + + + + <_> + + <_> + 15 13 3 3 -1. + + <_> + 15 14 3 1 3. + + + + <_> + + <_> + 6 14 8 3 -1. + + <_> + 6 15 8 1 3. + + + + <_> + + <_> + 15 13 3 3 -1. + + <_> + 15 14 3 1 3. + + + + <_> + + <_> + 2 13 3 3 -1. + + <_> + 2 14 3 1 3. + + + + <_> + + <_> + 4 7 12 12 -1. + + <_> + 10 7 6 6 2. + + <_> + 4 13 6 6 2. + + + + <_> + + <_> + 9 7 2 6 -1. + + <_> + 10 7 1 6 2. + + + + <_> + + <_> + 8 9 5 2 -1. + + <_> + 8 10 5 1 2. + + + + <_> + + <_> + 8 6 3 4 -1. + + <_> + 9 6 1 4 3. + + + + <_> + + <_> + 9 6 2 8 -1. + + <_> + 9 10 2 4 2. + + + + <_> + + <_> + 7 7 3 6 -1. + + <_> + 8 7 1 6 3. + + + + <_> + + <_> + 11 3 3 3 -1. + + <_> + 12 3 1 3 3. + + + + <_> + + <_> + 5 4 6 1 -1. + + <_> + 7 4 2 1 3. + + + + <_> + + <_> + 5 6 10 3 -1. + + <_> + 5 7 10 1 3. + + + + <_> + + <_> + 7 3 6 9 -1. + + <_> + 7 6 6 3 3. + + + + <_> + + <_> + 6 7 9 1 -1. + + <_> + 9 7 3 1 3. + + + + <_> + + <_> + 2 8 16 8 -1. + + <_> + 2 12 16 4 2. + + + + <_> + + <_> + 14 6 2 6 -1. + + <_> + 14 9 2 3 2. + + + + <_> + + <_> + 1 5 6 15 -1. + + <_> + 1 10 6 5 3. + + + + <_> + + <_> + 10 0 6 9 -1. + + <_> + 10 3 6 3 3. + + + + <_> + + <_> + 6 6 7 14 -1. + + <_> + 6 13 7 7 2. + + + + <_> + + <_> + 13 7 3 6 -1. + + <_> + 13 9 3 2 3. + + + + <_> + + <_> + 1 8 15 4 -1. + + <_> + 6 8 5 4 3. + + + + <_> + + <_> + 11 2 3 10 -1. + + <_> + 11 7 3 5 2. + + + + <_> + + <_> + 3 7 4 6 -1. + + <_> + 3 9 4 2 3. + + + + <_> + + <_> + 13 3 6 10 -1. + + <_> + 15 3 2 10 3. + + + + <_> + + <_> + 5 7 8 10 -1. + + <_> + 5 7 4 5 2. + + <_> + 9 12 4 5 2. + + + + <_> + + <_> + 4 4 12 12 -1. + + <_> + 10 4 6 6 2. + + <_> + 4 10 6 6 2. + + + + <_> + + <_> + 1 4 6 9 -1. + + <_> + 3 4 2 9 3. + + + + <_> + + <_> + 11 3 2 5 -1. + + <_> + 11 3 1 5 2. + + + + <_> + + <_> + 7 3 2 5 -1. + + <_> + 8 3 1 5 2. + + + + <_> + + <_> + 10 14 2 3 -1. + + <_> + 10 15 2 1 3. + + + + <_> + + <_> + 5 12 6 2 -1. + + <_> + 8 12 3 2 2. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 4 11 12 6 -1. + + <_> + 4 14 12 3 2. + + + + <_> + + <_> + 11 11 5 9 -1. + + <_> + 11 14 5 3 3. + + + + <_> + + <_> + 6 15 3 2 -1. + + <_> + 6 16 3 1 2. + + + + <_> + + <_> + 11 0 3 5 -1. + + <_> + 12 0 1 5 3. + + + + <_> + + <_> + 5 5 6 7 -1. + + <_> + 8 5 3 7 2. + + + + <_> + + <_> + 13 0 1 9 -1. + + <_> + 13 3 1 3 3. + + + + <_> + + <_> + 3 2 4 8 -1. + + <_> + 3 2 2 4 2. + + <_> + 5 6 2 4 2. + + + + <_> + + <_> + 13 12 4 6 -1. + + <_> + 13 14 4 2 3. + + + + <_> + + <_> + 3 12 4 6 -1. + + <_> + 3 14 4 2 3. + + + + <_> + + <_> + 13 11 3 4 -1. + + <_> + 13 13 3 2 2. + + + + <_> + + <_> + 4 4 4 3 -1. + + <_> + 4 5 4 1 3. + + + + <_> + + <_> + 7 5 11 8 -1. + + <_> + 7 9 11 4 2. + + + + <_> + + <_> + 7 8 3 4 -1. + + <_> + 8 8 1 4 3. + + + + <_> + + <_> + 9 1 6 1 -1. + + <_> + 11 1 2 1 3. + + + + <_> + + <_> + 5 5 3 3 -1. + + <_> + 5 6 3 1 3. + + + + <_> + + <_> + 0 9 20 6 -1. + + <_> + 10 9 10 3 2. + + <_> + 0 12 10 3 2. + + + + <_> + + <_> + 8 6 3 5 -1. + + <_> + 9 6 1 5 3. + + + + <_> + + <_> + 11 0 1 3 -1. + + <_> + 11 1 1 1 3. + + + + <_> + + <_> + 4 2 4 2 -1. + + <_> + 4 3 4 1 2. + + + + <_> + + <_> + 12 6 4 3 -1. + + <_> + 12 7 4 1 3. + + + + <_> + + <_> + 5 0 6 4 -1. + + <_> + 7 0 2 4 3. + + + + <_> + + <_> + 9 7 3 8 -1. + + <_> + 10 7 1 8 3. + + + + <_> + + <_> + 9 7 2 2 -1. + + <_> + 10 7 1 2 2. + + + + <_> + + <_> + 6 7 14 4 -1. + + <_> + 13 7 7 2 2. + + <_> + 6 9 7 2 2. + + + + <_> + + <_> + 0 5 3 6 -1. + + <_> + 0 7 3 2 3. + + + + <_> + + <_> + 13 11 3 4 -1. + + <_> + 13 13 3 2 2. + + + + <_> + + <_> + 4 11 3 4 -1. + + <_> + 4 13 3 2 2. + + + + <_> + + <_> + 5 9 12 8 -1. + + <_> + 11 9 6 4 2. + + <_> + 5 13 6 4 2. + + + + <_> + + <_> + 9 12 1 3 -1. + + <_> + 9 13 1 1 3. + + + + <_> + + <_> + 10 15 2 4 -1. + + <_> + 10 17 2 2 2. + + + + <_> + + <_> + 7 7 6 1 -1. + + <_> + 9 7 2 1 3. + + + + <_> + + <_> + 12 3 6 6 -1. + + <_> + 15 3 3 3 2. + + <_> + 12 6 3 3 2. + + + + <_> + + <_> + 0 4 10 6 -1. + + <_> + 0 6 10 2 3. + + + + <_> + + <_> + 8 3 8 14 -1. + + <_> + 12 3 4 7 2. + + <_> + 8 10 4 7 2. + + + + <_> + + <_> + 4 4 7 15 -1. + + <_> + 4 9 7 5 3. + + + + <_> + + <_> + 12 2 6 8 -1. + + <_> + 15 2 3 4 2. + + <_> + 12 6 3 4 2. + + + + <_> + + <_> + 2 2 6 8 -1. + + <_> + 2 2 3 4 2. + + <_> + 5 6 3 4 2. + + + + <_> + + <_> + 2 13 18 7 -1. + + <_> + 8 13 6 7 3. + + + + <_> + + <_> + 4 3 8 14 -1. + + <_> + 4 3 4 7 2. + + <_> + 8 10 4 7 2. + + + + <_> + + <_> + 18 1 2 6 -1. + + <_> + 18 3 2 2 3. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 18 1 2 6 -1. + + <_> + 18 3 2 2 3. + + + + <_> + + <_> + 0 1 2 6 -1. + + <_> + 0 3 2 2 3. + + + + <_> + + <_> + 1 5 18 6 -1. + + <_> + 1 7 18 2 3. + + + + <_> + + <_> + 0 2 6 7 -1. + + <_> + 3 2 3 7 2. + + + + <_> + + <_> + 7 3 6 14 -1. + + <_> + 7 10 6 7 2. + + + + <_> + + <_> + 3 7 13 10 -1. + + <_> + 3 12 13 5 2. + + + + <_> + + <_> + 11 15 2 2 -1. + + <_> + 11 16 2 1 2. + + + + <_> + + <_> + 2 11 16 4 -1. + + <_> + 2 11 8 2 2. + + <_> + 10 13 8 2 2. + + + + <_> + + <_> + 13 7 6 4 -1. + + <_> + 16 7 3 2 2. + + <_> + 13 9 3 2 2. + + + + <_> + + <_> + 6 10 3 9 -1. + + <_> + 6 13 3 3 3. + + + + <_> + + <_> + 14 6 1 6 -1. + + <_> + 14 9 1 3 2. + + + + <_> + + <_> + 5 10 4 1 -1. + + <_> + 7 10 2 1 2. + + + + <_> + + <_> + 3 8 15 5 -1. + + <_> + 8 8 5 5 3. + + + + <_> + + <_> + 1 6 5 4 -1. + + <_> + 1 8 5 2 2. + + + + <_> + + <_> + 3 1 17 6 -1. + + <_> + 3 3 17 2 3. + + + + <_> + + <_> + 6 7 8 2 -1. + + <_> + 10 7 4 2 2. + + + + <_> + + <_> + 9 7 3 2 -1. + + <_> + 10 7 1 2 3. + + + + <_> + + <_> + 8 7 3 2 -1. + + <_> + 9 7 1 2 3. + + + + <_> + + <_> + 8 9 4 2 -1. + + <_> + 8 10 4 1 2. + + + + <_> + + <_> + 8 8 4 3 -1. + + <_> + 8 9 4 1 3. + + + + <_> + + <_> + 9 5 6 4 -1. + + <_> + 9 5 3 4 2. + + + + <_> + + <_> + 8 13 4 3 -1. + + <_> + 8 14 4 1 3. + + + + <_> + + <_> + 4 7 12 6 -1. + + <_> + 10 7 6 3 2. + + <_> + 4 10 6 3 2. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 9 7 3 3 -1. + + <_> + 9 8 3 1 3. + + + + <_> + + <_> + 7 4 3 8 -1. + + <_> + 8 4 1 8 3. + + + + <_> + + <_> + 10 0 3 6 -1. + + <_> + 11 0 1 6 3. + + + + <_> + + <_> + 6 3 4 8 -1. + + <_> + 8 3 2 8 2. + + + + <_> + + <_> + 14 3 6 13 -1. + + <_> + 14 3 3 13 2. + + + + <_> + + <_> + 8 13 3 6 -1. + + <_> + 8 16 3 3 2. + + + + <_> + + <_> + 14 3 6 13 -1. + + <_> + 14 3 3 13 2. + + + + <_> + + <_> + 0 7 10 4 -1. + + <_> + 0 7 5 2 2. + + <_> + 5 9 5 2 2. + + + + <_> + + <_> + 14 3 6 13 -1. + + <_> + 14 3 3 13 2. + + + + <_> + + <_> + 0 3 6 13 -1. + + <_> + 3 3 3 13 2. + + + + <_> + + <_> + 9 1 4 1 -1. + + <_> + 9 1 2 1 2. + + + + <_> + + <_> + 8 0 2 1 -1. + + <_> + 9 0 1 1 2. + + + + <_> + + <_> + 10 16 4 4 -1. + + <_> + 12 16 2 2 2. + + <_> + 10 18 2 2 2. + + + + <_> + + <_> + 9 6 2 3 -1. + + <_> + 10 6 1 3 2. + + + + <_> + + <_> + 4 5 12 2 -1. + + <_> + 8 5 4 2 3. + + + + <_> + + <_> + 8 7 3 5 -1. + + <_> + 9 7 1 5 3. + + + + <_> + + <_> + 6 4 8 6 -1. + + <_> + 6 6 8 2 3. + + + + <_> + + <_> + 9 5 2 12 -1. + + <_> + 9 11 2 6 2. + + + + <_> + + <_> + 4 6 6 8 -1. + + <_> + 4 10 6 4 2. + + + + <_> + + <_> + 12 2 8 5 -1. + + <_> + 12 2 4 5 2. + + + + <_> + + <_> + 0 8 18 3 -1. + + <_> + 0 9 18 1 3. + + + + <_> + + <_> + 8 12 4 8 -1. + + <_> + 8 16 4 4 2. + + + + <_> + + <_> + 0 2 8 5 -1. + + <_> + 4 2 4 5 2. + + + + <_> + + <_> + 13 11 3 4 -1. + + <_> + 13 13 3 2 2. + + + + <_> + + <_> + 5 11 6 1 -1. + + <_> + 7 11 2 1 3. + + + + <_> + + <_> + 11 3 3 1 -1. + + <_> + 12 3 1 1 3. + + + + <_> + + <_> + 7 13 5 3 -1. + + <_> + 7 14 5 1 3. + + + + <_> + + <_> + 11 11 7 6 -1. + + <_> + 11 14 7 3 2. + + + + <_> + + <_> + 2 11 7 6 -1. + + <_> + 2 14 7 3 2. + + + + <_> + + <_> + 12 14 2 6 -1. + + <_> + 12 16 2 2 3. + + + + <_> + + <_> + 8 14 3 3 -1. + + <_> + 8 15 3 1 3. + + + + <_> + + <_> + 11 0 3 5 -1. + + <_> + 12 0 1 5 3. + + + + <_> + + <_> + 6 1 4 9 -1. + + <_> + 8 1 2 9 2. + + + + <_> + + <_> + 10 3 6 1 -1. + + <_> + 12 3 2 1 3. + + + + <_> + + <_> + 8 8 3 4 -1. + + <_> + 8 10 3 2 2. + + + + <_> + + <_> + 8 12 4 2 -1. + + <_> + 8 13 4 1 2. + + + + <_> + + <_> + 5 18 4 2 -1. + + <_> + 5 19 4 1 2. + + + + <_> + + <_> + 2 1 18 6 -1. + + <_> + 2 3 18 2 3. + + + + <_> + + <_> + 6 0 3 2 -1. + + <_> + 7 0 1 2 3. + + + + <_> + + <_> + 13 8 6 2 -1. + + <_> + 16 8 3 1 2. + + <_> + 13 9 3 1 2. + + + + <_> + + <_> + 6 10 3 6 -1. + + <_> + 6 13 3 3 2. + + + + <_> + + <_> + 0 13 20 4 -1. + + <_> + 10 13 10 2 2. + + <_> + 0 15 10 2 2. + + + + <_> + + <_> + 7 7 6 5 -1. + + <_> + 9 7 2 5 3. + + + + <_> + + <_> + 11 0 2 2 -1. + + <_> + 11 1 2 1 2. + + + + <_> + + <_> + 1 8 6 2 -1. + + <_> + 1 8 3 1 2. + + <_> + 4 9 3 1 2. + + + + <_> + + <_> + 0 2 20 2 -1. + + <_> + 10 2 10 1 2. + + <_> + 0 3 10 1 2. + + + + <_> + + <_> + 7 14 5 3 -1. + + <_> + 7 15 5 1 3. + + + + <_> + + <_> + 7 13 6 6 -1. + + <_> + 10 13 3 3 2. + + <_> + 7 16 3 3 2. + + + + <_> + + <_> + 9 12 2 3 -1. + + <_> + 9 13 2 1 3. + + + + <_> + + <_> + 16 11 1 6 -1. + + <_> + 16 13 1 2 3. + + + + <_> + + <_> + 3 11 1 6 -1. + + <_> + 3 13 1 2 3. + + + + <_> + + <_> + 4 4 14 12 -1. + + <_> + 11 4 7 6 2. + + <_> + 4 10 7 6 2. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 12 3 3 3 -1. + + <_> + 13 3 1 3 3. + + + + <_> + + <_> + 6 6 8 3 -1. + + <_> + 6 7 8 1 3. + + + + <_> + + <_> + 12 3 3 3 -1. + + <_> + 13 3 1 3 3. + + + + <_> + + <_> + 3 1 4 10 -1. + + <_> + 3 1 2 5 2. + + <_> + 5 6 2 5 2. + + + + <_> + + <_> + 5 7 10 2 -1. + + <_> + 5 7 5 2 2. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 9 7 1 3 3. + + + + <_> + + <_> + 15 12 2 3 -1. + + <_> + 15 13 2 1 3. + + + + <_> + + <_> + 7 8 3 4 -1. + + <_> + 8 8 1 4 3. + + + + <_> + + <_> + 13 4 1 12 -1. + + <_> + 13 10 1 6 2. + + + + <_> + + <_> + 4 5 12 12 -1. + + <_> + 4 5 6 6 2. + + <_> + 10 11 6 6 2. + + + + <_> + + <_> + 7 14 7 3 -1. + + <_> + 7 15 7 1 3. + + + + <_> + + <_> + 3 12 2 3 -1. + + <_> + 3 13 2 1 3. + + + + <_> + + <_> + 3 2 14 2 -1. + + <_> + 10 2 7 1 2. + + <_> + 3 3 7 1 2. + + + + <_> + + <_> + 0 1 3 10 -1. + + <_> + 1 1 1 10 3. + + + + <_> + + <_> + 9 0 6 5 -1. + + <_> + 11 0 2 5 3. + + + + <_> + + <_> + 5 7 6 2 -1. + + <_> + 8 7 3 2 2. + + + + <_> + + <_> + 7 1 6 10 -1. + + <_> + 7 6 6 5 2. + + + + <_> + + <_> + 1 1 18 3 -1. + + <_> + 7 1 6 3 3. + + + + <_> + + <_> + 16 3 3 6 -1. + + <_> + 16 5 3 2 3. + + + + <_> + + <_> + 6 3 7 6 -1. + + <_> + 6 6 7 3 2. + + + + <_> + + <_> + 4 7 12 2 -1. + + <_> + 8 7 4 2 3. + + + + <_> + + <_> + 0 4 17 10 -1. + + <_> + 0 9 17 5 2. + + + + <_> + + <_> + 3 4 15 16 -1. + + <_> + 3 12 15 8 2. + + + + <_> + + <_> + 7 15 6 4 -1. + + <_> + 7 17 6 2 2. + + + + <_> + + <_> + 15 2 4 9 -1. + + <_> + 15 2 2 9 2. + + + + <_> + + <_> + 2 3 3 2 -1. + + <_> + 2 4 3 1 2. + + + + <_> + + <_> + 13 6 7 9 -1. + + <_> + 13 9 7 3 3. + + + + <_> + + <_> + 8 11 4 3 -1. + + <_> + 8 12 4 1 3. + + + + <_> + + <_> + 0 2 20 6 -1. + + <_> + 10 2 10 3 2. + + <_> + 0 5 10 3 2. + + + + <_> + + <_> + 3 2 6 10 -1. + + <_> + 3 2 3 5 2. + + <_> + 6 7 3 5 2. + + + + <_> + + <_> + 13 10 3 4 -1. + + <_> + 13 12 3 2 2. + + + + <_> + + <_> + 4 10 3 4 -1. + + <_> + 4 12 3 2 2. + + + + <_> + + <_> + 7 5 6 3 -1. + + <_> + 9 5 2 3 3. + + + + <_> + + <_> + 7 6 6 8 -1. + + <_> + 7 10 6 4 2. + + + + <_> + + <_> + 0 11 20 6 -1. + + <_> + 0 14 20 3 2. + + + + <_> + + <_> + 4 13 4 6 -1. + + <_> + 4 13 2 3 2. + + <_> + 6 16 2 3 2. + + + + <_> + + <_> + 6 0 8 12 -1. + + <_> + 10 0 4 6 2. + + <_> + 6 6 4 6 2. + + + + <_> + + <_> + 2 0 15 2 -1. + + <_> + 2 1 15 1 2. + + + + <_> + + <_> + 9 12 2 3 -1. + + <_> + 9 13 2 1 3. + + + + <_> + + <_> + 3 12 1 2 -1. + + <_> + 3 13 1 1 2. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 7 3 3 1 -1. + + <_> + 8 3 1 1 3. + + + + <_> + + <_> + 17 7 3 6 -1. + + <_> + 17 9 3 2 3. + + + + <_> + + <_> + 7 2 3 2 -1. + + <_> + 8 2 1 2 3. + + + + <_> + + <_> + 11 4 5 3 -1. + + <_> + 11 5 5 1 3. + + + + <_> + + <_> + 4 4 5 3 -1. + + <_> + 4 5 5 1 3. + + + + <_> + + <_> + 19 3 1 2 -1. + + <_> + 19 4 1 1 2. + + + + <_> + + <_> + 5 5 4 3 -1. + + <_> + 5 6 4 1 3. + + + + <_> + + <_> + 17 7 3 6 -1. + + <_> + 17 9 3 2 3. + + + + <_> + + <_> + 0 7 3 6 -1. + + <_> + 0 9 3 2 3. + + + + <_> + + <_> + 14 2 6 9 -1. + + <_> + 14 5 6 3 3. + + + + <_> + + <_> + 0 4 5 6 -1. + + <_> + 0 6 5 2 3. + + + + <_> + + <_> + 10 5 6 2 -1. + + <_> + 12 5 2 2 3. + + + + <_> + + <_> + 4 5 6 2 -1. + + <_> + 6 5 2 2 3. + + + + <_> + + <_> + 8 1 4 6 -1. + + <_> + 8 3 4 2 3. + + + + <_> + + <_> + 0 2 3 6 -1. + + <_> + 0 4 3 2 3. + + + + <_> + + <_> + 6 6 8 3 -1. + + <_> + 6 7 8 1 3. + + + + <_> + + <_> + 0 1 5 9 -1. + + <_> + 0 4 5 3 3. + + + + <_> + + <_> + 16 0 4 15 -1. + + <_> + 16 0 2 15 2. + + + + <_> + + <_> + 1 10 3 2 -1. + + <_> + 1 11 3 1 2. + + + + <_> + + <_> + 14 4 1 10 -1. + + <_> + 14 9 1 5 2. + + + + <_> + + <_> + 0 1 4 12 -1. + + <_> + 2 1 2 12 2. + + + + <_> + + <_> + 11 11 4 2 -1. + + <_> + 11 11 2 2 2. + + + + <_> + + <_> + 5 11 4 2 -1. + + <_> + 7 11 2 2 2. + + + + <_> + + <_> + 3 8 15 5 -1. + + <_> + 8 8 5 5 3. + + + + <_> + + <_> + 0 0 6 10 -1. + + <_> + 3 0 3 10 2. + + + + <_> + + <_> + 11 4 3 2 -1. + + <_> + 12 4 1 2 3. + + + + <_> + + <_> + 8 12 3 8 -1. + + <_> + 8 16 3 4 2. + + + + <_> + + <_> + 8 14 5 3 -1. + + <_> + 8 15 5 1 3. + + + + <_> + + <_> + 7 14 4 3 -1. + + <_> + 7 15 4 1 3. + + + + <_> + + <_> + 11 4 3 2 -1. + + <_> + 12 4 1 2 3. + + + + <_> + + <_> + 3 15 14 4 -1. + + <_> + 3 15 7 2 2. + + <_> + 10 17 7 2 2. + + + + <_> + + <_> + 2 2 16 4 -1. + + <_> + 10 2 8 2 2. + + <_> + 2 4 8 2 2. + + + + <_> + + <_> + 0 8 6 12 -1. + + <_> + 3 8 3 12 2. + + + + <_> + + <_> + 5 7 10 2 -1. + + <_> + 5 7 5 2 2. + + + + <_> + + <_> + 9 7 2 5 -1. + + <_> + 10 7 1 5 2. + + + + <_> + + <_> + 13 7 6 4 -1. + + <_> + 16 7 3 2 2. + + <_> + 13 9 3 2 2. + + + + <_> + + <_> + 0 13 8 2 -1. + + <_> + 0 14 8 1 2. + + + + <_> + + <_> + 13 7 6 4 -1. + + <_> + 16 7 3 2 2. + + <_> + 13 9 3 2 2. + + + + <_> + + <_> + 1 7 6 4 -1. + + <_> + 1 7 3 2 2. + + <_> + 4 9 3 2 2. + + + + <_> + + <_> + 12 6 1 12 -1. + + <_> + 12 12 1 6 2. + + + + <_> + + <_> + 9 5 2 6 -1. + + <_> + 10 5 1 6 2. + + + + <_> + + <_> + 14 12 2 3 -1. + + <_> + 14 13 2 1 3. + + + + <_> + + <_> + 4 12 2 3 -1. + + <_> + 4 13 2 1 3. + + + + <_> + + <_> + 8 12 4 3 -1. + + <_> + 8 13 4 1 3. + + + + <_> + + <_> + 5 2 2 4 -1. + + <_> + 5 2 1 2 2. + + <_> + 6 4 1 2 2. + + + + <_> + + <_> + 5 5 11 3 -1. + + <_> + 5 6 11 1 3. + + + + <_> + + <_> + 7 6 4 12 -1. + + <_> + 7 12 4 6 2. + + + + <_> + + <_> + 12 13 8 5 -1. + + <_> + 12 13 4 5 2. + + + + <_> + + <_> + 7 6 1 12 -1. + + <_> + 7 12 1 6 2. + + + + <_> + + <_> + 1 2 6 3 -1. + + <_> + 4 2 3 3 2. + + + + <_> + + <_> + 9 5 6 10 -1. + + <_> + 12 5 3 5 2. + + <_> + 9 10 3 5 2. + + + + <_> + + <_> + 5 5 8 12 -1. + + <_> + 5 5 4 6 2. + + <_> + 9 11 4 6 2. + + + + <_> + + <_> + 0 7 20 6 -1. + + <_> + 0 9 20 2 3. + + + + <_> + + <_> + 4 2 2 2 -1. + + <_> + 4 3 2 1 2. + + + + <_> + + <_> + 4 18 12 2 -1. + + <_> + 8 18 4 2 3. + + + + <_> + + <_> + 7 4 4 16 -1. + + <_> + 7 12 4 8 2. + + + + <_> + + <_> + 7 6 7 8 -1. + + <_> + 7 10 7 4 2. + + + + <_> + + <_> + 6 3 3 1 -1. + + <_> + 7 3 1 1 3. + + + + <_> + + <_> + 11 15 2 4 -1. + + <_> + 11 17 2 2 2. + + + + <_> + + <_> + 3 5 4 8 -1. + + <_> + 3 9 4 4 2. + + + + <_> + + <_> + 7 1 6 12 -1. + + <_> + 7 7 6 6 2. + + + + <_> + + <_> + 4 6 6 2 -1. + + <_> + 6 6 2 2 3. + + + + <_> + + <_> + 16 4 4 6 -1. + + <_> + 16 6 4 2 3. + + + + <_> + + <_> + 3 3 5 2 -1. + + <_> + 3 4 5 1 2. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 2 16 4 2 -1. + + <_> + 2 17 4 1 2. + + + + <_> + + <_> + 7 13 6 6 -1. + + <_> + 10 13 3 3 2. + + <_> + 7 16 3 3 2. + + + + <_> + + <_> + 7 0 3 4 -1. + + <_> + 8 0 1 4 3. + + + + <_> + + <_> + 8 15 4 3 -1. + + <_> + 8 16 4 1 3. + + + + <_> + + <_> + 0 4 4 6 -1. + + <_> + 0 6 4 2 3. + + + + <_> + + <_> + 5 6 12 3 -1. + + <_> + 9 6 4 3 3. + + + + <_> + + <_> + 7 6 6 14 -1. + + <_> + 9 6 2 14 3. + + + + <_> + + <_> + 9 7 3 3 -1. + + <_> + 10 7 1 3 3. + + + + <_> + + <_> + 6 12 2 4 -1. + + <_> + 6 14 2 2 2. + + + + <_> + + <_> + 10 12 7 6 -1. + + <_> + 10 14 7 2 3. + + + + <_> + + <_> + 1 0 15 2 -1. + + <_> + 1 1 15 1 2. + + + + <_> + + <_> + 14 0 6 6 -1. + + <_> + 14 0 3 6 2. + + + + <_> + + <_> + 5 3 3 1 -1. + + <_> + 6 3 1 1 3. + + + + <_> + + <_> + 14 0 6 6 -1. + + <_> + 14 0 3 6 2. + + + + <_> + + <_> + 0 3 20 10 -1. + + <_> + 0 8 20 5 2. + + + + <_> + + <_> + 14 0 6 6 -1. + + <_> + 14 0 3 6 2. + + + + <_> + + <_> + 0 0 6 6 -1. + + <_> + 3 0 3 6 2. + + + + <_> + + <_> + 19 15 1 2 -1. + + <_> + 19 16 1 1 2. + + + + <_> + + <_> + 0 2 4 8 -1. + + <_> + 2 2 2 8 2. + + + + <_> + + <_> + 2 1 18 4 -1. + + <_> + 11 1 9 2 2. + + <_> + 2 3 9 2 2. + + + + <_> + + <_> + 8 12 1 2 -1. + + <_> + 8 13 1 1 2. + + + + <_> + + <_> + 5 2 10 6 -1. + + <_> + 10 2 5 3 2. + + <_> + 5 5 5 3 2. + + + + <_> + + <_> + 9 7 2 4 -1. + + <_> + 10 7 1 4 2. + + + + <_> + + <_> + 9 7 3 3 -1. + + <_> + 10 7 1 3 3. + + + + <_> + + <_> + 4 5 12 8 -1. + + <_> + 8 5 4 8 3. + + + + <_> + + <_> + 15 15 4 3 -1. + + <_> + 15 16 4 1 3. + + + + <_> + + <_> + 8 18 3 1 -1. + + <_> + 9 18 1 1 3. + + + + <_> + + <_> + 9 13 4 3 -1. + + <_> + 9 14 4 1 3. + + + + <_> + + <_> + 7 13 4 3 -1. + + <_> + 7 14 4 1 3. + + + + <_> + + <_> + 19 15 1 2 -1. + + <_> + 19 16 1 1 2. + + + + <_> + + <_> + 0 15 8 4 -1. + + <_> + 0 17 8 2 2. + + + + <_> + + <_> + 9 3 6 4 -1. + + <_> + 11 3 2 4 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 3 14 14 6 -1. + + <_> + 3 16 14 2 3. + + + + <_> + + <_> + 6 3 6 6 -1. + + <_> + 6 6 6 3 2. + + + + <_> + + <_> + 5 11 10 6 -1. + + <_> + 5 14 10 3 2. + + + + <_> + + <_> + 3 10 3 4 -1. + + <_> + 4 10 1 4 3. + + + + <_> + + <_> + 13 9 2 2 -1. + + <_> + 13 9 1 2 2. + + + + <_> + + <_> + 5 3 6 4 -1. + + <_> + 7 3 2 4 3. + + + + <_> + + <_> + 9 7 3 3 -1. + + <_> + 10 7 1 3 3. + + + + <_> + + <_> + 2 12 2 3 -1. + + <_> + 2 13 2 1 3. + + + + <_> + + <_> + 9 8 3 12 -1. + + <_> + 9 12 3 4 3. + + + + <_> + + <_> + 3 14 4 6 -1. + + <_> + 3 14 2 3 2. + + <_> + 5 17 2 3 2. + + + + <_> + + <_> + 16 15 2 2 -1. + + <_> + 16 16 2 1 2. + + + + <_> + + <_> + 2 15 2 2 -1. + + <_> + 2 16 2 1 2. + + + + <_> + + <_> + 8 12 4 3 -1. + + <_> + 8 13 4 1 3. + + + + <_> + + <_> + 0 7 20 1 -1. + + <_> + 10 7 10 1 2. + + + + <_> + + <_> + 7 6 8 3 -1. + + <_> + 7 6 4 3 2. + + + + <_> + + <_> + 5 7 8 2 -1. + + <_> + 9 7 4 2 2. + + + + <_> + + <_> + 9 7 3 5 -1. + + <_> + 10 7 1 5 3. + + + + <_> + + <_> + 8 7 3 5 -1. + + <_> + 9 7 1 5 3. + + + + <_> + + <_> + 11 1 3 5 -1. + + <_> + 12 1 1 5 3. + + + + <_> + + <_> + 6 2 3 6 -1. + + <_> + 7 2 1 6 3. + + + + <_> + + <_> + 14 14 6 5 -1. + + <_> + 14 14 3 5 2. + + + + <_> + + <_> + 9 8 2 2 -1. + + <_> + 9 9 2 1 2. + + + + <_> + + <_> + 10 7 1 3 -1. + + <_> + 10 8 1 1 3. + + + + <_> + + <_> + 6 6 2 2 -1. + + <_> + 6 6 1 1 2. + + <_> + 7 7 1 1 2. + + + + <_> + + <_> + 2 11 18 4 -1. + + <_> + 11 11 9 2 2. + + <_> + 2 13 9 2 2. + + + + <_> + + <_> + 6 6 2 2 -1. + + <_> + 6 6 1 1 2. + + <_> + 7 7 1 1 2. + + + + <_> + + <_> + 0 15 20 2 -1. + + <_> + 0 16 20 1 2. + + + + <_> + + <_> + 4 14 2 3 -1. + + <_> + 4 15 2 1 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 8 7 2 3 -1. + + <_> + 8 8 2 1 3. + + + + <_> + + <_> + 9 10 2 3 -1. + + <_> + 9 11 2 1 3. + + + + <_> + + <_> + 5 4 10 4 -1. + + <_> + 5 6 10 2 2. + + + + <_> + + <_> + 9 7 6 4 -1. + + <_> + 12 7 3 2 2. + + <_> + 9 9 3 2 2. + + + + <_> + + <_> + 4 7 3 6 -1. + + <_> + 4 9 3 2 3. + + + + <_> + + <_> + 11 15 4 4 -1. + + <_> + 13 15 2 2 2. + + <_> + 11 17 2 2 2. + + + + <_> + + <_> + 7 8 4 2 -1. + + <_> + 7 9 4 1 2. + + + + <_> + + <_> + 13 1 4 3 -1. + + <_> + 13 1 2 3 2. + + + + <_> + + <_> + 5 15 4 4 -1. + + <_> + 5 15 2 2 2. + + <_> + 7 17 2 2 2. + + + + <_> + + <_> + 9 5 4 7 -1. + + <_> + 9 5 2 7 2. + + + + <_> + + <_> + 5 6 8 3 -1. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 9 9 2 2 -1. + + <_> + 9 10 2 1 2. + + + + <_> + + <_> + 7 15 5 3 -1. + + <_> + 7 16 5 1 3. + + + + <_> + + <_> + 11 10 4 3 -1. + + <_> + 11 10 2 3 2. + + + + <_> + + <_> + 6 9 8 10 -1. + + <_> + 6 14 8 5 2. + + + + <_> + + <_> + 10 11 6 2 -1. + + <_> + 10 11 3 2 2. + + + + <_> + + <_> + 4 11 6 2 -1. + + <_> + 7 11 3 2 2. + + + + <_> + + <_> + 11 3 8 1 -1. + + <_> + 11 3 4 1 2. + + + + <_> + + <_> + 6 3 3 2 -1. + + <_> + 7 3 1 2 3. + + + + <_> + + <_> + 14 5 6 5 -1. + + <_> + 14 5 3 5 2. + + + + <_> + + <_> + 7 5 2 12 -1. + + <_> + 7 11 2 6 2. + + + + <_> + + <_> + 8 11 4 3 -1. + + <_> + 8 12 4 1 3. + + + + <_> + + <_> + 4 1 2 3 -1. + + <_> + 5 1 1 3 2. + + + + <_> + + <_> + 18 3 2 6 -1. + + <_> + 18 5 2 2 3. + + + + <_> + + <_> + 0 3 2 6 -1. + + <_> + 0 5 2 2 3. + + + + <_> + + <_> + 9 12 2 3 -1. + + <_> + 9 13 2 1 3. + + + + <_> + + <_> + 7 13 4 3 -1. + + <_> + 7 14 4 1 3. + + + + <_> + + <_> + 18 0 2 6 -1. + + <_> + 18 2 2 2 3. + + + + <_> + + <_> + 0 0 2 6 -1. + + <_> + 0 2 2 2 3. + + + + <_> + + <_> + 8 14 6 3 -1. + + <_> + 8 15 6 1 3. + + + + <_> + + <_> + 7 4 2 4 -1. + + <_> + 8 4 1 4 2. + + + + <_> + + <_> + 8 5 4 6 -1. + + <_> + 8 7 4 2 3. + + + + <_> + + <_> + 6 4 2 2 -1. + + <_> + 7 4 1 2 2. + + + + <_> + + <_> + 3 14 14 4 -1. + + <_> + 10 14 7 2 2. + + <_> + 3 16 7 2 2. + + + + <_> + + <_> + 6 15 6 2 -1. + + <_> + 6 15 3 1 2. + + <_> + 9 16 3 1 2. + + + + <_> + + <_> + 14 15 6 2 -1. + + <_> + 14 16 6 1 2. + + + + <_> + + <_> + 2 12 12 8 -1. + + <_> + 2 16 12 4 2. + + + + <_> + + <_> + 7 7 7 2 -1. + + <_> + 7 8 7 1 2. + + + + <_> + + <_> + 0 2 18 2 -1. + + <_> + 0 3 18 1 2. + + + + <_> + + <_> + 9 6 2 5 -1. + + <_> + 9 6 1 5 2. + + + + <_> + + <_> + 7 5 3 8 -1. + + <_> + 8 5 1 8 3. + + + + <_> + + <_> + 9 6 3 4 -1. + + <_> + 10 6 1 4 3. + + + + <_> + + <_> + 4 13 3 2 -1. + + <_> + 4 14 3 1 2. + + + + <_> + + <_> + 9 4 6 3 -1. + + <_> + 11 4 2 3 3. + + + + <_> + + <_> + 5 4 6 3 -1. + + <_> + 7 4 2 3 3. + + + + <_> + + <_> + 14 11 5 2 -1. + + <_> + 14 12 5 1 2. + + + + <_> + + <_> + 1 2 6 9 -1. + + <_> + 3 2 2 9 3. + + + + <_> + + <_> + 14 6 6 13 -1. + + <_> + 14 6 3 13 2. + + + + <_> + + <_> + 3 6 14 8 -1. + + <_> + 3 6 7 4 2. + + <_> + 10 10 7 4 2. + + + + <_> + + <_> + 16 0 4 11 -1. + + <_> + 16 0 2 11 2. + + + + <_> + + <_> + 3 4 12 12 -1. + + <_> + 3 4 6 6 2. + + <_> + 9 10 6 6 2. + + + + <_> + + <_> + 11 4 5 3 -1. + + <_> + 11 5 5 1 3. + + + + <_> + + <_> + 4 11 4 2 -1. + + <_> + 4 12 4 1 2. + + + + <_> + + <_> + 10 7 2 2 -1. + + <_> + 10 7 1 2 2. + + + + <_> + + <_> + 8 7 2 2 -1. + + <_> + 9 7 1 2 2. + + + + <_> + + <_> + 9 17 3 2 -1. + + <_> + 10 17 1 2 3. + + + + <_> + + <_> + 5 6 3 3 -1. + + <_> + 5 7 3 1 3. + + + + <_> + + <_> + 10 0 3 3 -1. + + <_> + 11 0 1 3 3. + + + + <_> + + <_> + 5 6 6 2 -1. + + <_> + 5 6 3 1 2. + + <_> + 8 7 3 1 2. + + + + <_> + + <_> + 12 16 4 3 -1. + + <_> + 12 17 4 1 3. + + + + <_> + + <_> + 3 12 3 2 -1. + + <_> + 3 13 3 1 2. + + + + <_> + + <_> + 9 12 3 2 -1. + + <_> + 9 13 3 1 2. + + + + <_> + + <_> + 1 11 16 4 -1. + + <_> + 1 11 8 2 2. + + <_> + 9 13 8 2 2. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 4 4 5 3 -1. + + <_> + 4 5 5 1 3. + + + + <_> + + <_> + 12 16 4 3 -1. + + <_> + 12 17 4 1 3. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 9 0 2 2 -1. + + <_> + 9 1 2 1 2. + + + + <_> + + <_> + 8 9 4 2 -1. + + <_> + 8 10 4 1 2. + + + + <_> + + <_> + 8 8 4 3 -1. + + <_> + 8 9 4 1 3. + + + + <_> + + <_> + 0 13 6 3 -1. + + <_> + 2 13 2 3 3. + + + + <_> + + <_> + 16 14 3 2 -1. + + <_> + 16 15 3 1 2. + + + + <_> + + <_> + 1 18 18 2 -1. + + <_> + 7 18 6 2 3. + + + + <_> + + <_> + 16 14 3 2 -1. + + <_> + 16 15 3 1 2. + + + + <_> + + <_> + 1 14 3 2 -1. + + <_> + 1 15 3 1 2. + + + + <_> + + <_> + 7 14 6 3 -1. + + <_> + 7 15 6 1 3. + + + + <_> + + <_> + 5 14 8 3 -1. + + <_> + 5 15 8 1 3. + + + + <_> + + <_> + 10 6 4 14 -1. + + <_> + 10 6 2 14 2. + + + + <_> + + <_> + 6 6 4 14 -1. + + <_> + 8 6 2 14 2. + + + + <_> + + <_> + 13 5 2 3 -1. + + <_> + 13 6 2 1 3. + + + + <_> + + <_> + 7 16 6 1 -1. + + <_> + 9 16 2 1 3. + + + + <_> + + <_> + 9 12 3 3 -1. + + <_> + 9 13 3 1 3. + + + + <_> + + <_> + 7 0 3 3 -1. + + <_> + 8 0 1 3 3. + + + + <_> + + <_> + 4 0 16 18 -1. + + <_> + 4 9 16 9 2. + + + + <_> + + <_> + 1 1 16 14 -1. + + <_> + 1 8 16 7 2. + + + + <_> + + <_> + 3 9 15 4 -1. + + <_> + 8 9 5 4 3. + + + + <_> + + <_> + 6 12 7 3 -1. + + <_> + 6 13 7 1 3. + + + + <_> + + <_> + 14 15 2 3 -1. + + <_> + 14 16 2 1 3. + + + + <_> + + <_> + 2 3 16 14 -1. + + <_> + 2 3 8 7 2. + + <_> + 10 10 8 7 2. + + + + <_> + + <_> + 16 2 4 18 -1. + + <_> + 18 2 2 9 2. + + <_> + 16 11 2 9 2. + + + + <_> + + <_> + 4 15 2 3 -1. + + <_> + 4 16 2 1 3. + + + + <_> + + <_> + 16 2 4 18 -1. + + <_> + 18 2 2 9 2. + + <_> + 16 11 2 9 2. + + + + <_> + + <_> + 1 1 8 3 -1. + + <_> + 1 2 8 1 3. + + + + <_> + + <_> + 8 11 4 3 -1. + + <_> + 8 12 4 1 3. + + + + <_> + + <_> + 5 11 5 9 -1. + + <_> + 5 14 5 3 3. + + + + <_> + + <_> + 16 0 4 11 -1. + + <_> + 16 0 2 11 2. + + + + <_> + + <_> + 7 0 6 1 -1. + + <_> + 9 0 2 1 3. + + + + <_> + + <_> + 16 3 3 7 -1. + + <_> + 17 3 1 7 3. + + + + <_> + + <_> + 1 3 3 7 -1. + + <_> + 2 3 1 7 3. + + + + <_> + + <_> + 7 8 6 12 -1. + + <_> + 7 12 6 4 3. + + + + <_> + + <_> + 0 0 4 11 -1. + + <_> + 2 0 2 11 2. + + + + <_> + + <_> + 14 0 6 20 -1. + + <_> + 14 0 3 20 2. + + + + <_> + + <_> + 0 3 1 2 -1. + + <_> + 0 4 1 1 2. + + + + <_> + + <_> + 5 5 10 8 -1. + + <_> + 10 5 5 4 2. + + <_> + 5 9 5 4 2. + + + + <_> + + <_> + 4 7 12 4 -1. + + <_> + 4 7 6 2 2. + + <_> + 10 9 6 2 2. + + + + <_> + + <_> + 2 1 6 4 -1. + + <_> + 5 1 3 4 2. + + + + <_> + + <_> + 9 7 6 4 -1. + + <_> + 12 7 3 2 2. + + <_> + 9 9 3 2 2. + + + + <_> + + <_> + 5 6 2 6 -1. + + <_> + 5 9 2 3 2. + + + + <_> + + <_> + 9 16 6 4 -1. + + <_> + 12 16 3 2 2. + + <_> + 9 18 3 2 2. + + + + <_> + + <_> + 9 4 2 12 -1. + + <_> + 9 10 2 6 2. + + + + <_> + + <_> + 7 1 6 18 -1. + + <_> + 9 1 2 18 3. + + + + <_> + + <_> + 4 12 12 2 -1. + + <_> + 8 12 4 2 3. + + + + <_> + + <_> + 8 8 6 2 -1. + + <_> + 8 9 6 1 2. + + + + <_> + + <_> + 8 0 3 6 -1. + + <_> + 9 0 1 6 3. + + + + <_> + + <_> + 11 18 3 2 -1. + + <_> + 11 19 3 1 2. + + + + <_> + + <_> + 1 1 17 4 -1. + + <_> + 1 3 17 2 2. + + + + <_> + + <_> + 11 8 4 12 -1. + + <_> + 11 8 2 12 2. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 12 3 2 17 -1. + + <_> + 12 3 1 17 2. + + + + <_> + + <_> + 4 7 6 1 -1. + + <_> + 6 7 2 1 3. + + + + <_> + + <_> + 18 3 2 3 -1. + + <_> + 18 4 2 1 3. + + + + <_> + + <_> + 8 4 3 4 -1. + + <_> + 8 6 3 2 2. + + + + <_> + + <_> + 4 5 12 10 -1. + + <_> + 4 10 12 5 2. + + + + <_> + + <_> + 5 18 4 2 -1. + + <_> + 7 18 2 2 2. + + + + <_> + + <_> + 17 2 3 6 -1. + + <_> + 17 4 3 2 3. + + + + <_> + + <_> + 7 7 6 6 -1. + + <_> + 9 7 2 6 3. + + + + <_> + + <_> + 17 2 3 6 -1. + + <_> + 17 4 3 2 3. + + + + <_> + + <_> + 8 0 3 4 -1. + + <_> + 9 0 1 4 3. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 0 12 6 3 -1. + + <_> + 0 13 6 1 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 3 12 2 3 -1. + + <_> + 3 13 2 1 3. + + + + <_> + + <_> + 5 6 12 7 -1. + + <_> + 9 6 4 7 3. + + + + <_> + + <_> + 0 2 3 6 -1. + + <_> + 0 4 3 2 3. + + + + <_> + + <_> + 14 6 1 3 -1. + + <_> + 14 7 1 1 3. + + + + <_> + + <_> + 2 0 3 14 -1. + + <_> + 3 0 1 14 3. + + + + <_> + + <_> + 12 14 5 6 -1. + + <_> + 12 16 5 2 3. + + + + <_> + + <_> + 4 14 5 6 -1. + + <_> + 4 16 5 2 3. + + + + <_> + + <_> + 11 10 2 2 -1. + + <_> + 12 10 1 1 2. + + <_> + 11 11 1 1 2. + + + + <_> + + <_> + 5 0 3 14 -1. + + <_> + 6 0 1 14 3. + + + + <_> + + <_> + 10 15 2 3 -1. + + <_> + 10 16 2 1 3. + + + + <_> + + <_> + 0 2 2 3 -1. + + <_> + 0 3 2 1 3. + + + + <_> + + <_> + 5 11 12 6 -1. + + <_> + 5 14 12 3 2. + + + + <_> + + <_> + 6 11 3 9 -1. + + <_> + 6 14 3 3 3. + + + + <_> + + <_> + 11 10 2 2 -1. + + <_> + 12 10 1 1 2. + + <_> + 11 11 1 1 2. + + + + <_> + + <_> + 5 6 1 3 -1. + + <_> + 5 7 1 1 3. + + + + <_> + + <_> + 4 9 13 3 -1. + + <_> + 4 10 13 1 3. + + + + <_> + + <_> + 1 7 15 6 -1. + + <_> + 6 7 5 6 3. + + + + <_> + + <_> + 4 5 12 6 -1. + + <_> + 8 5 4 6 3. + + + + <_> + + <_> + 8 10 4 3 -1. + + <_> + 8 11 4 1 3. + + + + <_> + + <_> + 15 14 1 3 -1. + + <_> + 15 15 1 1 3. + + + + <_> + + <_> + 1 11 5 3 -1. + + <_> + 1 12 5 1 3. + + + + <_> + + <_> + 7 1 7 12 -1. + + <_> + 7 7 7 6 2. + + + + <_> + + <_> + 0 1 6 10 -1. + + <_> + 0 1 3 5 2. + + <_> + 3 6 3 5 2. + + + + <_> + + <_> + 16 1 4 3 -1. + + <_> + 16 2 4 1 3. + + + + <_> + + <_> + 5 5 2 3 -1. + + <_> + 5 6 2 1 3. + + + + <_> + + <_> + 12 2 3 5 -1. + + <_> + 13 2 1 5 3. + + + + <_> + + <_> + 0 3 4 6 -1. + + <_> + 0 5 4 2 3. + + + + <_> + + <_> + 8 12 4 2 -1. + + <_> + 8 13 4 1 2. + + + + <_> + + <_> + 8 18 3 1 -1. + + <_> + 9 18 1 1 3. + + + + <_> + + <_> + 11 10 2 2 -1. + + <_> + 12 10 1 1 2. + + <_> + 11 11 1 1 2. + + + + <_> + + <_> + 7 10 2 2 -1. + + <_> + 7 10 1 1 2. + + <_> + 8 11 1 1 2. + + + + <_> + + <_> + 11 11 4 4 -1. + + <_> + 11 13 4 2 2. + + + + <_> + + <_> + 8 12 3 8 -1. + + <_> + 9 12 1 8 3. + + + + <_> + + <_> + 13 0 6 3 -1. + + <_> + 13 1 6 1 3. + + + + <_> + + <_> + 8 8 3 4 -1. + + <_> + 9 8 1 4 3. + + + + <_> + + <_> + 5 7 10 10 -1. + + <_> + 10 7 5 5 2. + + <_> + 5 12 5 5 2. + + + + <_> + + <_> + 3 18 8 2 -1. + + <_> + 3 18 4 1 2. + + <_> + 7 19 4 1 2. + + + + <_> + + <_> + 10 2 6 8 -1. + + <_> + 12 2 2 8 3. + + + + <_> + + <_> + 4 2 6 8 -1. + + <_> + 6 2 2 8 3. + + + + <_> + + <_> + 11 0 3 7 -1. + + <_> + 12 0 1 7 3. + + + + <_> + + <_> + 7 11 2 1 -1. + + <_> + 8 11 1 1 2. + + + + <_> + + <_> + 15 14 1 3 -1. + + <_> + 15 15 1 1 3. + + + + <_> + + <_> + 7 15 2 2 -1. + + <_> + 7 15 1 1 2. + + <_> + 8 16 1 1 2. + + + + <_> + + <_> + 15 14 1 3 -1. + + <_> + 15 15 1 1 3. + + + + <_> + + <_> + 6 0 3 7 -1. + + <_> + 7 0 1 7 3. + + + + <_> + + <_> + 18 1 2 7 -1. + + <_> + 18 1 1 7 2. + + + + <_> + + <_> + 2 0 8 20 -1. + + <_> + 2 10 8 10 2. + + + + <_> + + <_> + 3 0 15 6 -1. + + <_> + 3 2 15 2 3. + + + + <_> + + <_> + 4 3 12 2 -1. + + <_> + 4 4 12 1 2. + + + + <_> + + <_> + 16 0 4 5 -1. + + <_> + 16 0 2 5 2. + + + + <_> + + <_> + 7 0 3 4 -1. + + <_> + 8 0 1 4 3. + + + + <_> + + <_> + 16 0 4 5 -1. + + <_> + 16 0 2 5 2. + + + + <_> + + <_> + 1 7 6 13 -1. + + <_> + 3 7 2 13 3. + + + + <_> + + <_> + 16 0 4 5 -1. + + <_> + 16 0 2 5 2. + + + + <_> + + <_> + 0 0 4 5 -1. + + <_> + 2 0 2 5 2. + + + + <_> + + <_> + 14 12 3 6 -1. + + <_> + 14 14 3 2 3. + + + + <_> + + <_> + 3 12 3 6 -1. + + <_> + 3 14 3 2 3. + + + + <_> + + <_> + 16 1 4 3 -1. + + <_> + 16 2 4 1 3. + + + + <_> + + <_> + 8 7 2 10 -1. + + <_> + 8 7 1 5 2. + + <_> + 9 12 1 5 2. + + + + <_> + + <_> + 11 11 4 4 -1. + + <_> + 11 13 4 2 2. + + + + <_> + + <_> + 0 1 4 3 -1. + + <_> + 0 2 4 1 3. + + + + <_> + + <_> + 13 4 1 3 -1. + + <_> + 13 5 1 1 3. + + + + <_> + + <_> + 7 15 3 5 -1. + + <_> + 8 15 1 5 3. + + + + <_> + + <_> + 9 7 3 5 -1. + + <_> + 10 7 1 5 3. + + + + <_> + + <_> + 8 7 3 5 -1. + + <_> + 9 7 1 5 3. + + + + <_> + + <_> + 10 6 4 14 -1. + + <_> + 10 6 2 14 2. + + + + <_> + + <_> + 0 5 5 6 -1. + + <_> + 0 7 5 2 3. + + + + <_> + + <_> + 9 5 6 4 -1. + + <_> + 9 5 3 4 2. + + + + <_> + + <_> + 0 0 18 10 -1. + + <_> + 6 0 6 10 3. + + + + <_> + + <_> + 10 6 4 14 -1. + + <_> + 10 6 2 14 2. + + + + <_> + + <_> + 6 6 4 14 -1. + + <_> + 8 6 2 14 2. + + + + <_> + + <_> + 13 4 1 3 -1. + + <_> + 13 5 1 1 3. + + + + <_> + + <_> + 5 1 2 3 -1. + + <_> + 6 1 1 3 2. + + + + <_> + + <_> + 18 1 2 18 -1. + + <_> + 19 1 1 9 2. + + <_> + 18 10 1 9 2. + + + + <_> + + <_> + 2 1 4 3 -1. + + <_> + 2 2 4 1 3. + + + + <_> + + <_> + 18 1 2 18 -1. + + <_> + 19 1 1 9 2. + + <_> + 18 10 1 9 2. + + + + <_> + + <_> + 1 14 4 6 -1. + + <_> + 1 14 2 3 2. + + <_> + 3 17 2 3 2. + + + + <_> + + <_> + 10 11 7 6 -1. + + <_> + 10 13 7 2 3. + + + + <_> + + <_> + 0 10 6 10 -1. + + <_> + 0 10 3 5 2. + + <_> + 3 15 3 5 2. + + + + <_> + + <_> + 11 0 3 4 -1. + + <_> + 12 0 1 4 3. + + + + <_> + + <_> + 5 10 5 6 -1. + + <_> + 5 13 5 3 2. + + + + <_> + + <_> + 14 6 1 8 -1. + + <_> + 14 10 1 4 2. + + + + <_> + + <_> + 1 7 18 6 -1. + + <_> + 1 7 9 3 2. + + <_> + 10 10 9 3 2. + + + + <_> + + <_> + 9 7 2 2 -1. + + <_> + 9 7 1 2 2. + + + + <_> + + <_> + 5 9 4 5 -1. + + <_> + 7 9 2 5 2. + + + + <_> + + <_> + 7 6 6 3 -1. + + <_> + 9 6 2 3 3. + + + + <_> + + <_> + 1 0 18 4 -1. + + <_> + 7 0 6 4 3. + + + + <_> + + <_> + 7 15 2 4 -1. + + <_> + 7 17 2 2 2. + + + + <_> + + <_> + 1 0 19 9 -1. + + <_> + 1 3 19 3 3. + + + + <_> + + <_> + 3 7 3 6 -1. + + <_> + 3 9 3 2 3. + + + + <_> + + <_> + 13 7 4 4 -1. + + <_> + 15 7 2 2 2. + + <_> + 13 9 2 2 2. + + + + <_> + + <_> + 3 7 4 4 -1. + + <_> + 3 7 2 2 2. + + <_> + 5 9 2 2 2. + + + + <_> + + <_> + 9 6 10 8 -1. + + <_> + 9 10 10 4 2. + + + + <_> + + <_> + 3 8 14 12 -1. + + <_> + 3 14 14 6 2. + + + + <_> + + <_> + 6 5 10 12 -1. + + <_> + 11 5 5 6 2. + + <_> + 6 11 5 6 2. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 9 5 6 5 -1. + + <_> + 9 5 3 5 2. + + + + <_> + + <_> + 9 4 2 4 -1. + + <_> + 9 6 2 2 2. + + + + <_> + + <_> + 9 5 6 5 -1. + + <_> + 9 5 3 5 2. + + + + <_> + + <_> + 5 5 6 5 -1. + + <_> + 8 5 3 5 2. + + + + <_> + + <_> + 11 2 6 1 -1. + + <_> + 13 2 2 1 3. + + + + <_> + + <_> + 3 2 6 1 -1. + + <_> + 5 2 2 1 3. + + + + <_> + + <_> + 13 5 2 3 -1. + + <_> + 13 6 2 1 3. + + + + <_> + + <_> + 0 10 1 4 -1. + + <_> + 0 12 1 2 2. + + + + <_> + + <_> + 13 5 2 3 -1. + + <_> + 13 6 2 1 3. + + + + <_> + + <_> + 8 18 3 2 -1. + + <_> + 9 18 1 2 3. + + + + <_> + + <_> + 6 15 9 2 -1. + + <_> + 6 16 9 1 2. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 18 4 2 4 -1. + + <_> + 18 6 2 2 2. + + + + <_> + + <_> + 5 5 2 3 -1. + + <_> + 5 6 2 1 3. + + + + <_> + + <_> + 15 16 3 2 -1. + + <_> + 15 17 3 1 2. + + + + <_> + + <_> + 0 0 3 9 -1. + + <_> + 0 3 3 3 3. + + + + <_> + + <_> + 9 7 3 3 -1. + + <_> + 9 8 3 1 3. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 8 8 3 1 3. + + + + <_> + + <_> + 9 5 2 6 -1. + + <_> + 9 5 1 6 2. + + + + <_> + + <_> + 8 6 3 4 -1. + + <_> + 9 6 1 4 3. + + + + <_> + + <_> + 7 6 8 12 -1. + + <_> + 11 6 4 6 2. + + <_> + 7 12 4 6 2. + + + + <_> + + <_> + 5 6 8 12 -1. + + <_> + 5 6 4 6 2. + + <_> + 9 12 4 6 2. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 2 16 3 2 -1. + + <_> + 2 17 3 1 2. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 2 12 6 6 -1. + + <_> + 2 14 6 2 3. + + + + <_> + + <_> + 7 13 6 3 -1. + + <_> + 7 14 6 1 3. + + + + <_> + + <_> + 6 14 6 3 -1. + + <_> + 6 15 6 1 3. + + + + <_> + + <_> + 14 15 5 3 -1. + + <_> + 14 16 5 1 3. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 14 15 5 3 -1. + + <_> + 14 16 5 1 3. + + + + <_> + + <_> + 5 3 6 2 -1. + + <_> + 7 3 2 2 3. + + + + <_> + + <_> + 8 15 4 3 -1. + + <_> + 8 16 4 1 3. + + + + <_> + + <_> + 1 15 5 3 -1. + + <_> + 1 16 5 1 3. + + + + <_> + + <_> + 8 13 4 6 -1. + + <_> + 10 13 2 3 2. + + <_> + 8 16 2 3 2. + + + + <_> + + <_> + 7 8 3 3 -1. + + <_> + 8 8 1 3 3. + + + + <_> + + <_> + 12 0 5 4 -1. + + <_> + 12 2 5 2 2. + + + + <_> + + <_> + 0 2 20 2 -1. + + <_> + 0 2 10 1 2. + + <_> + 10 3 10 1 2. + + + + <_> + + <_> + 1 0 18 4 -1. + + <_> + 7 0 6 4 3. + + + + <_> + + <_> + 4 3 6 1 -1. + + <_> + 6 3 2 1 3. + + + + <_> + + <_> + 4 18 13 2 -1. + + <_> + 4 19 13 1 2. + + + + <_> + + <_> + 2 10 3 6 -1. + + <_> + 2 12 3 2 3. + + + + <_> + + <_> + 14 12 6 8 -1. + + <_> + 17 12 3 4 2. + + <_> + 14 16 3 4 2. + + + + <_> + + <_> + 4 13 10 6 -1. + + <_> + 4 13 5 3 2. + + <_> + 9 16 5 3 2. + + + + <_> + + <_> + 14 12 1 2 -1. + + <_> + 14 13 1 1 2. + + + + <_> + + <_> + 8 13 4 3 -1. + + <_> + 8 14 4 1 3. + + + + <_> + + <_> + 14 12 2 2 -1. + + <_> + 14 13 2 1 2. + + + + <_> + + <_> + 4 12 2 2 -1. + + <_> + 4 13 2 1 2. + + + + <_> + + <_> + 8 12 9 2 -1. + + <_> + 8 13 9 1 2. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 11 10 3 6 -1. + + <_> + 11 13 3 3 2. + + + + <_> + + <_> + 5 6 9 12 -1. + + <_> + 5 12 9 6 2. + + + + <_> + + <_> + 11 10 3 6 -1. + + <_> + 11 13 3 3 2. + + + + <_> + + <_> + 6 10 3 6 -1. + + <_> + 6 13 3 3 2. + + + + <_> + + <_> + 5 4 11 3 -1. + + <_> + 5 5 11 1 3. + + + + <_> + + <_> + 7 1 5 10 -1. + + <_> + 7 6 5 5 2. + + + + <_> + + <_> + 2 8 18 2 -1. + + <_> + 2 9 18 1 2. + + + + <_> + + <_> + 7 17 5 3 -1. + + <_> + 7 18 5 1 3. + + + + <_> + + <_> + 5 9 12 1 -1. + + <_> + 9 9 4 1 3. + + + + <_> + + <_> + 0 14 6 6 -1. + + <_> + 0 14 3 3 2. + + <_> + 3 17 3 3 2. + + + + <_> + + <_> + 5 9 12 1 -1. + + <_> + 9 9 4 1 3. + + + + <_> + + <_> + 3 9 12 1 -1. + + <_> + 7 9 4 1 3. + + + + <_> + + <_> + 14 10 6 7 -1. + + <_> + 14 10 3 7 2. + + + + <_> + + <_> + 1 0 16 2 -1. + + <_> + 1 1 16 1 2. + + + + <_> + + <_> + 10 9 10 9 -1. + + <_> + 10 12 10 3 3. + + + + <_> + + <_> + 0 1 10 2 -1. + + <_> + 5 1 5 2 2. + + + + <_> + + <_> + 17 3 2 3 -1. + + <_> + 17 4 2 1 3. + + + + <_> + + <_> + 1 3 2 3 -1. + + <_> + 1 4 2 1 3. + + + + <_> + + <_> + 9 7 3 6 -1. + + <_> + 10 7 1 6 3. + + + + <_> + + <_> + 6 5 4 3 -1. + + <_> + 8 5 2 3 2. + + + + <_> + + <_> + 7 5 6 6 -1. + + <_> + 9 5 2 6 3. + + + + <_> + + <_> + 3 4 12 12 -1. + + <_> + 3 4 6 6 2. + + <_> + 9 10 6 6 2. + + + + <_> + + <_> + 9 2 6 15 -1. + + <_> + 11 2 2 15 3. + + + + <_> + + <_> + 2 2 6 17 -1. + + <_> + 4 2 2 17 3. + + + + <_> + + <_> + 14 10 6 7 -1. + + <_> + 14 10 3 7 2. + + + + <_> + + <_> + 0 10 6 7 -1. + + <_> + 3 10 3 7 2. + + + + <_> + + <_> + 9 2 6 15 -1. + + <_> + 11 2 2 15 3. + + + + <_> + + <_> + 5 2 6 15 -1. + + <_> + 7 2 2 15 3. + + + + <_> + + <_> + 17 9 3 6 -1. + + <_> + 17 11 3 2 3. + + + + <_> + + <_> + 6 7 6 6 -1. + + <_> + 8 7 2 6 3. + + + + <_> + + <_> + 1 10 18 6 -1. + + <_> + 10 10 9 3 2. + + <_> + 1 13 9 3 2. + + + + <_> + + <_> + 0 9 10 9 -1. + + <_> + 0 12 10 3 3. + + + + <_> + + <_> + 8 15 4 3 -1. + + <_> + 8 16 4 1 3. + + + + <_> + + <_> + 5 12 3 4 -1. + + <_> + 5 14 3 2 2. + + + + <_> + + <_> + 3 3 16 12 -1. + + <_> + 3 9 16 6 2. + + + + <_> + + <_> + 1 1 12 12 -1. + + <_> + 1 1 6 6 2. + + <_> + 7 7 6 6 2. + + + + <_> + + <_> + 10 4 2 4 -1. + + <_> + 11 4 1 2 2. + + <_> + 10 6 1 2 2. + + + + <_> + + <_> + 0 9 10 2 -1. + + <_> + 0 9 5 1 2. + + <_> + 5 10 5 1 2. + + + + <_> + + <_> + 9 11 3 3 -1. + + <_> + 9 12 3 1 3. + + + + <_> + + <_> + 3 12 9 2 -1. + + <_> + 3 13 9 1 2. + + + + <_> + + <_> + 9 9 2 2 -1. + + <_> + 9 10 2 1 2. + + + + <_> + + <_> + 3 4 13 6 -1. + + <_> + 3 6 13 2 3. + + + + <_> + + <_> + 9 7 6 4 -1. + + <_> + 12 7 3 2 2. + + <_> + 9 9 3 2 2. + + + + <_> + + <_> + 1 0 6 8 -1. + + <_> + 4 0 3 8 2. + + + + <_> + + <_> + 9 5 2 12 -1. + + <_> + 9 11 2 6 2. + + + + <_> + + <_> + 4 4 3 10 -1. + + <_> + 4 9 3 5 2. + + + + <_> + + <_> + 6 17 8 3 -1. + + <_> + 6 18 8 1 3. + + + + <_> + + <_> + 0 5 10 6 -1. + + <_> + 0 7 10 2 3. + + + + <_> + + <_> + 13 2 3 2 -1. + + <_> + 13 3 3 1 2. + + + + <_> + + <_> + 7 5 4 5 -1. + + <_> + 9 5 2 5 2. + + + + <_> + + <_> + 12 14 3 6 -1. + + <_> + 12 16 3 2 3. + + + + <_> + + <_> + 1 11 8 2 -1. + + <_> + 1 12 8 1 2. + + + + <_> + + <_> + 7 13 6 3 -1. + + <_> + 7 14 6 1 3. + + + + <_> + + <_> + 0 5 3 6 -1. + + <_> + 0 7 3 2 3. + + + + <_> + + <_> + 13 2 3 2 -1. + + <_> + 13 3 3 1 2. + + + + <_> + + <_> + 4 14 4 6 -1. + + <_> + 4 14 2 3 2. + + <_> + 6 17 2 3 2. + + + + <_> + + <_> + 13 2 3 2 -1. + + <_> + 13 3 3 1 2. + + + + <_> + + <_> + 8 2 4 12 -1. + + <_> + 8 6 4 4 3. + + + + <_> + + <_> + 14 0 6 8 -1. + + <_> + 17 0 3 4 2. + + <_> + 14 4 3 4 2. + + + + <_> + + <_> + 7 17 3 2 -1. + + <_> + 8 17 1 2 3. + + + + <_> + + <_> + 8 12 4 2 -1. + + <_> + 8 13 4 1 2. + + + + <_> + + <_> + 6 0 8 12 -1. + + <_> + 6 0 4 6 2. + + <_> + 10 6 4 6 2. + + + + <_> + + <_> + 14 0 2 10 -1. + + <_> + 15 0 1 5 2. + + <_> + 14 5 1 5 2. + + + + <_> + + <_> + 5 3 8 6 -1. + + <_> + 5 3 4 3 2. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 14 0 6 10 -1. + + <_> + 17 0 3 5 2. + + <_> + 14 5 3 5 2. + + + + <_> + + <_> + 9 14 1 2 -1. + + <_> + 9 15 1 1 2. + + + + <_> + + <_> + 15 10 4 3 -1. + + <_> + 15 11 4 1 3. + + + + <_> + + <_> + 8 14 2 3 -1. + + <_> + 8 15 2 1 3. + + + + <_> + + <_> + 3 13 14 4 -1. + + <_> + 10 13 7 2 2. + + <_> + 3 15 7 2 2. + + + + <_> + + <_> + 1 10 4 3 -1. + + <_> + 1 11 4 1 3. + + + + <_> + + <_> + 9 11 6 1 -1. + + <_> + 11 11 2 1 3. + + + + <_> + + <_> + 5 11 6 1 -1. + + <_> + 7 11 2 1 3. + + + + <_> + + <_> + 3 5 16 15 -1. + + <_> + 3 10 16 5 3. + + + + <_> + + <_> + 6 12 4 2 -1. + + <_> + 8 12 2 2 2. + + + + <_> + + <_> + 4 4 12 10 -1. + + <_> + 10 4 6 5 2. + + <_> + 4 9 6 5 2. + + + + <_> + + <_> + 8 6 3 4 -1. + + <_> + 9 6 1 4 3. + + + + <_> + + <_> + 8 12 4 8 -1. + + <_> + 10 12 2 4 2. + + <_> + 8 16 2 4 2. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 12 2 3 2 -1. + + <_> + 13 2 1 2 3. + + + + <_> + + <_> + 8 15 3 2 -1. + + <_> + 8 16 3 1 2. + + + + <_> + + <_> + 6 0 9 14 -1. + + <_> + 9 0 3 14 3. + + + + <_> + + <_> + 9 6 2 3 -1. + + <_> + 10 6 1 3 2. + + + + <_> + + <_> + 10 8 2 3 -1. + + <_> + 10 9 2 1 3. + + + + <_> + + <_> + 0 9 4 6 -1. + + <_> + 0 11 4 2 3. + + + + <_> + + <_> + 6 0 8 2 -1. + + <_> + 6 1 8 1 2. + + + + <_> + + <_> + 6 14 7 3 -1. + + <_> + 6 15 7 1 3. + + + + <_> + + <_> + 8 10 8 9 -1. + + <_> + 8 13 8 3 3. + + + + <_> + + <_> + 5 2 3 2 -1. + + <_> + 6 2 1 2 3. + + + + <_> + + <_> + 14 1 6 8 -1. + + <_> + 17 1 3 4 2. + + <_> + 14 5 3 4 2. + + + + <_> + + <_> + 0 1 6 8 -1. + + <_> + 0 1 3 4 2. + + <_> + 3 5 3 4 2. + + + + <_> + + <_> + 1 2 18 6 -1. + + <_> + 10 2 9 3 2. + + <_> + 1 5 9 3 2. + + + + <_> + + <_> + 9 3 2 1 -1. + + <_> + 10 3 1 1 2. + + + + <_> + + <_> + 13 2 4 6 -1. + + <_> + 15 2 2 3 2. + + <_> + 13 5 2 3 2. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 13 5 1 3 -1. + + <_> + 13 6 1 1 3. + + + + <_> + + <_> + 2 16 5 3 -1. + + <_> + 2 17 5 1 3. + + + + <_> + + <_> + 13 2 4 6 -1. + + <_> + 15 2 2 3 2. + + <_> + 13 5 2 3 2. + + + + <_> + + <_> + 3 2 4 6 -1. + + <_> + 3 2 2 3 2. + + <_> + 5 5 2 3 2. + + + + <_> + + <_> + 13 5 1 2 -1. + + <_> + 13 6 1 1 2. + + + + <_> + + <_> + 5 5 2 2 -1. + + <_> + 5 6 2 1 2. + + + + <_> + + <_> + 13 9 2 2 -1. + + <_> + 13 9 1 2 2. + + + + <_> + + <_> + 5 9 2 2 -1. + + <_> + 6 9 1 2 2. + + + + <_> + + <_> + 13 17 3 2 -1. + + <_> + 13 18 3 1 2. + + + + <_> + + <_> + 6 16 4 4 -1. + + <_> + 6 16 2 2 2. + + <_> + 8 18 2 2 2. + + + + <_> + + <_> + 9 16 2 3 -1. + + <_> + 9 17 2 1 3. + + + + <_> + + <_> + 0 13 9 6 -1. + + <_> + 0 15 9 2 3. + + + + <_> + + <_> + 9 14 2 6 -1. + + <_> + 9 17 2 3 2. + + + + <_> + + <_> + 9 15 2 3 -1. + + <_> + 9 16 2 1 3. + + + + <_> + + <_> + 1 10 18 6 -1. + + <_> + 1 12 18 2 3. + + + + <_> + + <_> + 8 11 4 2 -1. + + <_> + 8 12 4 1 2. + + + + <_> + + <_> + 7 9 6 2 -1. + + <_> + 7 10 6 1 2. + + + + <_> + + <_> + 8 8 2 3 -1. + + <_> + 8 9 2 1 3. + + + + <_> + + <_> + 17 5 3 4 -1. + + <_> + 18 5 1 4 3. + + + + <_> + + <_> + 1 19 18 1 -1. + + <_> + 7 19 6 1 3. + + + + <_> + + <_> + 9 0 3 2 -1. + + <_> + 10 0 1 2 3. + + + + <_> + + <_> + 1 8 1 6 -1. + + <_> + 1 10 1 2 3. + + + + <_> + + <_> + 12 17 8 3 -1. + + <_> + 12 17 4 3 2. + + + + <_> + + <_> + 0 5 3 4 -1. + + <_> + 1 5 1 4 3. + + + + <_> + + <_> + 9 7 2 3 -1. + + <_> + 9 8 2 1 3. + + + + <_> + + <_> + 7 11 2 2 -1. + + <_> + 7 11 1 1 2. + + <_> + 8 12 1 1 2. + + + + <_> + + <_> + 11 3 2 5 -1. + + <_> + 11 3 1 5 2. + + + + <_> + + <_> + 7 3 2 5 -1. + + <_> + 8 3 1 5 2. + + + + <_> + + <_> + 15 13 2 3 -1. + + <_> + 15 14 2 1 3. + + + + <_> + + <_> + 5 6 2 3 -1. + + <_> + 5 7 2 1 3. + + + + <_> + + <_> + 4 19 15 1 -1. + + <_> + 9 19 5 1 3. + + + + <_> + + <_> + 1 19 15 1 -1. + + <_> + 6 19 5 1 3. + + + + <_> + + <_> + 15 13 2 3 -1. + + <_> + 15 14 2 1 3. + + + + <_> + + <_> + 5 0 4 15 -1. + + <_> + 7 0 2 15 2. + + + + <_> + + <_> + 9 6 2 5 -1. + + <_> + 9 6 1 5 2. + + + + <_> + + <_> + 9 5 2 7 -1. + + <_> + 10 5 1 7 2. + + + + <_> + + <_> + 16 11 3 3 -1. + + <_> + 16 12 3 1 3. + + + + <_> + + <_> + 1 11 3 3 -1. + + <_> + 1 12 3 1 3. + + + + <_> + + <_> + 6 6 8 3 -1. + + <_> + 6 7 8 1 3. + + + + <_> + + <_> + 0 15 6 2 -1. + + <_> + 0 16 6 1 2. + + + + <_> + + <_> + 1 0 18 6 -1. + + <_> + 7 0 6 6 3. + + + + <_> + + <_> + 6 0 3 4 -1. + + <_> + 7 0 1 4 3. + + + + <_> + + <_> + 14 10 4 10 -1. + + <_> + 16 10 2 5 2. + + <_> + 14 15 2 5 2. + + + + <_> + + <_> + 3 2 3 2 -1. + + <_> + 4 2 1 2 3. + + + + <_> + + <_> + 11 2 2 2 -1. + + <_> + 11 3 2 1 2. + + + + <_> + + <_> + 2 10 4 10 -1. + + <_> + 2 10 2 5 2. + + <_> + 4 15 2 5 2. + + + + <_> + + <_> + 0 13 20 6 -1. + + <_> + 10 13 10 3 2. + + <_> + 0 16 10 3 2. + + + + <_> + + <_> + 0 5 2 15 -1. + + <_> + 1 5 1 15 2. + + + + <_> + + <_> + 1 7 18 4 -1. + + <_> + 10 7 9 2 2. + + <_> + 1 9 9 2 2. + + + + <_> + + <_> + 0 0 2 17 -1. + + <_> + 1 0 1 17 2. + + + + <_> + + <_> + 2 6 16 6 -1. + + <_> + 10 6 8 3 2. + + <_> + 2 9 8 3 2. + + + + <_> + + <_> + 8 14 1 3 -1. + + <_> + 8 15 1 1 3. + + + + <_> + + <_> + 8 15 4 2 -1. + + <_> + 8 16 4 1 2. + + + + <_> + + <_> + 5 2 8 2 -1. + + <_> + 5 2 4 1 2. + + <_> + 9 3 4 1 2. + + + + <_> + + <_> + 6 11 8 6 -1. + + <_> + 6 14 8 3 2. + + + + <_> + + <_> + 9 13 2 2 -1. + + <_> + 9 14 2 1 2. + + + + <_> + + <_> + 18 4 2 6 -1. + + <_> + 18 6 2 2 3. + + + + <_> + + <_> + 9 12 2 2 -1. + + <_> + 9 13 2 1 2. + + + + <_> + + <_> + 18 4 2 6 -1. + + <_> + 18 6 2 2 3. + + + + <_> + + <_> + 9 13 1 3 -1. + + <_> + 9 14 1 1 3. + + + + <_> + + <_> + 18 4 2 6 -1. + + <_> + 18 6 2 2 3. + + + + <_> + + <_> + 0 4 2 6 -1. + + <_> + 0 6 2 2 3. + + + + <_> + + <_> + 9 12 3 3 -1. + + <_> + 9 13 3 1 3. + + + + <_> + + <_> + 3 13 2 3 -1. + + <_> + 3 14 2 1 3. + + + + <_> + + <_> + 13 13 4 3 -1. + + <_> + 13 14 4 1 3. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 5 2 10 6 -1. + + <_> + 5 4 10 2 3. + + + + <_> + + <_> + 3 13 4 3 -1. + + <_> + 3 14 4 1 3. + + + + <_> + + <_> + 3 7 15 5 -1. + + <_> + 8 7 5 5 3. + + + + <_> + + <_> + 3 7 12 2 -1. + + <_> + 7 7 4 2 3. + + + + <_> + + <_> + 10 3 3 9 -1. + + <_> + 11 3 1 9 3. + + + + <_> + + <_> + 8 6 4 6 -1. + + <_> + 10 6 2 6 2. + + + + <_> + + <_> + 9 7 4 3 -1. + + <_> + 9 8 4 1 3. + + + + <_> + + <_> + 0 9 4 9 -1. + + <_> + 2 9 2 9 2. + + + + <_> + + <_> + 9 13 3 5 -1. + + <_> + 10 13 1 5 3. + + + + <_> + + <_> + 7 7 6 3 -1. + + <_> + 9 7 2 3 3. + + + + <_> + + <_> + 9 7 3 5 -1. + + <_> + 10 7 1 5 3. + + + + <_> + + <_> + 5 7 8 2 -1. + + <_> + 9 7 4 2 2. + + + + <_> + + <_> + 5 9 12 2 -1. + + <_> + 9 9 4 2 3. + + + + <_> + + <_> + 5 6 10 3 -1. + + <_> + 10 6 5 3 2. + + + + <_> + + <_> + 10 12 3 1 -1. + + <_> + 11 12 1 1 3. + + + + <_> + + <_> + 0 1 11 15 -1. + + <_> + 0 6 11 5 3. + + + + <_> + + <_> + 1 0 18 6 -1. + + <_> + 7 0 6 6 3. + + + + <_> + + <_> + 7 7 6 1 -1. + + <_> + 9 7 2 1 3. + + + + <_> + + <_> + 5 16 6 4 -1. + + <_> + 5 16 3 2 2. + + <_> + 8 18 3 2 2. + + + + <_> + + <_> + 6 5 9 8 -1. + + <_> + 6 9 9 4 2. + + + + <_> + + <_> + 5 10 2 6 -1. + + <_> + 5 13 2 3 2. + + + + <_> + + <_> + 7 6 8 10 -1. + + <_> + 11 6 4 5 2. + + <_> + 7 11 4 5 2. + + + + <_> + + <_> + 5 6 8 10 -1. + + <_> + 5 6 4 5 2. + + <_> + 9 11 4 5 2. + + + + <_> + + <_> + 9 5 2 2 -1. + + <_> + 9 6 2 1 2. + + + + <_> + + <_> + 5 12 8 2 -1. + + <_> + 5 13 8 1 2. + + + + <_> + + <_> + 10 2 8 2 -1. + + <_> + 10 3 8 1 2. + + + + <_> + + <_> + 4 0 2 10 -1. + + <_> + 4 0 1 5 2. + + <_> + 5 5 1 5 2. + + + + <_> + + <_> + 9 10 2 2 -1. + + <_> + 9 11 2 1 2. + + + + <_> + + <_> + 2 8 15 3 -1. + + <_> + 2 9 15 1 3. + + + + <_> + + <_> + 8 13 4 3 -1. + + <_> + 8 14 4 1 3. + + + + <_> + + <_> + 7 2 3 2 -1. + + <_> + 8 2 1 2 3. + + + + <_> + + <_> + 7 13 6 3 -1. + + <_> + 7 14 6 1 3. + + + + <_> + + <_> + 9 9 2 2 -1. + + <_> + 9 10 2 1 2. + + + + <_> + + <_> + 17 2 3 6 -1. + + <_> + 17 4 3 2 3. + + + + <_> + + <_> + 1 5 3 4 -1. + + <_> + 2 5 1 4 3. + + + + <_> + + <_> + 14 8 4 6 -1. + + <_> + 14 10 4 2 3. + + + + <_> + + <_> + 1 4 3 8 -1. + + <_> + 2 4 1 8 3. + + + + <_> + + <_> + 8 13 4 6 -1. + + <_> + 8 16 4 3 2. + + + + <_> + + <_> + 3 14 2 2 -1. + + <_> + 3 15 2 1 2. + + + + <_> + + <_> + 14 8 4 6 -1. + + <_> + 14 10 4 2 3. + + + + <_> + + <_> + 2 8 4 6 -1. + + <_> + 2 10 4 2 3. + + + + <_> + + <_> + 10 14 1 6 -1. + + <_> + 10 17 1 3 2. + + + + <_> + + <_> + 7 5 3 6 -1. + + <_> + 8 5 1 6 3. + + + + <_> + + <_> + 11 2 2 6 -1. + + <_> + 12 2 1 3 2. + + <_> + 11 5 1 3 2. + + + + <_> + + <_> + 6 6 6 5 -1. + + <_> + 8 6 2 5 3. + + + + <_> + + <_> + 17 1 3 6 -1. + + <_> + 17 3 3 2 3. + + + + <_> + + <_> + 8 7 3 5 -1. + + <_> + 9 7 1 5 3. + + + + <_> + + <_> + 9 18 3 2 -1. + + <_> + 10 18 1 2 3. + + + + <_> + + <_> + 8 18 3 2 -1. + + <_> + 9 18 1 2 3. + + + + <_> + + <_> + 12 3 5 2 -1. + + <_> + 12 4 5 1 2. + + + + <_> + + <_> + 7 1 5 12 -1. + + <_> + 7 7 5 6 2. + + + + <_> + + <_> + 1 0 18 4 -1. + + <_> + 7 0 6 4 3. + + + + <_> + + <_> + 4 2 2 2 -1. + + <_> + 4 3 2 1 2. + + + + <_> + + <_> + 11 14 4 2 -1. + + <_> + 13 14 2 1 2. + + <_> + 11 15 2 1 2. + + + + <_> + + <_> + 0 2 3 6 -1. + + <_> + 0 4 3 2 3. + + + + <_> + + <_> + 9 7 2 3 -1. + + <_> + 9 8 2 1 3. + + + + <_> + + <_> + 5 5 1 3 -1. + + <_> + 5 6 1 1 3. + + + + <_> + + <_> + 10 10 6 1 -1. + + <_> + 10 10 3 1 2. + + + + <_> + + <_> + 4 10 6 1 -1. + + <_> + 7 10 3 1 2. + + + + <_> + + <_> + 9 17 3 3 -1. + + <_> + 9 18 3 1 3. + + + + <_> + + <_> + 4 14 1 3 -1. + + <_> + 4 15 1 1 3. + + + + <_> + + <_> + 12 5 3 3 -1. + + <_> + 12 6 3 1 3. + + + + <_> + + <_> + 4 5 12 3 -1. + + <_> + 4 6 12 1 3. + + + + <_> + + <_> + 9 8 2 3 -1. + + <_> + 9 9 2 1 3. + + + + <_> + + <_> + 4 9 3 3 -1. + + <_> + 5 9 1 3 3. + + + + <_> + + <_> + 6 0 9 17 -1. + + <_> + 9 0 3 17 3. + + + + <_> + + <_> + 9 12 1 3 -1. + + <_> + 9 13 1 1 3. + + + + <_> + + <_> + 9 5 2 15 -1. + + <_> + 9 10 2 5 3. + + + + <_> + + <_> + 8 14 2 3 -1. + + <_> + 8 15 2 1 3. + + + + <_> + + <_> + 10 14 1 3 -1. + + <_> + 10 15 1 1 3. + + + + <_> + + <_> + 7 1 6 5 -1. + + <_> + 9 1 2 5 3. + + + + <_> + + <_> + 0 0 20 2 -1. + + <_> + 0 0 10 2 2. + + + + <_> + + <_> + 2 13 5 3 -1. + + <_> + 2 14 5 1 3. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 2 5 9 15 -1. + + <_> + 2 10 9 5 3. + + + + <_> + + <_> + 5 0 12 10 -1. + + <_> + 11 0 6 5 2. + + <_> + 5 5 6 5 2. + + + + <_> + + <_> + 5 1 2 3 -1. + + <_> + 6 1 1 3 2. + + + + <_> + + <_> + 10 7 6 1 -1. + + <_> + 12 7 2 1 3. + + + + <_> + + <_> + 3 1 2 10 -1. + + <_> + 3 1 1 5 2. + + <_> + 4 6 1 5 2. + + + + <_> + + <_> + 13 7 2 1 -1. + + <_> + 13 7 1 1 2. + + + + <_> + + <_> + 4 13 4 6 -1. + + <_> + 4 15 4 2 3. + + + + <_> + + <_> + 13 7 2 1 -1. + + <_> + 13 7 1 1 2. + + + + <_> + + <_> + 5 7 2 1 -1. + + <_> + 6 7 1 1 2. + + + + <_> + + <_> + 2 12 18 4 -1. + + <_> + 11 12 9 2 2. + + <_> + 2 14 9 2 2. + + + + <_> + + <_> + 5 7 2 2 -1. + + <_> + 5 7 1 1 2. + + <_> + 6 8 1 1 2. + + + + <_> + + <_> + 16 3 4 2 -1. + + <_> + 16 4 4 1 2. + + + + <_> + + <_> + 0 2 2 18 -1. + + <_> + 0 2 1 9 2. + + <_> + 1 11 1 9 2. + + + + <_> + + <_> + 1 2 18 4 -1. + + <_> + 10 2 9 2 2. + + <_> + 1 4 9 2 2. + + + + <_> + + <_> + 9 14 1 3 -1. + + <_> + 9 15 1 1 3. + + + + <_> + + <_> + 2 12 18 4 -1. + + <_> + 11 12 9 2 2. + + <_> + 2 14 9 2 2. + + + + <_> + + <_> + 0 12 18 4 -1. + + <_> + 0 12 9 2 2. + + <_> + 9 14 9 2 2. + + + + <_> + + <_> + 11 4 5 3 -1. + + <_> + 11 5 5 1 3. + + + + <_> + + <_> + 6 4 7 3 -1. + + <_> + 6 5 7 1 3. + + + + <_> + + <_> + 13 17 3 3 -1. + + <_> + 13 18 3 1 3. + + + + <_> + + <_> + 8 1 3 4 -1. + + <_> + 9 1 1 4 3. + + + + <_> + + <_> + 11 4 2 4 -1. + + <_> + 11 4 1 4 2. + + + + <_> + + <_> + 0 17 9 3 -1. + + <_> + 3 17 3 3 3. + + + + <_> + + <_> + 11 0 2 8 -1. + + <_> + 12 0 1 4 2. + + <_> + 11 4 1 4 2. + + + + <_> + + <_> + 0 8 6 12 -1. + + <_> + 0 8 3 6 2. + + <_> + 3 14 3 6 2. + + + + <_> + + <_> + 10 7 4 12 -1. + + <_> + 10 13 4 6 2. + + + + <_> + + <_> + 5 3 8 14 -1. + + <_> + 5 10 8 7 2. + + + + <_> + + <_> + 14 10 6 1 -1. + + <_> + 14 10 3 1 2. + + + + <_> + + <_> + 0 4 10 4 -1. + + <_> + 0 6 10 2 2. + + + + <_> + + <_> + 10 0 5 8 -1. + + <_> + 10 4 5 4 2. + + + + <_> + + <_> + 8 1 4 8 -1. + + <_> + 8 1 2 4 2. + + <_> + 10 5 2 4 2. + + + + <_> + + <_> + 9 11 6 1 -1. + + <_> + 11 11 2 1 3. + + + + <_> + + <_> + 8 9 3 4 -1. + + <_> + 9 9 1 4 3. + + + + <_> + + <_> + 18 4 2 6 -1. + + <_> + 18 6 2 2 3. + + + + <_> + + <_> + 8 8 3 4 -1. + + <_> + 9 8 1 4 3. + + + + <_> + + <_> + 7 1 13 3 -1. + + <_> + 7 2 13 1 3. + + + + <_> + + <_> + 7 13 6 1 -1. + + <_> + 9 13 2 1 3. + + + + <_> + + <_> + 12 11 3 6 -1. + + <_> + 12 13 3 2 3. + + + + <_> + + <_> + 5 11 6 1 -1. + + <_> + 7 11 2 1 3. + + + + <_> + + <_> + 1 4 18 10 -1. + + <_> + 10 4 9 5 2. + + <_> + 1 9 9 5 2. + + + + <_> + + <_> + 8 6 4 9 -1. + + <_> + 8 9 4 3 3. + + + + <_> + + <_> + 8 6 4 3 -1. + + <_> + 8 7 4 1 3. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 9 7 1 3 3. + + + + <_> + + <_> + 14 15 4 3 -1. + + <_> + 14 16 4 1 3. + + + + <_> + + <_> + 5 10 3 10 -1. + + <_> + 6 10 1 10 3. + + + + <_> + + <_> + 8 15 4 3 -1. + + <_> + 8 16 4 1 3. + + + + <_> + + <_> + 0 8 1 6 -1. + + <_> + 0 10 1 2 3. + + + + <_> + + <_> + 10 15 1 3 -1. + + <_> + 10 16 1 1 3. + + + + <_> + + <_> + 2 15 4 3 -1. + + <_> + 2 16 4 1 3. + + + + <_> + + <_> + 18 3 2 8 -1. + + <_> + 19 3 1 4 2. + + <_> + 18 7 1 4 2. + + + + <_> + + <_> + 0 3 2 8 -1. + + <_> + 0 3 1 4 2. + + <_> + 1 7 1 4 2. + + + + <_> + + <_> + 3 7 14 10 -1. + + <_> + 10 7 7 5 2. + + <_> + 3 12 7 5 2. + + + + <_> + + <_> + 0 7 19 3 -1. + + <_> + 0 8 19 1 3. + + + + <_> + + <_> + 12 6 3 3 -1. + + <_> + 12 7 3 1 3. + + + + <_> + + <_> + 0 6 1 3 -1. + + <_> + 0 7 1 1 3. + + + + <_> + + <_> + 12 6 3 3 -1. + + <_> + 12 7 3 1 3. + + + + <_> + + <_> + 5 6 3 3 -1. + + <_> + 5 7 3 1 3. + + + + <_> + + <_> + 8 2 4 2 -1. + + <_> + 8 3 4 1 2. + + + + <_> + + <_> + 6 3 4 12 -1. + + <_> + 8 3 2 12 2. + + + + <_> + + <_> + 13 6 2 3 -1. + + <_> + 13 7 2 1 3. + + + + <_> + + <_> + 0 10 20 4 -1. + + <_> + 0 12 20 2 2. + + + + <_> + + <_> + 2 0 17 14 -1. + + <_> + 2 7 17 7 2. + + + + <_> + + <_> + 0 0 6 10 -1. + + <_> + 0 0 3 5 2. + + <_> + 3 5 3 5 2. + + + + <_> + + <_> + 14 6 6 4 -1. + + <_> + 14 6 3 4 2. + + + + <_> + + <_> + 0 6 6 4 -1. + + <_> + 3 6 3 4 2. + + + + <_> + + <_> + 13 2 7 2 -1. + + <_> + 13 3 7 1 2. + + + + <_> + + <_> + 0 2 7 2 -1. + + <_> + 0 3 7 1 2. + + + + <_> + + <_> + 6 11 14 2 -1. + + <_> + 13 11 7 1 2. + + <_> + 6 12 7 1 2. + + + + <_> + + <_> + 8 5 2 2 -1. + + <_> + 8 5 1 1 2. + + <_> + 9 6 1 1 2. + + + + <_> + + <_> + 13 9 2 3 -1. + + <_> + 13 9 1 3 2. + + + + <_> + + <_> + 1 1 3 12 -1. + + <_> + 2 1 1 12 3. + + + + <_> + + <_> + 17 4 1 3 -1. + + <_> + 17 5 1 1 3. + + + + <_> + + <_> + 2 4 1 3 -1. + + <_> + 2 5 1 1 3. + + + + <_> + + <_> + 14 5 1 3 -1. + + <_> + 14 6 1 1 3. + + + + <_> + + <_> + 7 16 2 3 -1. + + <_> + 7 17 2 1 3. + + + + <_> + + <_> + 8 13 4 6 -1. + + <_> + 10 13 2 3 2. + + <_> + 8 16 2 3 2. + + + + <_> + + <_> + 5 5 1 3 -1. + + <_> + 5 6 1 1 3. + + + + <_> + + <_> + 16 0 4 20 -1. + + <_> + 16 0 2 20 2. + + + + <_> + + <_> + 5 1 2 6 -1. + + <_> + 5 1 1 3 2. + + <_> + 6 4 1 3 2. + + + + <_> + + <_> + 5 4 10 4 -1. + + <_> + 5 6 10 2 2. + + + + <_> + + <_> + 15 2 4 12 -1. + + <_> + 15 2 2 12 2. + + + + <_> + + <_> + 7 6 4 12 -1. + + <_> + 7 12 4 6 2. + + + + <_> + + <_> + 14 5 1 8 -1. + + <_> + 14 9 1 4 2. + + + + <_> + + <_> + 1 4 14 10 -1. + + <_> + 1 4 7 5 2. + + <_> + 8 9 7 5 2. + + + + <_> + + <_> + 11 6 6 14 -1. + + <_> + 14 6 3 7 2. + + <_> + 11 13 3 7 2. + + + + <_> + + <_> + 3 6 6 14 -1. + + <_> + 3 6 3 7 2. + + <_> + 6 13 3 7 2. + + + + <_> + + <_> + 4 9 15 2 -1. + + <_> + 9 9 5 2 3. + + + + <_> + + <_> + 7 14 6 3 -1. + + <_> + 7 15 6 1 3. + + + + <_> + + <_> + 6 3 14 4 -1. + + <_> + 13 3 7 2 2. + + <_> + 6 5 7 2 2. + + + + <_> + + <_> + 1 9 15 2 -1. + + <_> + 6 9 5 2 3. + + + + <_> + + <_> + 6 11 8 9 -1. + + <_> + 6 14 8 3 3. + + + + <_> + + <_> + 7 4 3 8 -1. + + <_> + 8 4 1 8 3. + + + + <_> + + <_> + 14 6 2 6 -1. + + <_> + 14 9 2 3 2. + + + + <_> + + <_> + 5 7 6 4 -1. + + <_> + 5 7 3 2 2. + + <_> + 8 9 3 2 2. + + + + <_> + + <_> + 1 1 18 19 -1. + + <_> + 7 1 6 19 3. + + + + <_> + + <_> + 1 2 6 5 -1. + + <_> + 4 2 3 5 2. + + + + <_> + + <_> + 12 17 6 2 -1. + + <_> + 12 18 6 1 2. + + + + <_> + + <_> + 2 17 6 2 -1. + + <_> + 2 18 6 1 2. + + + + <_> + + <_> + 17 3 3 6 -1. + + <_> + 17 5 3 2 3. + + + + <_> + + <_> + 8 17 3 3 -1. + + <_> + 8 18 3 1 3. + + + + <_> + + <_> + 10 13 2 6 -1. + + <_> + 10 16 2 3 2. + + + + <_> + + <_> + 7 13 6 3 -1. + + <_> + 7 14 6 1 3. + + + + <_> + + <_> + 17 3 3 6 -1. + + <_> + 17 5 3 2 3. + + + + <_> + + <_> + 8 13 2 3 -1. + + <_> + 8 14 2 1 3. + + + + <_> + + <_> + 9 3 6 2 -1. + + <_> + 11 3 2 2 3. + + + + <_> + + <_> + 0 3 3 6 -1. + + <_> + 0 5 3 2 3. + + + + <_> + + <_> + 8 5 4 6 -1. + + <_> + 8 7 4 2 3. + + + + <_> + + <_> + 5 5 3 2 -1. + + <_> + 5 6 3 1 2. + + + + <_> + + <_> + 10 1 3 4 -1. + + <_> + 11 1 1 4 3. + + + + <_> + + <_> + 1 2 5 9 -1. + + <_> + 1 5 5 3 3. + + + + <_> + + <_> + 13 6 2 3 -1. + + <_> + 13 7 2 1 3. + + + + <_> + + <_> + 0 6 14 3 -1. + + <_> + 7 6 7 3 2. + + + + <_> + + <_> + 2 11 18 8 -1. + + <_> + 2 15 18 4 2. + + + + <_> + + <_> + 5 6 2 3 -1. + + <_> + 5 7 2 1 3. + + + + <_> + + <_> + 10 6 4 2 -1. + + <_> + 12 6 2 1 2. + + <_> + 10 7 2 1 2. + + + + <_> + + <_> + 6 6 4 2 -1. + + <_> + 6 6 2 1 2. + + <_> + 8 7 2 1 2. + + + + <_> + + <_> + 10 1 3 4 -1. + + <_> + 11 1 1 4 3. + + + + <_> + + <_> + 7 1 2 7 -1. + + <_> + 8 1 1 7 2. + + + + <_> + + <_> + 4 2 15 14 -1. + + <_> + 4 9 15 7 2. + + + + <_> + + <_> + 8 7 3 2 -1. + + <_> + 9 7 1 2 3. + + + + <_> + + <_> + 2 3 18 4 -1. + + <_> + 11 3 9 2 2. + + <_> + 2 5 9 2 2. + + + + <_> + + <_> + 9 7 2 2 -1. + + <_> + 10 7 1 2 2. + + + + <_> + + <_> + 13 9 2 3 -1. + + <_> + 13 9 1 3 2. + + + + <_> + + <_> + 5 2 6 2 -1. + + <_> + 7 2 2 2 3. + + + + <_> + + <_> + 9 5 2 7 -1. + + <_> + 9 5 1 7 2. + + + + <_> + + <_> + 5 9 2 3 -1. + + <_> + 6 9 1 3 2. + + + + <_> + + <_> + 6 0 14 18 -1. + + <_> + 6 9 14 9 2. + + + + <_> + + <_> + 2 16 6 3 -1. + + <_> + 2 17 6 1 3. + + + + <_> + + <_> + 9 7 3 6 -1. + + <_> + 10 7 1 6 3. + + + + <_> + + <_> + 7 8 4 3 -1. + + <_> + 7 9 4 1 3. + + + + <_> + + <_> + 7 12 6 3 -1. + + <_> + 7 13 6 1 3. + + + + <_> + + <_> + 9 12 2 3 -1. + + <_> + 9 13 2 1 3. + + + + <_> + + <_> + 7 12 6 2 -1. + + <_> + 9 12 2 2 3. + + + + <_> + + <_> + 5 11 4 6 -1. + + <_> + 5 14 4 3 2. + + + + <_> + + <_> + 11 12 7 2 -1. + + <_> + 11 13 7 1 2. + + + + <_> + + <_> + 6 10 8 6 -1. + + <_> + 6 10 4 3 2. + + <_> + 10 13 4 3 2. + + + + <_> + + <_> + 11 10 3 4 -1. + + <_> + 11 12 3 2 2. + + + + <_> + + <_> + 9 16 2 3 -1. + + <_> + 9 17 2 1 3. + + + + <_> + + <_> + 13 3 1 9 -1. + + <_> + 13 6 1 3 3. + + + + <_> + + <_> + 1 13 14 6 -1. + + <_> + 1 15 14 2 3. + + + + <_> + + <_> + 13 6 1 6 -1. + + <_> + 13 9 1 3 2. + + + + <_> + + <_> + 0 4 3 8 -1. + + <_> + 1 4 1 8 3. + + + + <_> + + <_> + 18 0 2 18 -1. + + <_> + 18 0 1 18 2. + + + + <_> + + <_> + 2 3 6 2 -1. + + <_> + 2 4 6 1 2. + + + + <_> + + <_> + 9 0 8 6 -1. + + <_> + 9 2 8 2 3. + + + + <_> + + <_> + 6 6 1 6 -1. + + <_> + 6 9 1 3 2. + + + + <_> + + <_> + 14 8 6 3 -1. + + <_> + 14 9 6 1 3. + + + + <_> + + <_> + 0 0 2 18 -1. + + <_> + 1 0 1 18 2. + + + + <_> + + <_> + 1 18 18 2 -1. + + <_> + 10 18 9 1 2. + + <_> + 1 19 9 1 2. + + + + <_> + + <_> + 3 15 2 2 -1. + + <_> + 3 16 2 1 2. + + + + <_> + + <_> + 8 14 5 3 -1. + + <_> + 8 15 5 1 3. + + + + <_> + + <_> + 8 14 2 3 -1. + + <_> + 8 15 2 1 3. + + + + <_> + + <_> + 12 3 3 3 -1. + + <_> + 13 3 1 3 3. + + + + <_> + + <_> + 7 5 6 2 -1. + + <_> + 9 5 2 2 3. + + + + <_> + + <_> + 15 5 5 2 -1. + + <_> + 15 6 5 1 2. + + + + <_> + + <_> + 0 5 5 2 -1. + + <_> + 0 6 5 1 2. + + + + <_> + + <_> + 17 14 1 6 -1. + + <_> + 17 17 1 3 2. + + + + <_> + + <_> + 2 9 9 3 -1. + + <_> + 5 9 3 3 3. + + + + <_> + + <_> + 12 3 3 3 -1. + + <_> + 13 3 1 3 3. + + + + <_> + + <_> + 0 0 4 18 -1. + + <_> + 2 0 2 18 2. + + + + <_> + + <_> + 17 6 1 3 -1. + + <_> + 17 7 1 1 3. + + + + <_> + + <_> + 2 14 1 6 -1. + + <_> + 2 17 1 3 2. + + + + <_> + + <_> + 19 8 1 2 -1. + + <_> + 19 9 1 1 2. + + + + <_> + + <_> + 5 3 3 3 -1. + + <_> + 6 3 1 3 3. + + + + <_> + + <_> + 9 16 2 3 -1. + + <_> + 9 17 2 1 3. + + + + <_> + + <_> + 2 6 1 3 -1. + + <_> + 2 7 1 1 3. + + + + <_> + + <_> + 12 4 8 2 -1. + + <_> + 16 4 4 1 2. + + <_> + 12 5 4 1 2. + + + + <_> + + <_> + 0 4 8 2 -1. + + <_> + 0 4 4 1 2. + + <_> + 4 5 4 1 2. + + + + <_> + + <_> + 2 16 18 4 -1. + + <_> + 2 18 18 2 2. + + + + <_> + + <_> + 7 15 2 4 -1. + + <_> + 7 17 2 2 2. + + + + <_> + + <_> + 4 0 14 3 -1. + + <_> + 4 1 14 1 3. + + + + <_> + + <_> + 0 0 4 20 -1. + + <_> + 2 0 2 20 2. + + + + <_> + + <_> + 12 4 4 8 -1. + + <_> + 14 4 2 4 2. + + <_> + 12 8 2 4 2. + + + + <_> + + <_> + 6 7 2 2 -1. + + <_> + 6 7 1 1 2. + + <_> + 7 8 1 1 2. + + + + <_> + + <_> + 10 6 2 3 -1. + + <_> + 10 7 2 1 3. + + + + <_> + + <_> + 8 7 3 2 -1. + + <_> + 8 8 3 1 2. + + + + <_> + + <_> + 8 2 6 12 -1. + + <_> + 8 8 6 6 2. + + + + <_> + + <_> + 4 0 11 12 -1. + + <_> + 4 4 11 4 3. + + + + <_> + + <_> + 14 9 6 11 -1. + + <_> + 16 9 2 11 3. + + + + <_> + + <_> + 0 14 4 3 -1. + + <_> + 0 15 4 1 3. + + + + <_> + + <_> + 9 10 2 3 -1. + + <_> + 9 11 2 1 3. + + + + <_> + + <_> + 5 11 3 2 -1. + + <_> + 5 12 3 1 2. + + + + <_> + + <_> + 9 15 3 3 -1. + + <_> + 10 15 1 3 3. + + + + <_> + + <_> + 8 8 3 4 -1. + + <_> + 9 8 1 4 3. + + + + <_> + + <_> + 9 15 3 3 -1. + + <_> + 10 15 1 3 3. + + + + <_> + + <_> + 7 7 3 2 -1. + + <_> + 8 7 1 2 3. + + + + <_> + + <_> + 2 10 16 4 -1. + + <_> + 10 10 8 2 2. + + <_> + 2 12 8 2 2. + + + + <_> + + <_> + 2 3 4 17 -1. + + <_> + 4 3 2 17 2. + + + + <_> + + <_> + 15 13 2 7 -1. + + <_> + 15 13 1 7 2. + + + + <_> + + <_> + 2 2 6 1 -1. + + <_> + 5 2 3 1 2. + + + + <_> + + <_> + 5 2 12 4 -1. + + <_> + 9 2 4 4 3. + + + + <_> + + <_> + 6 0 8 12 -1. + + <_> + 6 0 4 6 2. + + <_> + 10 6 4 6 2. + + + + <_> + + <_> + 13 7 2 2 -1. + + <_> + 14 7 1 1 2. + + <_> + 13 8 1 1 2. + + + + <_> + + <_> + 0 12 20 6 -1. + + <_> + 0 14 20 2 3. + + + + <_> + + <_> + 14 7 2 3 -1. + + <_> + 14 7 1 3 2. + + + + <_> + + <_> + 0 8 9 12 -1. + + <_> + 3 8 3 12 3. + + + + <_> + + <_> + 3 0 16 2 -1. + + <_> + 3 0 8 2 2. + + + + <_> + + <_> + 6 15 3 3 -1. + + <_> + 6 16 3 1 3. + + + + <_> + + <_> + 8 15 6 3 -1. + + <_> + 8 16 6 1 3. + + + + <_> + + <_> + 0 10 1 6 -1. + + <_> + 0 12 1 2 3. + + + + <_> + + <_> + 10 9 4 3 -1. + + <_> + 10 10 4 1 3. + + + + <_> + + <_> + 9 15 2 3 -1. + + <_> + 9 16 2 1 3. + + + + <_> + + <_> + 5 7 10 1 -1. + + <_> + 5 7 5 1 2. + + + + <_> + + <_> + 4 0 12 19 -1. + + <_> + 10 0 6 19 2. + + + + <_> + + <_> + 0 6 20 6 -1. + + <_> + 10 6 10 3 2. + + <_> + 0 9 10 3 2. + + + + <_> + + <_> + 3 6 2 2 -1. + + <_> + 3 6 1 1 2. + + <_> + 4 7 1 1 2. + + + + <_> + + <_> + 15 6 2 2 -1. + + <_> + 16 6 1 1 2. + + <_> + 15 7 1 1 2. + + + + <_> + + <_> + 3 6 2 2 -1. + + <_> + 3 6 1 1 2. + + <_> + 4 7 1 1 2. + + + + <_> + + <_> + 14 4 1 12 -1. + + <_> + 14 10 1 6 2. + + + + <_> + + <_> + 2 5 16 10 -1. + + <_> + 2 5 8 5 2. + + <_> + 10 10 8 5 2. + + + + <_> + + <_> + 9 17 3 2 -1. + + <_> + 10 17 1 2 3. + + + + <_> + + <_> + 1 4 2 2 -1. + + <_> + 1 5 2 1 2. + + + + <_> + + <_> + 5 0 15 5 -1. + + <_> + 10 0 5 5 3. + + + + <_> + + <_> + 0 0 15 5 -1. + + <_> + 5 0 5 5 3. + + + + <_> + + <_> + 11 2 2 17 -1. + + <_> + 11 2 1 17 2. + + + + <_> + + <_> + 7 2 2 17 -1. + + <_> + 8 2 1 17 2. + + + + <_> + + <_> + 15 11 2 9 -1. + + <_> + 15 11 1 9 2. + + + + <_> + + <_> + 3 11 2 9 -1. + + <_> + 4 11 1 9 2. + + + + <_> + + <_> + 5 16 14 4 -1. + + <_> + 5 16 7 4 2. + + + + <_> + + <_> + 1 4 18 1 -1. + + <_> + 7 4 6 1 3. + + + + <_> + + <_> + 13 7 6 4 -1. + + <_> + 16 7 3 2 2. + + <_> + 13 9 3 2 2. + + + + <_> + + <_> + 9 8 2 12 -1. + + <_> + 9 12 2 4 3. + + + + <_> + + <_> + 12 1 6 6 -1. + + <_> + 12 3 6 2 3. + + + + <_> + + <_> + 5 2 6 6 -1. + + <_> + 5 2 3 3 2. + + <_> + 8 5 3 3 2. + + + + <_> + + <_> + 9 16 6 4 -1. + + <_> + 12 16 3 2 2. + + <_> + 9 18 3 2 2. + + + + <_> + + <_> + 1 2 18 3 -1. + + <_> + 7 2 6 3 3. + + + + <_> + + <_> + 7 4 9 10 -1. + + <_> + 7 9 9 5 2. + + + + <_> + + <_> + 5 9 4 4 -1. + + <_> + 7 9 2 4 2. + + + + <_> + + <_> + 11 10 3 6 -1. + + <_> + 11 13 3 3 2. + + + + <_> + + <_> + 7 11 5 3 -1. + + <_> + 7 12 5 1 3. + + + + <_> + + <_> + 7 11 6 6 -1. + + <_> + 10 11 3 3 2. + + <_> + 7 14 3 3 2. + + + + <_> + + <_> + 0 0 10 9 -1. + + <_> + 0 3 10 3 3. + + + + <_> + + <_> + 13 14 1 6 -1. + + <_> + 13 16 1 2 3. + + + + <_> + + <_> + 0 2 3 6 -1. + + <_> + 0 4 3 2 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 6 14 1 6 -1. + + <_> + 6 16 1 2 3. + + + + <_> + + <_> + 9 15 2 3 -1. + + <_> + 9 16 2 1 3. + + + + <_> + + <_> + 6 4 3 3 -1. + + <_> + 7 4 1 3 3. + + + + <_> + + <_> + 9 0 11 3 -1. + + <_> + 9 1 11 1 3. + + + + <_> + + <_> + 0 6 20 3 -1. + + <_> + 0 7 20 1 3. + + + + <_> + + <_> + 10 1 1 2 -1. + + <_> + 10 2 1 1 2. + + + + <_> + + <_> + 9 6 2 6 -1. + + <_> + 10 6 1 6 2. + + + + <_> + + <_> + 5 8 12 1 -1. + + <_> + 9 8 4 1 3. + + + + <_> + + <_> + 3 8 12 1 -1. + + <_> + 7 8 4 1 3. + + + + <_> + + <_> + 9 7 3 5 -1. + + <_> + 10 7 1 5 3. + + + + <_> + + <_> + 3 9 6 2 -1. + + <_> + 6 9 3 2 2. + + + + <_> + + <_> + 12 9 3 3 -1. + + <_> + 12 10 3 1 3. + + + + <_> + + <_> + 7 0 6 1 -1. + + <_> + 9 0 2 1 3. + + + + <_> + + <_> + 12 9 3 3 -1. + + <_> + 12 10 3 1 3. + + + + <_> + + <_> + 7 10 2 1 -1. + + <_> + 8 10 1 1 2. + + + + <_> + + <_> + 6 4 9 13 -1. + + <_> + 9 4 3 13 3. + + + + <_> + + <_> + 6 8 4 2 -1. + + <_> + 6 9 4 1 2. + + + + <_> + + <_> + 16 2 4 6 -1. + + <_> + 16 2 2 6 2. + + + + <_> + + <_> + 0 17 6 3 -1. + + <_> + 0 18 6 1 3. + + + + <_> + + <_> + 10 10 3 10 -1. + + <_> + 10 15 3 5 2. + + + + <_> + + <_> + 8 7 3 5 -1. + + <_> + 9 7 1 5 3. + + + + <_> + + <_> + 10 4 4 3 -1. + + <_> + 10 4 2 3 2. + + + + <_> + + <_> + 8 4 3 8 -1. + + <_> + 9 4 1 8 3. + + + + <_> + + <_> + 6 6 9 13 -1. + + <_> + 9 6 3 13 3. + + + + <_> + + <_> + 6 0 8 12 -1. + + <_> + 6 0 4 6 2. + + <_> + 10 6 4 6 2. + + + + <_> + + <_> + 14 2 6 8 -1. + + <_> + 16 2 2 8 3. + + + + <_> + + <_> + 6 0 3 6 -1. + + <_> + 7 0 1 6 3. + + + + <_> + + <_> + 14 2 6 8 -1. + + <_> + 16 2 2 8 3. + + + + <_> + + <_> + 0 5 6 6 -1. + + <_> + 0 8 6 3 2. + + + + <_> + + <_> + 9 12 6 2 -1. + + <_> + 12 12 3 1 2. + + <_> + 9 13 3 1 2. + + + + <_> + + <_> + 8 17 3 2 -1. + + <_> + 9 17 1 2 3. + + + + <_> + + <_> + 11 6 2 2 -1. + + <_> + 12 6 1 1 2. + + <_> + 11 7 1 1 2. + + + + <_> + + <_> + 1 9 18 2 -1. + + <_> + 7 9 6 2 3. + + + + <_> + + <_> + 11 6 2 2 -1. + + <_> + 12 6 1 1 2. + + <_> + 11 7 1 1 2. + + + + <_> + + <_> + 3 4 12 8 -1. + + <_> + 7 4 4 8 3. + + + + <_> + + <_> + 13 11 5 3 -1. + + <_> + 13 12 5 1 3. + + + + <_> + + <_> + 9 10 2 3 -1. + + <_> + 9 11 2 1 3. + + + + <_> + + <_> + 14 7 2 3 -1. + + <_> + 14 7 1 3 2. + + + + <_> + + <_> + 5 4 1 3 -1. + + <_> + 5 5 1 1 3. + + + + <_> + + <_> + 13 4 2 3 -1. + + <_> + 13 5 2 1 3. + + + + <_> + + <_> + 5 4 2 3 -1. + + <_> + 5 5 2 1 3. + + + + <_> + + <_> + 9 8 2 3 -1. + + <_> + 9 9 2 1 3. + + + + <_> + + <_> + 8 9 2 2 -1. + + <_> + 8 10 2 1 2. + + + + <_> + + <_> + 15 14 1 4 -1. + + <_> + 15 16 1 2 2. + + + + <_> + + <_> + 3 12 2 2 -1. + + <_> + 3 13 2 1 2. + + + + <_> + + <_> + 12 15 2 2 -1. + + <_> + 13 15 1 1 2. + + <_> + 12 16 1 1 2. + + + + <_> + + <_> + 9 13 2 2 -1. + + <_> + 9 14 2 1 2. + + + + <_> + + <_> + 4 11 14 9 -1. + + <_> + 4 14 14 3 3. + + + + <_> + + <_> + 7 13 4 3 -1. + + <_> + 7 14 4 1 3. + + + + <_> + + <_> + 15 14 1 4 -1. + + <_> + 15 16 1 2 2. + + + + <_> + + <_> + 4 14 1 4 -1. + + <_> + 4 16 1 2 2. + + + + <_> + + <_> + 14 0 6 13 -1. + + <_> + 16 0 2 13 3. + + + + <_> + + <_> + 4 1 2 12 -1. + + <_> + 4 1 1 6 2. + + <_> + 5 7 1 6 2. + + + + <_> + + <_> + 11 14 6 6 -1. + + <_> + 14 14 3 3 2. + + <_> + 11 17 3 3 2. + + + + <_> + + <_> + 3 14 6 6 -1. + + <_> + 3 14 3 3 2. + + <_> + 6 17 3 3 2. + + + + <_> + + <_> + 14 17 3 2 -1. + + <_> + 14 18 3 1 2. + + + + <_> + + <_> + 3 17 3 2 -1. + + <_> + 3 18 3 1 2. + + + + <_> + + <_> + 14 0 6 13 -1. + + <_> + 16 0 2 13 3. + + + + <_> + + <_> + 0 0 6 13 -1. + + <_> + 2 0 2 13 3. + + + + <_> + + <_> + 10 10 7 6 -1. + + <_> + 10 12 7 2 3. + + + + <_> + + <_> + 6 15 2 2 -1. + + <_> + 6 15 1 1 2. + + <_> + 7 16 1 1 2. + + + + <_> + + <_> + 6 11 8 6 -1. + + <_> + 10 11 4 3 2. + + <_> + 6 14 4 3 2. + + + + <_> + + <_> + 7 6 2 2 -1. + + <_> + 7 6 1 1 2. + + <_> + 8 7 1 1 2. + + + + <_> + + <_> + 2 2 16 6 -1. + + <_> + 10 2 8 3 2. + + <_> + 2 5 8 3 2. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 11 7 3 10 -1. + + <_> + 11 12 3 5 2. + + + + <_> + + <_> + 6 7 3 10 -1. + + <_> + 6 12 3 5 2. + + + + <_> + + <_> + 10 7 3 2 -1. + + <_> + 11 7 1 2 3. + + + + <_> + + <_> + 8 12 4 2 -1. + + <_> + 8 13 4 1 2. + + + + <_> + + <_> + 10 1 1 3 -1. + + <_> + 10 2 1 1 3. + + + + <_> + + <_> + 1 2 4 18 -1. + + <_> + 1 2 2 9 2. + + <_> + 3 11 2 9 2. + + + + <_> + + <_> + 12 4 4 12 -1. + + <_> + 12 10 4 6 2. + + + + <_> + + <_> + 0 0 1 6 -1. + + <_> + 0 2 1 2 3. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 8 7 4 3 -1. + + <_> + 8 8 4 1 3. + + + + <_> + + <_> + 10 7 3 2 -1. + + <_> + 11 7 1 2 3. + + + + <_> + + <_> + 7 7 3 2 -1. + + <_> + 8 7 1 2 3. + + + + <_> + + <_> + 9 4 6 1 -1. + + <_> + 11 4 2 1 3. + + + + <_> + + <_> + 8 7 2 3 -1. + + <_> + 9 7 1 3 2. + + + + <_> + + <_> + 12 7 8 6 -1. + + <_> + 16 7 4 3 2. + + <_> + 12 10 4 3 2. + + + + <_> + + <_> + 0 7 8 6 -1. + + <_> + 0 7 4 3 2. + + <_> + 4 10 4 3 2. + + + + <_> + + <_> + 18 2 2 10 -1. + + <_> + 19 2 1 5 2. + + <_> + 18 7 1 5 2. + + + + <_> + + <_> + 0 2 6 4 -1. + + <_> + 3 2 3 4 2. + + + + <_> + + <_> + 9 4 6 1 -1. + + <_> + 11 4 2 1 3. + + + + <_> + + <_> + 7 15 2 2 -1. + + <_> + 7 15 1 1 2. + + <_> + 8 16 1 1 2. + + + + <_> + + <_> + 11 13 1 6 -1. + + <_> + 11 16 1 3 2. + + + + <_> + + <_> + 8 13 1 6 -1. + + <_> + 8 16 1 3 2. + + + + <_> + + <_> + 14 3 2 1 -1. + + <_> + 14 3 1 1 2. + + + + <_> + + <_> + 8 15 2 3 -1. + + <_> + 8 16 2 1 3. + + + + <_> + + <_> + 12 15 7 4 -1. + + <_> + 12 17 7 2 2. + + + + <_> + + <_> + 4 14 12 3 -1. + + <_> + 4 15 12 1 3. + + + + <_> + + <_> + 10 3 3 2 -1. + + <_> + 11 3 1 2 3. + + + + <_> + + <_> + 4 12 2 2 -1. + + <_> + 4 13 2 1 2. + + + + <_> + + <_> + 10 11 4 6 -1. + + <_> + 10 14 4 3 2. + + + + <_> + + <_> + 7 13 2 2 -1. + + <_> + 7 13 1 1 2. + + <_> + 8 14 1 1 2. + + + + <_> + + <_> + 4 11 14 4 -1. + + <_> + 11 11 7 2 2. + + <_> + 4 13 7 2 2. + + + + <_> + + <_> + 1 18 18 2 -1. + + <_> + 7 18 6 2 3. + + + + <_> + + <_> + 11 18 2 2 -1. + + <_> + 12 18 1 1 2. + + <_> + 11 19 1 1 2. + + + + <_> + + <_> + 7 18 2 2 -1. + + <_> + 7 18 1 1 2. + + <_> + 8 19 1 1 2. + + + + <_> + + <_> + 12 18 8 2 -1. + + <_> + 12 19 8 1 2. + + + + <_> + + <_> + 7 14 6 2 -1. + + <_> + 7 15 6 1 2. + + + + <_> + + <_> + 8 12 4 8 -1. + + <_> + 10 12 2 4 2. + + <_> + 8 16 2 4 2. + + + + <_> + + <_> + 4 9 3 3 -1. + + <_> + 4 10 3 1 3. + + + + <_> + + <_> + 7 10 6 2 -1. + + <_> + 9 10 2 2 3. + + + + <_> + + <_> + 5 0 4 15 -1. + + <_> + 7 0 2 15 2. + + + + <_> + + <_> + 8 6 12 14 -1. + + <_> + 12 6 4 14 3. + + + + <_> + + <_> + 5 16 3 3 -1. + + <_> + 5 17 3 1 3. + + + + <_> + + <_> + 8 1 12 19 -1. + + <_> + 12 1 4 19 3. + + + + <_> + + <_> + 3 0 3 2 -1. + + <_> + 3 1 3 1 2. + + + + <_> + + <_> + 10 12 4 5 -1. + + <_> + 10 12 2 5 2. + + + + <_> + + <_> + 6 12 4 5 -1. + + <_> + 8 12 2 5 2. + + + + <_> + + <_> + 11 11 2 2 -1. + + <_> + 12 11 1 1 2. + + <_> + 11 12 1 1 2. + + + + <_> + + <_> + 0 2 3 6 -1. + + <_> + 0 4 3 2 3. + + + + <_> + + <_> + 11 11 2 2 -1. + + <_> + 12 11 1 1 2. + + <_> + 11 12 1 1 2. + + + + <_> + + <_> + 7 6 4 10 -1. + + <_> + 7 11 4 5 2. + + + + <_> + + <_> + 11 11 2 2 -1. + + <_> + 12 11 1 1 2. + + <_> + 11 12 1 1 2. + + + + <_> + + <_> + 2 13 5 2 -1. + + <_> + 2 14 5 1 2. + + + + <_> + + <_> + 11 11 2 2 -1. + + <_> + 12 11 1 1 2. + + <_> + 11 12 1 1 2. + + + + <_> + + <_> + 7 11 2 2 -1. + + <_> + 7 11 1 1 2. + + <_> + 8 12 1 1 2. + + + + <_> + + <_> + 14 13 3 3 -1. + + <_> + 14 14 3 1 3. + + + + <_> + + <_> + 3 13 3 3 -1. + + <_> + 3 14 3 1 3. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 8 8 3 1 3. + + + + <_> + + <_> + 13 5 3 3 -1. + + <_> + 13 6 3 1 3. + + + + <_> + + <_> + 0 9 5 3 -1. + + <_> + 0 10 5 1 3. + + + + <_> + + <_> + 13 5 3 3 -1. + + <_> + 13 6 3 1 3. + + + + <_> + + <_> + 9 12 2 8 -1. + + <_> + 9 12 1 4 2. + + <_> + 10 16 1 4 2. + + + + <_> + + <_> + 11 7 2 2 -1. + + <_> + 12 7 1 1 2. + + <_> + 11 8 1 1 2. + + + + <_> + + <_> + 0 16 6 4 -1. + + <_> + 3 16 3 4 2. + + + + <_> + + <_> + 10 6 2 3 -1. + + <_> + 10 7 2 1 3. + + + + <_> + + <_> + 9 5 2 6 -1. + + <_> + 9 7 2 2 3. + + + + <_> + + <_> + 12 15 8 4 -1. + + <_> + 12 15 4 4 2. + + + + <_> + + <_> + 0 14 8 6 -1. + + <_> + 4 14 4 6 2. + + + + <_> + + <_> + 9 0 3 2 -1. + + <_> + 10 0 1 2 3. + + + + <_> + + <_> + 4 15 4 2 -1. + + <_> + 6 15 2 2 2. + + + + <_> + + <_> + 12 7 3 13 -1. + + <_> + 13 7 1 13 3. + + + + <_> + + <_> + 5 7 3 13 -1. + + <_> + 6 7 1 13 3. + + + + <_> + + <_> + 9 6 3 9 -1. + + <_> + 9 9 3 3 3. + + + + <_> + + <_> + 4 4 7 12 -1. + + <_> + 4 10 7 6 2. + + + + <_> + + <_> + 12 12 2 2 -1. + + <_> + 13 12 1 1 2. + + <_> + 12 13 1 1 2. + + + + <_> + + <_> + 6 12 2 2 -1. + + <_> + 6 12 1 1 2. + + <_> + 7 13 1 1 2. + + + + <_> + + <_> + 8 9 4 2 -1. + + <_> + 10 9 2 1 2. + + <_> + 8 10 2 1 2. + + + + <_> + + <_> + 3 6 2 2 -1. + + <_> + 3 6 1 1 2. + + <_> + 4 7 1 1 2. + + + + <_> + + <_> + 16 6 3 2 -1. + + <_> + 16 7 3 1 2. + + + + <_> + + <_> + 0 7 19 4 -1. + + <_> + 0 9 19 2 2. + + + + <_> + + <_> + 10 2 10 1 -1. + + <_> + 10 2 5 1 2. + + + + <_> + + <_> + 9 4 2 12 -1. + + <_> + 9 10 2 6 2. + + + + <_> + + <_> + 12 18 4 1 -1. + + <_> + 12 18 2 1 2. + + + + <_> + + <_> + 1 7 6 4 -1. + + <_> + 1 7 3 2 2. + + <_> + 4 9 3 2 2. + + + + <_> + + <_> + 12 0 6 13 -1. + + <_> + 14 0 2 13 3. + + + + <_> + + <_> + 2 0 6 13 -1. + + <_> + 4 0 2 13 3. + + + + <_> + + <_> + 10 5 8 8 -1. + + <_> + 10 9 8 4 2. + + + + <_> + + <_> + 8 3 2 5 -1. + + <_> + 9 3 1 5 2. + + + + <_> + + <_> + 8 4 9 1 -1. + + <_> + 11 4 3 1 3. + + + + <_> + + <_> + 3 4 9 1 -1. + + <_> + 6 4 3 1 3. + + + + <_> + + <_> + 1 0 18 10 -1. + + <_> + 7 0 6 10 3. + + + + <_> + + <_> + 7 17 5 3 -1. + + <_> + 7 18 5 1 3. + + + + <_> + + <_> + 7 11 6 1 -1. + + <_> + 9 11 2 1 3. + + + + <_> + + <_> + 2 2 3 2 -1. + + <_> + 2 3 3 1 2. + + + + <_> + + <_> + 8 12 4 2 -1. + + <_> + 8 13 4 1 2. + + + + <_> + + <_> + 6 10 3 6 -1. + + <_> + 6 13 3 3 2. + + + + <_> + + <_> + 11 4 2 4 -1. + + <_> + 11 4 1 4 2. + + + + <_> + + <_> + 7 4 2 4 -1. + + <_> + 8 4 1 4 2. + + + + <_> + + <_> + 9 6 2 4 -1. + + <_> + 9 6 1 4 2. + + + + <_> + + <_> + 6 13 8 3 -1. + + <_> + 6 14 8 1 3. + + + + <_> + + <_> + 9 15 3 4 -1. + + <_> + 10 15 1 4 3. + + + + <_> + + <_> + 9 2 2 17 -1. + + <_> + 10 2 1 17 2. + + + + <_> + + <_> + 7 0 6 1 -1. + + <_> + 9 0 2 1 3. + + + + <_> + + <_> + 8 15 3 4 -1. + + <_> + 9 15 1 4 3. + + + + <_> + + <_> + 7 13 7 3 -1. + + <_> + 7 14 7 1 3. + + + + <_> + + <_> + 8 16 3 3 -1. + + <_> + 9 16 1 3 3. + + + + <_> + + <_> + 6 2 8 10 -1. + + <_> + 6 7 8 5 2. + + + + <_> + + <_> + 2 5 8 8 -1. + + <_> + 2 9 8 4 2. + + + + <_> + + <_> + 14 16 2 2 -1. + + <_> + 14 17 2 1 2. + + + + <_> + + <_> + 4 16 2 2 -1. + + <_> + 4 17 2 1 2. + + + + <_> + + <_> + 10 11 4 6 -1. + + <_> + 10 14 4 3 2. + + + + <_> + + <_> + 6 11 4 6 -1. + + <_> + 6 14 4 3 2. + + + + <_> + + <_> + 10 14 1 3 -1. + + <_> + 10 15 1 1 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 10 0 4 6 -1. + + <_> + 12 0 2 3 2. + + <_> + 10 3 2 3 2. + + + + <_> + + <_> + 0 3 20 2 -1. + + <_> + 0 4 20 1 2. + + + + <_> + + <_> + 12 0 8 2 -1. + + <_> + 16 0 4 1 2. + + <_> + 12 1 4 1 2. + + + + <_> + + <_> + 2 12 10 8 -1. + + <_> + 2 16 10 4 2. + + + + <_> + + <_> + 17 7 2 10 -1. + + <_> + 18 7 1 5 2. + + <_> + 17 12 1 5 2. + + + + <_> + + <_> + 1 7 2 10 -1. + + <_> + 1 7 1 5 2. + + <_> + 2 12 1 5 2. + + + + <_> + + <_> + 15 10 3 6 -1. + + <_> + 15 12 3 2 3. + + + + <_> + + <_> + 4 4 6 2 -1. + + <_> + 6 4 2 2 3. + + + + <_> + + <_> + 0 5 20 6 -1. + + <_> + 0 7 20 2 3. + + + + <_> + + <_> + 0 0 8 2 -1. + + <_> + 0 0 4 1 2. + + <_> + 4 1 4 1 2. + + + + <_> + + <_> + 1 0 18 4 -1. + + <_> + 7 0 6 4 3. + + + + <_> + + <_> + 1 13 6 2 -1. + + <_> + 1 14 6 1 2. + + + + <_> + + <_> + 10 8 3 4 -1. + + <_> + 11 8 1 4 3. + + + + <_> + + <_> + 6 1 6 1 -1. + + <_> + 8 1 2 1 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 1 6 18 2 -1. + + <_> + 10 6 9 2 2. + + + + <_> + + <_> + 15 11 1 2 -1. + + <_> + 15 12 1 1 2. + + + + <_> + + <_> + 6 5 1 2 -1. + + <_> + 6 6 1 1 2. + + + + <_> + + <_> + 13 4 1 3 -1. + + <_> + 13 5 1 1 3. + + + + <_> + + <_> + 2 15 1 2 -1. + + <_> + 2 16 1 1 2. + + + + <_> + + <_> + 12 4 4 3 -1. + + <_> + 12 5 4 1 3. + + + + <_> + + <_> + 0 0 7 3 -1. + + <_> + 0 1 7 1 3. + + + + <_> + + <_> + 9 12 6 2 -1. + + <_> + 9 12 3 2 2. + + + + <_> + + <_> + 5 4 2 3 -1. + + <_> + 5 5 2 1 3. + + + + <_> + + <_> + 18 4 2 3 -1. + + <_> + 18 5 2 1 3. + + + + <_> + + <_> + 3 0 8 6 -1. + + <_> + 3 2 8 2 3. + + + + <_> + + <_> + 0 2 20 6 -1. + + <_> + 10 2 10 3 2. + + <_> + 0 5 10 3 2. + + + + <_> + + <_> + 4 7 2 4 -1. + + <_> + 5 7 1 4 2. + + + + <_> + + <_> + 3 10 15 2 -1. + + <_> + 8 10 5 2 3. + + + + <_> + + <_> + 3 0 12 11 -1. + + <_> + 9 0 6 11 2. + + + + <_> + + <_> + 13 0 2 6 -1. + + <_> + 13 0 1 6 2. + + + + <_> + + <_> + 0 19 2 1 -1. + + <_> + 1 19 1 1 2. + + + + <_> + + <_> + 16 10 4 10 -1. + + <_> + 18 10 2 5 2. + + <_> + 16 15 2 5 2. + + + + <_> + + <_> + 4 8 10 3 -1. + + <_> + 4 9 10 1 3. + + + + <_> + + <_> + 14 12 3 3 -1. + + <_> + 14 13 3 1 3. + + + + <_> + + <_> + 0 10 4 10 -1. + + <_> + 0 10 2 5 2. + + <_> + 2 15 2 5 2. + + + + <_> + + <_> + 18 3 2 6 -1. + + <_> + 18 5 2 2 3. + + + + <_> + + <_> + 6 6 1 3 -1. + + <_> + 6 7 1 1 3. + + + + <_> + + <_> + 7 7 7 2 -1. + + <_> + 7 8 7 1 2. + + + + <_> + + <_> + 0 3 2 6 -1. + + <_> + 0 5 2 2 3. + + + + <_> + + <_> + 11 1 3 1 -1. + + <_> + 12 1 1 1 3. + + + + <_> + + <_> + 5 0 2 6 -1. + + <_> + 6 0 1 6 2. + + + + <_> + + <_> + 1 1 18 14 -1. + + <_> + 7 1 6 14 3. + + + + <_> + + <_> + 4 6 8 3 -1. + + <_> + 8 6 4 3 2. + + + + <_> + + <_> + 9 12 6 2 -1. + + <_> + 9 12 3 2 2. + + + + <_> + + <_> + 5 12 6 2 -1. + + <_> + 8 12 3 2 2. + + + + <_> + + <_> + 10 7 3 5 -1. + + <_> + 11 7 1 5 3. + + + + <_> + + <_> + 7 7 3 5 -1. + + <_> + 8 7 1 5 3. + + + + <_> + + <_> + 13 0 3 10 -1. + + <_> + 14 0 1 10 3. + + + + <_> + + <_> + 4 11 3 2 -1. + + <_> + 4 12 3 1 2. + + + + <_> + + <_> + 17 3 3 6 -1. + + <_> + 18 3 1 6 3. + + + + <_> + + <_> + 1 8 18 10 -1. + + <_> + 1 13 18 5 2. + + + + <_> + + <_> + 13 0 3 10 -1. + + <_> + 14 0 1 10 3. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 16 3 3 7 -1. + + <_> + 17 3 1 7 3. + + + + <_> + + <_> + 4 0 3 10 -1. + + <_> + 5 0 1 10 3. + + + + <_> + + <_> + 16 3 3 7 -1. + + <_> + 17 3 1 7 3. + + + + <_> + + <_> + 0 9 1 2 -1. + + <_> + 0 10 1 1 2. + + + + <_> + + <_> + 18 1 2 10 -1. + + <_> + 18 1 1 10 2. + + + + <_> + + <_> + 0 1 2 10 -1. + + <_> + 1 1 1 10 2. + + + + <_> + + <_> + 10 16 3 4 -1. + + <_> + 11 16 1 4 3. + + + + <_> + + <_> + 2 8 3 3 -1. + + <_> + 3 8 1 3 3. + + + + <_> + + <_> + 11 0 2 6 -1. + + <_> + 12 0 1 3 2. + + <_> + 11 3 1 3 2. + + + + <_> + + <_> + 7 0 2 6 -1. + + <_> + 7 0 1 3 2. + + <_> + 8 3 1 3 2. + + + + <_> + + <_> + 16 3 3 7 -1. + + <_> + 17 3 1 7 3. + + + + <_> + + <_> + 1 3 3 7 -1. + + <_> + 2 3 1 7 3. + + + + <_> + + <_> + 14 1 6 16 -1. + + <_> + 16 1 2 16 3. + + + + <_> + + <_> + 0 1 6 16 -1. + + <_> + 2 1 2 16 3. + + + + <_> + + <_> + 2 0 16 8 -1. + + <_> + 10 0 8 4 2. + + <_> + 2 4 8 4 2. + + + + <_> + + <_> + 6 8 5 3 -1. + + <_> + 6 9 5 1 3. + + + + <_> + + <_> + 9 7 3 3 -1. + + <_> + 10 7 1 3 3. + + + + <_> + + <_> + 8 8 4 3 -1. + + <_> + 8 9 4 1 3. + + + + <_> + + <_> + 9 6 2 4 -1. + + <_> + 9 6 1 4 2. + + + + <_> + + <_> + 0 7 15 1 -1. + + <_> + 5 7 5 1 3. + + + + <_> + + <_> + 8 2 7 9 -1. + + <_> + 8 5 7 3 3. + + + + <_> + + <_> + 1 7 16 4 -1. + + <_> + 1 7 8 2 2. + + <_> + 9 9 8 2 2. + + + + <_> + + <_> + 6 12 8 2 -1. + + <_> + 6 13 8 1 2. + + + + <_> + + <_> + 8 11 3 3 -1. + + <_> + 8 12 3 1 3. + + + + <_> + + <_> + 4 5 14 10 -1. + + <_> + 11 5 7 5 2. + + <_> + 4 10 7 5 2. + + + + <_> + + <_> + 4 12 3 2 -1. + + <_> + 4 13 3 1 2. + + + + <_> + + <_> + 9 11 6 1 -1. + + <_> + 11 11 2 1 3. + + + + <_> + + <_> + 4 9 7 6 -1. + + <_> + 4 11 7 2 3. + + + + <_> + + <_> + 7 10 6 3 -1. + + <_> + 7 11 6 1 3. + + + + <_> + + <_> + 9 11 2 2 -1. + + <_> + 9 12 2 1 2. + + + + <_> + + <_> + 0 5 20 6 -1. + + <_> + 0 7 20 2 3. + + + + <_> + + <_> + 6 4 6 1 -1. + + <_> + 8 4 2 1 3. + + + + <_> + + <_> + 9 11 6 1 -1. + + <_> + 11 11 2 1 3. + + + + <_> + + <_> + 5 11 6 1 -1. + + <_> + 7 11 2 1 3. + + + + <_> + + <_> + 10 16 3 4 -1. + + <_> + 11 16 1 4 3. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 9 7 1 3 3. + + + + <_> + + <_> + 2 12 16 8 -1. + + <_> + 2 16 16 4 2. + + + + <_> + + <_> + 0 15 15 2 -1. + + <_> + 0 16 15 1 2. + + + + <_> + + <_> + 15 4 5 6 -1. + + <_> + 15 6 5 2 3. + + + + <_> + + <_> + 9 5 2 4 -1. + + <_> + 10 5 1 4 2. + + + + <_> + + <_> + 8 10 9 6 -1. + + <_> + 8 12 9 2 3. + + + + <_> + + <_> + 2 19 15 1 -1. + + <_> + 7 19 5 1 3. + + + + <_> + + <_> + 10 16 3 4 -1. + + <_> + 11 16 1 4 3. + + + + <_> + + <_> + 0 15 20 4 -1. + + <_> + 0 17 20 2 2. + + + + <_> + + <_> + 10 16 3 4 -1. + + <_> + 11 16 1 4 3. + + + + <_> + + <_> + 7 16 3 4 -1. + + <_> + 8 16 1 4 3. + + + + <_> + + <_> + 9 16 3 3 -1. + + <_> + 9 17 3 1 3. + + + + <_> + + <_> + 8 11 4 6 -1. + + <_> + 8 14 4 3 2. + + + + <_> + + <_> + 9 6 2 12 -1. + + <_> + 9 10 2 4 3. + + + + <_> + + <_> + 8 17 4 3 -1. + + <_> + 8 18 4 1 3. + + + + <_> + + <_> + 9 18 8 2 -1. + + <_> + 13 18 4 1 2. + + <_> + 9 19 4 1 2. + + + + <_> + + <_> + 1 18 8 2 -1. + + <_> + 1 19 8 1 2. + + + + <_> + + <_> + 13 5 6 15 -1. + + <_> + 15 5 2 15 3. + + + + <_> + + <_> + 9 8 2 2 -1. + + <_> + 9 9 2 1 2. + + + + <_> + + <_> + 9 5 2 3 -1. + + <_> + 9 5 1 3 2. + + + + <_> + + <_> + 1 5 6 15 -1. + + <_> + 3 5 2 15 3. + + + + <_> + + <_> + 4 1 14 8 -1. + + <_> + 11 1 7 4 2. + + <_> + 4 5 7 4 2. + + + + <_> + + <_> + 2 4 4 16 -1. + + <_> + 2 4 2 8 2. + + <_> + 4 12 2 8 2. + + + + <_> + + <_> + 12 4 3 12 -1. + + <_> + 12 10 3 6 2. + + + + <_> + + <_> + 4 5 10 12 -1. + + <_> + 4 5 5 6 2. + + <_> + 9 11 5 6 2. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 5 4 2 3 -1. + + <_> + 5 5 2 1 3. + + + + <_> + + <_> + 12 2 4 10 -1. + + <_> + 14 2 2 5 2. + + <_> + 12 7 2 5 2. + + + + <_> + + <_> + 6 4 7 3 -1. + + <_> + 6 5 7 1 3. + + + + <_> + + <_> + 2 0 18 2 -1. + + <_> + 11 0 9 1 2. + + <_> + 2 1 9 1 2. + + + + <_> + + <_> + 0 0 18 2 -1. + + <_> + 0 0 9 1 2. + + <_> + 9 1 9 1 2. + + + + <_> + + <_> + 13 13 4 6 -1. + + <_> + 15 13 2 3 2. + + <_> + 13 16 2 3 2. + + + + <_> + + <_> + 3 13 4 6 -1. + + <_> + 3 13 2 3 2. + + <_> + 5 16 2 3 2. + + + + <_> + + <_> + 10 12 2 6 -1. + + <_> + 10 15 2 3 2. + + + + <_> + + <_> + 5 9 10 10 -1. + + <_> + 5 9 5 5 2. + + <_> + 10 14 5 5 2. + + + + <_> + + <_> + 11 4 4 2 -1. + + <_> + 13 4 2 1 2. + + <_> + 11 5 2 1 2. + + + + <_> + + <_> + 7 12 6 8 -1. + + <_> + 10 12 3 8 2. + + + + <_> + + <_> + 12 2 4 10 -1. + + <_> + 14 2 2 5 2. + + <_> + 12 7 2 5 2. + + + + <_> + + <_> + 8 11 2 1 -1. + + <_> + 9 11 1 1 2. + + + + <_> + + <_> + 10 5 1 12 -1. + + <_> + 10 9 1 4 3. + + + + <_> + + <_> + 0 11 6 9 -1. + + <_> + 3 11 3 9 2. + + + + <_> + + <_> + 12 2 4 10 -1. + + <_> + 14 2 2 5 2. + + <_> + 12 7 2 5 2. + + + + <_> + + <_> + 4 2 4 10 -1. + + <_> + 4 2 2 5 2. + + <_> + 6 7 2 5 2. + + + + <_> + + <_> + 11 4 4 2 -1. + + <_> + 13 4 2 1 2. + + <_> + 11 5 2 1 2. + + + + <_> + + <_> + 0 14 6 3 -1. + + <_> + 0 15 6 1 3. + + + + <_> + + <_> + 11 4 4 2 -1. + + <_> + 13 4 2 1 2. + + <_> + 11 5 2 1 2. + + + + <_> + + <_> + 6 1 3 2 -1. + + <_> + 7 1 1 2 3. + + + + <_> + + <_> + 11 4 4 2 -1. + + <_> + 13 4 2 1 2. + + <_> + 11 5 2 1 2. + + + + <_> + + <_> + 5 4 4 2 -1. + + <_> + 5 4 2 1 2. + + <_> + 7 5 2 1 2. + + + + <_> + + <_> + 13 0 2 12 -1. + + <_> + 14 0 1 6 2. + + <_> + 13 6 1 6 2. + + + + <_> + + <_> + 6 0 3 10 -1. + + <_> + 7 0 1 10 3. + + + + <_> + + <_> + 3 0 17 8 -1. + + <_> + 3 4 17 4 2. + + + + <_> + + <_> + 0 4 20 4 -1. + + <_> + 0 6 20 2 2. + + + + <_> + + <_> + 0 3 8 2 -1. + + <_> + 4 3 4 2 2. + + + + <_> + + <_> + 8 11 4 3 -1. + + <_> + 8 12 4 1 3. + + + + <_> + + <_> + 5 7 6 4 -1. + + <_> + 5 7 3 2 2. + + <_> + 8 9 3 2 2. + + + + <_> + + <_> + 8 3 4 9 -1. + + <_> + 8 6 4 3 3. + + + + <_> + + <_> + 8 15 1 4 -1. + + <_> + 8 17 1 2 2. + + + + <_> + + <_> + 4 5 12 7 -1. + + <_> + 8 5 4 7 3. + + + + <_> + + <_> + 4 2 4 10 -1. + + <_> + 4 2 2 5 2. + + <_> + 6 7 2 5 2. + + + + <_> + + <_> + 3 0 17 2 -1. + + <_> + 3 1 17 1 2. + + + + <_> + + <_> + 2 2 16 15 -1. + + <_> + 2 7 16 5 3. + + + + <_> + + <_> + 15 2 5 2 -1. + + <_> + 15 3 5 1 2. + + + + <_> + + <_> + 9 3 2 2 -1. + + <_> + 10 3 1 2 2. + + + + <_> + + <_> + 4 5 16 15 -1. + + <_> + 4 10 16 5 3. + + + + <_> + + <_> + 7 13 5 6 -1. + + <_> + 7 16 5 3 2. + + + + <_> + + <_> + 10 7 3 2 -1. + + <_> + 11 7 1 2 3. + + + + <_> + + <_> + 8 3 3 1 -1. + + <_> + 9 3 1 1 3. + + + + <_> + + <_> + 9 16 3 3 -1. + + <_> + 9 17 3 1 3. + + + + <_> + + <_> + 0 2 5 2 -1. + + <_> + 0 3 5 1 2. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 1 7 12 1 -1. + + <_> + 5 7 4 1 3. + + + + <_> + + <_> + 7 5 6 14 -1. + + <_> + 7 12 6 7 2. + + + + <_> + + <_> + 0 0 8 10 -1. + + <_> + 0 0 4 5 2. + + <_> + 4 5 4 5 2. + + + + <_> + + <_> + 9 1 3 2 -1. + + <_> + 10 1 1 2 3. + + + + <_> + + <_> + 8 1 3 2 -1. + + <_> + 9 1 1 2 3. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 7 4 6 16 -1. + + <_> + 7 12 6 8 2. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 2 3 2 6 -1. + + <_> + 2 5 2 2 3. + + + + <_> + + <_> + 14 2 6 9 -1. + + <_> + 14 5 6 3 3. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 9 17 3 2 -1. + + <_> + 10 17 1 2 3. + + + + <_> + + <_> + 5 5 2 3 -1. + + <_> + 5 6 2 1 3. + + + + <_> + + <_> + 13 11 3 6 -1. + + <_> + 13 13 3 2 3. + + + + <_> + + <_> + 3 14 2 6 -1. + + <_> + 3 17 2 3 2. + + + + <_> + + <_> + 14 3 6 2 -1. + + <_> + 14 4 6 1 2. + + + + <_> + + <_> + 0 8 16 2 -1. + + <_> + 0 9 16 1 2. + + + + <_> + + <_> + 14 3 6 2 -1. + + <_> + 14 4 6 1 2. + + + + <_> + + <_> + 0 0 5 6 -1. + + <_> + 0 2 5 2 3. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 4 11 3 6 -1. + + <_> + 4 13 3 2 3. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 9 5 1 3 -1. + + <_> + 9 6 1 1 3. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 6 6 8 12 -1. + + <_> + 6 12 8 6 2. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 5 12 9 2 -1. + + <_> + 8 12 3 2 3. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 4 5 4 3 -1. + + <_> + 4 6 4 1 3. + + + + <_> + + <_> + 6 6 9 2 -1. + + <_> + 9 6 3 2 3. + + + + <_> + + <_> + 4 11 1 3 -1. + + <_> + 4 12 1 1 3. + + + + <_> + + <_> + 14 12 6 6 -1. + + <_> + 14 12 3 6 2. + + + + <_> + + <_> + 7 0 3 7 -1. + + <_> + 8 0 1 7 3. + + + + <_> + + <_> + 9 8 3 3 -1. + + <_> + 10 8 1 3 3. + + + + <_> + + <_> + 8 8 3 3 -1. + + <_> + 9 8 1 3 3. + + + + <_> + + <_> + 5 10 11 3 -1. + + <_> + 5 11 11 1 3. + + + + <_> + + <_> + 5 7 10 1 -1. + + <_> + 10 7 5 1 2. + + + + <_> + + <_> + 9 7 3 2 -1. + + <_> + 10 7 1 2 3. + + + + <_> + + <_> + 8 7 3 2 -1. + + <_> + 9 7 1 2 3. + + + + <_> + + <_> + 11 9 4 2 -1. + + <_> + 11 9 2 2 2. + + + + <_> + + <_> + 5 9 4 2 -1. + + <_> + 7 9 2 2 2. + + + + <_> + + <_> + 14 10 2 4 -1. + + <_> + 14 12 2 2 2. + + + + <_> + + <_> + 7 7 3 2 -1. + + <_> + 8 7 1 2 3. + + + + <_> + + <_> + 14 17 6 3 -1. + + <_> + 14 18 6 1 3. + + + + <_> + + <_> + 4 5 12 12 -1. + + <_> + 4 5 6 6 2. + + <_> + 10 11 6 6 2. + + + + <_> + + <_> + 6 9 8 8 -1. + + <_> + 10 9 4 4 2. + + <_> + 6 13 4 4 2. + + + + <_> + + <_> + 0 4 15 4 -1. + + <_> + 5 4 5 4 3. + + + + <_> + + <_> + 13 2 4 1 -1. + + <_> + 13 2 2 1 2. + + + + <_> + + <_> + 4 12 2 2 -1. + + <_> + 4 13 2 1 2. + + + + <_> + + <_> + 8 13 4 3 -1. + + <_> + 8 14 4 1 3. + + + + <_> + + <_> + 9 13 2 3 -1. + + <_> + 9 14 2 1 3. + + + + <_> + + <_> + 13 11 2 3 -1. + + <_> + 13 12 2 1 3. + + + + <_> + + <_> + 7 12 4 4 -1. + + <_> + 7 12 2 2 2. + + <_> + 9 14 2 2 2. + + + + <_> + + <_> + 10 11 2 2 -1. + + <_> + 11 11 1 1 2. + + <_> + 10 12 1 1 2. + + + + <_> + + <_> + 8 17 3 2 -1. + + <_> + 9 17 1 2 3. + + + + <_> + + <_> + 10 11 2 2 -1. + + <_> + 11 11 1 1 2. + + <_> + 10 12 1 1 2. + + + + <_> + + <_> + 0 17 6 3 -1. + + <_> + 0 18 6 1 3. + + + + <_> + + <_> + 10 11 2 2 -1. + + <_> + 11 11 1 1 2. + + <_> + 10 12 1 1 2. + + + + <_> + + <_> + 8 11 2 2 -1. + + <_> + 8 11 1 1 2. + + <_> + 9 12 1 1 2. + + + + <_> + + <_> + 12 5 8 4 -1. + + <_> + 12 5 4 4 2. + + + + <_> + + <_> + 0 5 8 4 -1. + + <_> + 4 5 4 4 2. + + + + <_> + + <_> + 13 2 4 1 -1. + + <_> + 13 2 2 1 2. + + + + <_> + + <_> + 3 2 4 1 -1. + + <_> + 5 2 2 1 2. + + + + <_> + + <_> + 10 0 4 2 -1. + + <_> + 12 0 2 1 2. + + <_> + 10 1 2 1 2. + + + + <_> + + <_> + 7 12 3 1 -1. + + <_> + 8 12 1 1 3. + + + + <_> + + <_> + 8 11 4 8 -1. + + <_> + 10 11 2 4 2. + + <_> + 8 15 2 4 2. + + + + <_> + + <_> + 9 9 2 2 -1. + + <_> + 9 10 2 1 2. + + + + <_> + + <_> + 3 18 15 2 -1. + + <_> + 3 19 15 1 2. + + + + <_> + + <_> + 2 6 2 12 -1. + + <_> + 2 6 1 6 2. + + <_> + 3 12 1 6 2. + + + + <_> + + <_> + 9 8 2 3 -1. + + <_> + 9 9 2 1 3. + + + + <_> + + <_> + 7 10 3 2 -1. + + <_> + 8 10 1 2 3. + + + + <_> + + <_> + 11 11 3 1 -1. + + <_> + 12 11 1 1 3. + + + + <_> + + <_> + 6 11 3 1 -1. + + <_> + 7 11 1 1 3. + + + + <_> + + <_> + 9 2 4 2 -1. + + <_> + 11 2 2 1 2. + + <_> + 9 3 2 1 2. + + + + <_> + + <_> + 4 12 2 3 -1. + + <_> + 4 13 2 1 3. + + + + <_> + + <_> + 2 1 18 3 -1. + + <_> + 8 1 6 3 3. + + + + <_> + + <_> + 5 1 4 14 -1. + + <_> + 7 1 2 14 2. + + + + <_> + + <_> + 8 16 12 3 -1. + + <_> + 8 16 6 3 2. + + + + <_> + + <_> + 1 17 18 3 -1. + + <_> + 7 17 6 3 3. + + + + <_> + + <_> + 9 14 2 6 -1. + + <_> + 9 17 2 3 2. + + + + <_> + + <_> + 9 12 1 8 -1. + + <_> + 9 16 1 4 2. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 9 6 2 12 -1. + + <_> + 9 10 2 4 3. + + + + <_> + + <_> + 12 9 3 3 -1. + + <_> + 12 10 3 1 3. + + + + <_> + + <_> + 0 1 4 8 -1. + + <_> + 2 1 2 8 2. + + + + <_> + + <_> + 9 1 6 2 -1. + + <_> + 12 1 3 1 2. + + <_> + 9 2 3 1 2. + + + + <_> + + <_> + 1 3 12 14 -1. + + <_> + 1 10 12 7 2. + + + + <_> + + <_> + 8 12 4 2 -1. + + <_> + 10 12 2 1 2. + + <_> + 8 13 2 1 2. + + + + <_> + + <_> + 1 9 10 2 -1. + + <_> + 1 9 5 1 2. + + <_> + 6 10 5 1 2. + + + + <_> + + <_> + 8 15 4 3 -1. + + <_> + 8 16 4 1 3. + + + + <_> + + <_> + 6 8 8 3 -1. + + <_> + 6 9 8 1 3. + + + + <_> + + <_> + 9 15 5 3 -1. + + <_> + 9 16 5 1 3. + + + + <_> + + <_> + 8 7 4 3 -1. + + <_> + 8 8 4 1 3. + + + + <_> + + <_> + 7 7 6 2 -1. + + <_> + 7 8 6 1 2. + + + + <_> + + <_> + 5 7 8 2 -1. + + <_> + 5 7 4 1 2. + + <_> + 9 8 4 1 2. + + + + <_> + + <_> + 12 9 3 3 -1. + + <_> + 12 10 3 1 3. + + + + <_> + + <_> + 4 7 4 2 -1. + + <_> + 4 8 4 1 2. + + + + <_> + + <_> + 14 2 6 9 -1. + + <_> + 14 5 6 3 3. + + + + <_> + + <_> + 4 9 3 3 -1. + + <_> + 5 9 1 3 3. + + + + <_> + + <_> + 12 9 3 3 -1. + + <_> + 12 10 3 1 3. + + + + <_> + + <_> + 0 2 6 9 -1. + + <_> + 0 5 6 3 3. + + + + <_> + + <_> + 17 3 3 6 -1. + + <_> + 18 3 1 6 3. + + + + <_> + + <_> + 0 3 3 6 -1. + + <_> + 1 3 1 6 3. + + + + <_> + + <_> + 17 14 1 2 -1. + + <_> + 17 15 1 1 2. + + + + <_> + + <_> + 4 9 4 3 -1. + + <_> + 6 9 2 3 2. + + + + <_> + + <_> + 12 9 3 3 -1. + + <_> + 12 10 3 1 3. + + + + <_> + + <_> + 5 9 3 3 -1. + + <_> + 5 10 3 1 3. + + + + <_> + + <_> + 9 5 6 8 -1. + + <_> + 12 5 3 4 2. + + <_> + 9 9 3 4 2. + + + + <_> + + <_> + 5 5 6 8 -1. + + <_> + 5 5 3 4 2. + + <_> + 8 9 3 4 2. + + + + <_> + + <_> + 16 1 4 6 -1. + + <_> + 16 4 4 3 2. + + + + <_> + + <_> + 1 0 6 20 -1. + + <_> + 3 0 2 20 3. + + + + <_> + + <_> + 12 11 3 2 -1. + + <_> + 13 11 1 2 3. + + + + <_> + + <_> + 5 11 3 2 -1. + + <_> + 6 11 1 2 3. + + + + <_> + + <_> + 9 4 6 1 -1. + + <_> + 11 4 2 1 3. + + + + <_> + + <_> + 0 0 8 3 -1. + + <_> + 4 0 4 3 2. + + + + <_> + + <_> + 15 0 2 5 -1. + + <_> + 15 0 1 5 2. + + + + <_> + + <_> + 4 1 3 2 -1. + + <_> + 5 1 1 2 3. + + + + <_> + + <_> + 7 0 6 15 -1. + + <_> + 9 0 2 15 3. + + + + <_> + + <_> + 6 11 3 1 -1. + + <_> + 7 11 1 1 3. + + + + <_> + + <_> + 12 0 3 4 -1. + + <_> + 13 0 1 4 3. + + + + <_> + + <_> + 5 4 6 1 -1. + + <_> + 7 4 2 1 3. + + + + <_> + + <_> + 12 7 3 2 -1. + + <_> + 12 8 3 1 2. + + + + <_> + + <_> + 0 1 4 6 -1. + + <_> + 0 4 4 3 2. + + + + <_> + + <_> + 12 7 3 2 -1. + + <_> + 12 8 3 1 2. + + + + <_> + + <_> + 2 16 3 3 -1. + + <_> + 2 17 3 1 3. + + + + <_> + + <_> + 13 8 6 10 -1. + + <_> + 16 8 3 5 2. + + <_> + 13 13 3 5 2. + + + + <_> + + <_> + 0 9 5 2 -1. + + <_> + 0 10 5 1 2. + + + + <_> + + <_> + 12 11 2 2 -1. + + <_> + 13 11 1 1 2. + + <_> + 12 12 1 1 2. + + + + <_> + + <_> + 3 15 3 3 -1. + + <_> + 3 16 3 1 3. + + + + <_> + + <_> + 12 7 3 2 -1. + + <_> + 12 8 3 1 2. + + + + <_> + + <_> + 5 7 3 2 -1. + + <_> + 5 8 3 1 2. + + + + <_> + + <_> + 9 5 9 9 -1. + + <_> + 9 8 9 3 3. + + + + <_> + + <_> + 5 0 3 7 -1. + + <_> + 6 0 1 7 3. + + + + <_> + + <_> + 5 2 12 5 -1. + + <_> + 9 2 4 5 3. + + + + <_> + + <_> + 6 11 2 2 -1. + + <_> + 6 11 1 1 2. + + <_> + 7 12 1 1 2. + + + + <_> + + <_> + 15 15 3 2 -1. + + <_> + 15 16 3 1 2. + + + + <_> + + <_> + 2 15 3 2 -1. + + <_> + 2 16 3 1 2. + + + + <_> + + <_> + 14 12 6 8 -1. + + <_> + 17 12 3 4 2. + + <_> + 14 16 3 4 2. + + + + <_> + + <_> + 2 8 15 6 -1. + + <_> + 7 8 5 6 3. + + + + <_> + + <_> + 2 2 18 17 -1. + + <_> + 8 2 6 17 3. + + + + <_> + + <_> + 5 1 4 1 -1. + + <_> + 7 1 2 1 2. + + + + <_> + + <_> + 5 2 12 5 -1. + + <_> + 9 2 4 5 3. + + + + <_> + + <_> + 3 2 12 5 -1. + + <_> + 7 2 4 5 3. + + + + <_> + + <_> + 4 9 12 4 -1. + + <_> + 10 9 6 2 2. + + <_> + 4 11 6 2 2. + + + + <_> + + <_> + 5 15 6 2 -1. + + <_> + 5 15 3 1 2. + + <_> + 8 16 3 1 2. + + + + <_> + + <_> + 10 14 2 3 -1. + + <_> + 10 15 2 1 3. + + + + <_> + + <_> + 0 13 20 2 -1. + + <_> + 0 13 10 1 2. + + <_> + 10 14 10 1 2. + + + + <_> + + <_> + 4 9 12 8 -1. + + <_> + 10 9 6 4 2. + + <_> + 4 13 6 4 2. + + + + <_> + + <_> + 8 13 3 6 -1. + + <_> + 8 16 3 3 2. + + + + <_> + + <_> + 10 12 2 2 -1. + + <_> + 10 13 2 1 2. + + + + <_> + + <_> + 9 12 2 2 -1. + + <_> + 9 12 1 1 2. + + <_> + 10 13 1 1 2. + + + + <_> + + <_> + 4 11 14 4 -1. + + <_> + 11 11 7 2 2. + + <_> + 4 13 7 2 2. + + + + <_> + + <_> + 8 5 4 2 -1. + + <_> + 8 6 4 1 2. + + + + <_> + + <_> + 10 10 6 3 -1. + + <_> + 12 10 2 3 3. + + + + <_> + + <_> + 2 14 1 2 -1. + + <_> + 2 15 1 1 2. + + + + <_> + + <_> + 13 8 6 12 -1. + + <_> + 16 8 3 6 2. + + <_> + 13 14 3 6 2. + + + + <_> + + <_> + 1 8 6 12 -1. + + <_> + 1 8 3 6 2. + + <_> + 4 14 3 6 2. + + + + <_> + + <_> + 10 0 6 10 -1. + + <_> + 12 0 2 10 3. + + + + <_> + + <_> + 5 11 8 4 -1. + + <_> + 5 11 4 2 2. + + <_> + 9 13 4 2 2. + + + + <_> + + <_> + 10 16 8 4 -1. + + <_> + 14 16 4 2 2. + + <_> + 10 18 4 2 2. + + + + <_> + + <_> + 7 7 6 6 -1. + + <_> + 9 7 2 6 3. + + + + <_> + + <_> + 10 2 4 10 -1. + + <_> + 10 2 2 10 2. + + + + <_> + + <_> + 6 1 4 9 -1. + + <_> + 8 1 2 9 2. + + + + <_> + + <_> + 12 19 2 1 -1. + + <_> + 12 19 1 1 2. + + + + <_> + + <_> + 1 2 4 9 -1. + + <_> + 3 2 2 9 2. + + + + <_> + + <_> + 7 5 6 4 -1. + + <_> + 9 5 2 4 3. + + + + <_> + + <_> + 9 4 2 4 -1. + + <_> + 9 6 2 2 2. + + + + <_> + + <_> + 14 5 2 8 -1. + + <_> + 14 9 2 4 2. + + + + <_> + + <_> + 7 6 5 12 -1. + + <_> + 7 12 5 6 2. + + + + <_> + + <_> + 14 6 2 6 -1. + + <_> + 14 9 2 3 2. + + + + <_> + + <_> + 4 6 2 6 -1. + + <_> + 4 9 2 3 2. + + + + <_> + + <_> + 8 15 10 4 -1. + + <_> + 13 15 5 2 2. + + <_> + 8 17 5 2 2. + + + + <_> + + <_> + 6 18 2 2 -1. + + <_> + 7 18 1 2 2. + + + + <_> + + <_> + 11 3 6 2 -1. + + <_> + 11 4 6 1 2. + + + + <_> + + <_> + 2 0 16 6 -1. + + <_> + 2 2 16 2 3. + + + + <_> + + <_> + 11 3 6 2 -1. + + <_> + 11 4 6 1 2. + + + + <_> + + <_> + 4 11 10 3 -1. + + <_> + 4 12 10 1 3. + + + + <_> + + <_> + 11 3 6 2 -1. + + <_> + 11 4 6 1 2. + + + + <_> + + <_> + 3 3 6 2 -1. + + <_> + 3 4 6 1 2. + + + + <_> + + <_> + 16 0 4 7 -1. + + <_> + 16 0 2 7 2. + + + + <_> + + <_> + 0 14 9 6 -1. + + <_> + 0 16 9 2 3. + + + + <_> + + <_> + 9 16 3 3 -1. + + <_> + 9 17 3 1 3. + + + + <_> + + <_> + 4 6 6 2 -1. + + <_> + 6 6 2 2 3. + + + + <_> + + <_> + 15 11 1 3 -1. + + <_> + 15 12 1 1 3. + + + + <_> + + <_> + 5 5 2 3 -1. + + <_> + 5 6 2 1 3. + + + + <_> + + <_> + 10 9 2 2 -1. + + <_> + 10 10 2 1 2. + + + + <_> + + <_> + 3 1 4 3 -1. + + <_> + 5 1 2 3 2. + + + + <_> + + <_> + 16 0 4 7 -1. + + <_> + 16 0 2 7 2. + + + + <_> + + <_> + 0 0 20 1 -1. + + <_> + 10 0 10 1 2. + + + + <_> + + <_> + 15 11 1 3 -1. + + <_> + 15 12 1 1 3. + + + + <_> + + <_> + 0 4 3 4 -1. + + <_> + 1 4 1 4 3. + + + + <_> + + <_> + 16 3 3 6 -1. + + <_> + 16 5 3 2 3. + + + + <_> + + <_> + 1 3 3 6 -1. + + <_> + 1 5 3 2 3. + + + + <_> + + <_> + 6 2 12 6 -1. + + <_> + 12 2 6 3 2. + + <_> + 6 5 6 3 2. + + + + <_> + + <_> + 8 10 4 3 -1. + + <_> + 8 11 4 1 3. + + + + <_> + + <_> + 4 2 14 6 -1. + + <_> + 11 2 7 3 2. + + <_> + 4 5 7 3 2. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 15 13 2 3 -1. + + <_> + 15 14 2 1 3. + + + + <_> + + <_> + 8 12 4 3 -1. + + <_> + 8 13 4 1 3. + + + + <_> + + <_> + 15 11 1 3 -1. + + <_> + 15 12 1 1 3. + + + + <_> + + <_> + 7 13 5 2 -1. + + <_> + 7 14 5 1 2. + + + + <_> + + <_> + 7 12 6 3 -1. + + <_> + 7 13 6 1 3. + + + + <_> + + <_> + 5 11 4 4 -1. + + <_> + 5 13 4 2 2. + + + + <_> + + <_> + 11 4 3 3 -1. + + <_> + 12 4 1 3 3. + + + + <_> + + <_> + 6 4 3 3 -1. + + <_> + 7 4 1 3 3. + + + + <_> + + <_> + 16 5 3 6 -1. + + <_> + 17 5 1 6 3. + + + + <_> + + <_> + 3 6 12 7 -1. + + <_> + 7 6 4 7 3. + + + + <_> + + <_> + 16 5 3 6 -1. + + <_> + 17 5 1 6 3. + + + + <_> + + <_> + 3 13 2 3 -1. + + <_> + 3 14 2 1 3. + + + + <_> + + <_> + 16 5 3 6 -1. + + <_> + 17 5 1 6 3. + + + + <_> + + <_> + 1 5 3 6 -1. + + <_> + 2 5 1 6 3. + + + + <_> + + <_> + 1 9 18 1 -1. + + <_> + 7 9 6 1 3. + + + + <_> + + <_> + 0 9 8 7 -1. + + <_> + 4 9 4 7 2. + + + + <_> + + <_> + 12 11 8 2 -1. + + <_> + 12 12 8 1 2. + + + + <_> + + <_> + 0 11 8 2 -1. + + <_> + 0 12 8 1 2. + + + + <_> + + <_> + 9 13 2 3 -1. + + <_> + 9 14 2 1 3. + + + + <_> + + <_> + 4 10 12 4 -1. + + <_> + 4 10 6 2 2. + + <_> + 10 12 6 2 2. + + + + <_> + + <_> + 9 3 3 7 -1. + + <_> + 10 3 1 7 3. + + + + <_> + + <_> + 7 2 3 5 -1. + + <_> + 8 2 1 5 3. + + + + <_> + + <_> + 9 12 4 6 -1. + + <_> + 11 12 2 3 2. + + <_> + 9 15 2 3 2. + + + + <_> + + <_> + 8 7 3 6 -1. + + <_> + 9 7 1 6 3. + + + + <_> + + <_> + 15 4 4 2 -1. + + <_> + 15 5 4 1 2. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 9 7 1 3 3. + + + + <_> + + <_> + 14 2 6 4 -1. + + <_> + 14 4 6 2 2. + + + + <_> + + <_> + 7 16 6 1 -1. + + <_> + 9 16 2 1 3. + + + + <_> + + <_> + 15 13 2 3 -1. + + <_> + 15 14 2 1 3. + + + + <_> + + <_> + 8 7 3 10 -1. + + <_> + 9 7 1 10 3. + + + + <_> + + <_> + 11 10 2 6 -1. + + <_> + 11 12 2 2 3. + + + + <_> + + <_> + 6 10 4 1 -1. + + <_> + 8 10 2 1 2. + + + + <_> + + <_> + 10 9 2 2 -1. + + <_> + 10 10 2 1 2. + + + + <_> + + <_> + 8 9 2 2 -1. + + <_> + 8 10 2 1 2. + + + + <_> + + <_> + 12 7 2 2 -1. + + <_> + 13 7 1 1 2. + + <_> + 12 8 1 1 2. + + + + <_> + + <_> + 5 7 2 2 -1. + + <_> + 5 7 1 1 2. + + <_> + 6 8 1 1 2. + + + + <_> + + <_> + 13 0 3 14 -1. + + <_> + 14 0 1 14 3. + + + + <_> + + <_> + 4 0 3 14 -1. + + <_> + 5 0 1 14 3. + + + + <_> + + <_> + 13 4 3 14 -1. + + <_> + 14 4 1 14 3. + + + + <_> + + <_> + 9 14 2 3 -1. + + <_> + 9 15 2 1 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 4 2 3 16 -1. + + <_> + 5 2 1 16 3. + + + + <_> + + <_> + 7 2 8 10 -1. + + <_> + 7 7 8 5 2. + + + + <_> + + <_> + 6 14 7 3 -1. + + <_> + 6 15 7 1 3. + + + + <_> + + <_> + 9 2 10 12 -1. + + <_> + 14 2 5 6 2. + + <_> + 9 8 5 6 2. + + + + <_> + + <_> + 6 7 8 2 -1. + + <_> + 6 8 8 1 2. + + + + <_> + + <_> + 8 13 4 6 -1. + + <_> + 8 16 4 3 2. + + + + <_> + + <_> + 6 6 1 3 -1. + + <_> + 6 7 1 1 3. + + + + <_> + + <_> + 16 2 4 6 -1. + + <_> + 16 4 4 2 3. + + + + <_> + + <_> + 6 6 4 2 -1. + + <_> + 6 6 2 1 2. + + <_> + 8 7 2 1 2. + + + + <_> + + <_> + 16 2 4 6 -1. + + <_> + 16 4 4 2 3. + + + + <_> + + <_> + 0 2 4 6 -1. + + <_> + 0 4 4 2 3. + + + + <_> + + <_> + 9 6 2 6 -1. + + <_> + 9 6 1 6 2. + + + + <_> + + <_> + 3 4 6 10 -1. + + <_> + 3 9 6 5 2. + + + + <_> + + <_> + 9 5 2 6 -1. + + <_> + 9 5 1 6 2. + + + + <_> + + <_> + 3 13 2 3 -1. + + <_> + 3 14 2 1 3. + + + + <_> + + <_> + 13 13 3 2 -1. + + <_> + 13 14 3 1 2. + + + + <_> + + <_> + 2 16 10 4 -1. + + <_> + 2 16 5 2 2. + + <_> + 7 18 5 2 2. + + + + <_> + + <_> + 5 6 10 6 -1. + + <_> + 10 6 5 3 2. + + <_> + 5 9 5 3 2. + + + + <_> + + <_> + 7 14 1 3 -1. + + <_> + 7 15 1 1 3. + + + + <_> + + <_> + 14 16 6 3 -1. + + <_> + 14 17 6 1 3. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 7 4 10 3 -1. + + <_> + 7 5 10 1 3. + + + + <_> + + <_> + 0 4 5 4 -1. + + <_> + 0 6 5 2 2. + + + + <_> + + <_> + 13 11 3 9 -1. + + <_> + 13 14 3 3 3. + + + + <_> + + <_> + 4 11 3 9 -1. + + <_> + 4 14 3 3 3. + + + + <_> + + <_> + 9 7 2 1 -1. + + <_> + 9 7 1 1 2. + + + + <_> + + <_> + 5 0 6 17 -1. + + <_> + 7 0 2 17 3. + + + + <_> + + <_> + 10 3 6 3 -1. + + <_> + 10 3 3 3 2. + + + + <_> + + <_> + 2 2 15 4 -1. + + <_> + 7 2 5 4 3. + + + + <_> + + <_> + 8 2 8 2 -1. + + <_> + 12 2 4 1 2. + + <_> + 8 3 4 1 2. + + + + <_> + + <_> + 8 1 3 6 -1. + + <_> + 8 3 3 2 3. + + + + <_> + + <_> + 9 17 2 2 -1. + + <_> + 9 18 2 1 2. + + + + <_> + + <_> + 0 0 2 14 -1. + + <_> + 1 0 1 14 2. + + + + <_> + + <_> + 12 0 7 3 -1. + + <_> + 12 1 7 1 3. + + + + <_> + + <_> + 1 14 1 2 -1. + + <_> + 1 15 1 1 2. + + + + <_> + + <_> + 14 12 2 8 -1. + + <_> + 15 12 1 4 2. + + <_> + 14 16 1 4 2. + + + + <_> + + <_> + 1 0 7 3 -1. + + <_> + 1 1 7 1 3. + + + + <_> + + <_> + 14 12 2 8 -1. + + <_> + 15 12 1 4 2. + + <_> + 14 16 1 4 2. + + + + <_> + + <_> + 6 0 8 12 -1. + + <_> + 6 0 4 6 2. + + <_> + 10 6 4 6 2. + + + + <_> + + <_> + 6 1 8 9 -1. + + <_> + 6 4 8 3 3. + + + + <_> + + <_> + 5 2 2 2 -1. + + <_> + 5 3 2 1 2. + + + + <_> + + <_> + 13 14 6 6 -1. + + <_> + 16 14 3 3 2. + + <_> + 13 17 3 3 2. + + + + <_> + + <_> + 0 17 20 2 -1. + + <_> + 0 17 10 1 2. + + <_> + 10 18 10 1 2. + + + + <_> + + <_> + 10 3 2 6 -1. + + <_> + 11 3 1 3 2. + + <_> + 10 6 1 3 2. + + + + <_> + + <_> + 5 12 6 2 -1. + + <_> + 8 12 3 2 2. + + + + <_> + + <_> + 10 7 6 13 -1. + + <_> + 10 7 3 13 2. + + + + <_> + + <_> + 5 15 10 5 -1. + + <_> + 10 15 5 5 2. + + + + <_> + + <_> + 10 4 4 10 -1. + + <_> + 10 4 2 10 2. + + + + <_> + + <_> + 5 7 2 1 -1. + + <_> + 6 7 1 1 2. + + + + <_> + + <_> + 10 3 6 7 -1. + + <_> + 10 3 3 7 2. + + + + <_> + + <_> + 4 3 6 7 -1. + + <_> + 7 3 3 7 2. + + + + <_> + + <_> + 1 7 18 5 -1. + + <_> + 7 7 6 5 3. + + + + <_> + + <_> + 3 17 4 3 -1. + + <_> + 5 17 2 3 2. + + + + <_> + + <_> + 8 14 12 6 -1. + + <_> + 14 14 6 3 2. + + <_> + 8 17 6 3 2. + + + + <_> + + <_> + 0 13 20 4 -1. + + <_> + 0 13 10 2 2. + + <_> + 10 15 10 2 2. + + + + <_> + + <_> + 4 5 14 2 -1. + + <_> + 11 5 7 1 2. + + <_> + 4 6 7 1 2. + + + + <_> + + <_> + 1 2 10 12 -1. + + <_> + 1 2 5 6 2. + + <_> + 6 8 5 6 2. + + + + <_> + + <_> + 6 1 14 3 -1. + + <_> + 6 2 14 1 3. + + + + <_> + + <_> + 8 16 2 3 -1. + + <_> + 8 17 2 1 3. + + + + <_> + + <_> + 9 17 3 2 -1. + + <_> + 10 17 1 2 3. + + + + <_> + + <_> + 5 15 4 2 -1. + + <_> + 5 15 2 1 2. + + <_> + 7 16 2 1 2. + + + + <_> + + <_> + 10 15 1 3 -1. + + <_> + 10 16 1 1 3. + + + + <_> + + <_> + 8 16 4 4 -1. + + <_> + 8 16 2 2 2. + + <_> + 10 18 2 2 2. + + + + <_> + + <_> + 6 11 8 6 -1. + + <_> + 6 14 8 3 2. + + + + <_> + + <_> + 2 13 5 2 -1. + + <_> + 2 14 5 1 2. + + + + <_> + + <_> + 13 14 6 6 -1. + + <_> + 16 14 3 3 2. + + <_> + 13 17 3 3 2. + + + + <_> + + <_> + 1 9 18 4 -1. + + <_> + 7 9 6 4 3. + + + + <_> + + <_> + 13 14 6 6 -1. + + <_> + 16 14 3 3 2. + + <_> + 13 17 3 3 2. + + + + <_> + + <_> + 0 2 1 6 -1. + + <_> + 0 4 1 2 3. + + + + <_> + + <_> + 5 0 15 20 -1. + + <_> + 5 10 15 10 2. + + + + <_> + + <_> + 1 14 6 6 -1. + + <_> + 1 14 3 3 2. + + <_> + 4 17 3 3 2. + + + + <_> + + <_> + 8 14 4 6 -1. + + <_> + 10 14 2 3 2. + + <_> + 8 17 2 3 2. + + + + <_> + + <_> + 7 11 2 1 -1. + + <_> + 8 11 1 1 2. + + + + <_> + + <_> + 9 17 3 2 -1. + + <_> + 10 17 1 2 3. + + + + <_> + + <_> + 8 17 3 2 -1. + + <_> + 9 17 1 2 3. + + + + <_> + + <_> + 12 14 4 6 -1. + + <_> + 14 14 2 3 2. + + <_> + 12 17 2 3 2. + + + + <_> + + <_> + 4 14 4 6 -1. + + <_> + 4 14 2 3 2. + + <_> + 6 17 2 3 2. + + + + <_> + + <_> + 13 14 2 6 -1. + + <_> + 14 14 1 3 2. + + <_> + 13 17 1 3 2. + + + + <_> + + <_> + 5 14 2 6 -1. + + <_> + 5 14 1 3 2. + + <_> + 6 17 1 3 2. + + + + <_> + + <_> + 7 0 6 12 -1. + + <_> + 7 4 6 4 3. + + + + <_> + + <_> + 0 7 12 2 -1. + + <_> + 4 7 4 2 3. + + + + <_> + + <_> + 10 3 3 13 -1. + + <_> + 11 3 1 13 3. + + + + <_> + + <_> + 7 3 3 13 -1. + + <_> + 8 3 1 13 3. + + + + <_> + + <_> + 10 8 6 3 -1. + + <_> + 10 9 6 1 3. + + + + <_> + + <_> + 3 11 3 2 -1. + + <_> + 4 11 1 2 3. + + + + <_> + + <_> + 13 12 6 8 -1. + + <_> + 16 12 3 4 2. + + <_> + 13 16 3 4 2. + + + + <_> + + <_> + 7 6 6 5 -1. + + <_> + 9 6 2 5 3. + + + + <_> + + <_> + 17 11 2 7 -1. + + <_> + 17 11 1 7 2. + + + + <_> + + <_> + 3 13 8 2 -1. + + <_> + 7 13 4 2 2. + + + + <_> + + <_> + 6 9 8 3 -1. + + <_> + 6 10 8 1 3. + + + + <_> + + <_> + 4 3 4 3 -1. + + <_> + 4 4 4 1 3. + + + + <_> + + <_> + 11 3 4 3 -1. + + <_> + 11 4 4 1 3. + + + + <_> + + <_> + 1 4 17 12 -1. + + <_> + 1 8 17 4 3. + + + + <_> + + <_> + 11 3 4 3 -1. + + <_> + 11 4 4 1 3. + + + + <_> + + <_> + 4 8 6 3 -1. + + <_> + 4 9 6 1 3. + + + + <_> + + <_> + 12 3 5 3 -1. + + <_> + 12 4 5 1 3. + + + + <_> + + <_> + 1 11 2 7 -1. + + <_> + 2 11 1 7 2. + + + + <_> + + <_> + 15 12 2 8 -1. + + <_> + 16 12 1 4 2. + + <_> + 15 16 1 4 2. + + + + <_> + + <_> + 4 8 11 3 -1. + + <_> + 4 9 11 1 3. + + + + <_> + + <_> + 9 13 6 2 -1. + + <_> + 12 13 3 1 2. + + <_> + 9 14 3 1 2. + + + + <_> + + <_> + 6 13 4 3 -1. + + <_> + 6 14 4 1 3. + + + + <_> + + <_> + 9 12 3 3 -1. + + <_> + 10 12 1 3 3. + + + + <_> + + <_> + 5 3 3 3 -1. + + <_> + 5 4 3 1 3. + + + + <_> + + <_> + 9 4 2 3 -1. + + <_> + 9 5 2 1 3. + + + + <_> + + <_> + 0 2 16 3 -1. + + <_> + 0 3 16 1 3. + + + + <_> + + <_> + 15 12 2 8 -1. + + <_> + 16 12 1 4 2. + + <_> + 15 16 1 4 2. + + + + <_> + + <_> + 3 12 2 8 -1. + + <_> + 3 12 1 4 2. + + <_> + 4 16 1 4 2. + + + + <_> + + <_> + 14 13 3 6 -1. + + <_> + 14 15 3 2 3. + + + + <_> + + <_> + 3 13 3 6 -1. + + <_> + 3 15 3 2 3. + + + + <_> + + <_> + 6 5 10 2 -1. + + <_> + 11 5 5 1 2. + + <_> + 6 6 5 1 2. + + + + <_> + + <_> + 2 14 14 6 -1. + + <_> + 2 17 14 3 2. + + + + <_> + + <_> + 10 14 1 3 -1. + + <_> + 10 15 1 1 3. + + + + <_> + + <_> + 4 16 2 2 -1. + + <_> + 4 16 1 1 2. + + <_> + 5 17 1 1 2. + + + + <_> + + <_> + 10 6 2 3 -1. + + <_> + 10 7 2 1 3. + + + + <_> + + <_> + 0 17 20 2 -1. + + <_> + 0 17 10 1 2. + + <_> + 10 18 10 1 2. + + + + <_> + + <_> + 13 6 1 3 -1. + + <_> + 13 7 1 1 3. + + + + <_> + + <_> + 8 13 3 2 -1. + + <_> + 9 13 1 2 3. + + + + <_> + + <_> + 12 2 3 3 -1. + + <_> + 13 2 1 3 3. + + + + <_> + + <_> + 3 18 2 2 -1. + + <_> + 3 18 1 1 2. + + <_> + 4 19 1 1 2. + + + + <_> + + <_> + 9 16 3 4 -1. + + <_> + 10 16 1 4 3. + + + + <_> + + <_> + 6 6 1 3 -1. + + <_> + 6 7 1 1 3. + + + + <_> + + <_> + 13 1 5 2 -1. + + <_> + 13 2 5 1 2. + + + + <_> + + <_> + 7 14 6 2 -1. + + <_> + 7 14 3 1 2. + + <_> + 10 15 3 1 2. + + + + <_> + + <_> + 11 3 3 4 -1. + + <_> + 12 3 1 4 3. + + + + <_> + + <_> + 1 13 12 6 -1. + + <_> + 5 13 4 6 3. + + + + <_> + + <_> + 14 11 5 2 -1. + + <_> + 14 12 5 1 2. + + + + <_> + + <_> + 2 15 14 4 -1. + + <_> + 2 15 7 2 2. + + <_> + 9 17 7 2 2. + + + + <_> + + <_> + 3 7 14 2 -1. + + <_> + 10 7 7 1 2. + + <_> + 3 8 7 1 2. + + + + <_> + + <_> + 1 11 4 2 -1. + + <_> + 1 12 4 1 2. + + + + <_> + + <_> + 14 0 6 14 -1. + + <_> + 16 0 2 14 3. + + + + <_> + + <_> + 4 11 1 3 -1. + + <_> + 4 12 1 1 3. + + + + <_> + + <_> + 14 0 6 14 -1. + + <_> + 16 0 2 14 3. + + + + <_> + + <_> + 1 10 3 7 -1. + + <_> + 2 10 1 7 3. + + + + <_> + + <_> + 8 12 9 2 -1. + + <_> + 8 13 9 1 2. + + + + <_> + + <_> + 0 6 20 1 -1. + + <_> + 10 6 10 1 2. + + + + <_> + + <_> + 8 4 4 4 -1. + + <_> + 8 4 2 4 2. + + + + <_> + + <_> + 0 0 2 2 -1. + + <_> + 0 1 2 1 2. + + + + <_> + + <_> + 5 3 10 9 -1. + + <_> + 5 6 10 3 3. + + + + <_> + + <_> + 15 2 4 10 -1. + + <_> + 15 2 2 10 2. + + + + <_> + + <_> + 8 2 2 7 -1. + + <_> + 9 2 1 7 2. + + + + <_> + + <_> + 7 4 12 1 -1. + + <_> + 11 4 4 1 3. + + + + <_> + + <_> + 3 4 9 1 -1. + + <_> + 6 4 3 1 3. + + + + <_> + + <_> + 15 10 1 4 -1. + + <_> + 15 12 1 2 2. + + + + <_> + + <_> + 4 10 6 4 -1. + + <_> + 7 10 3 4 2. + + + + <_> + + <_> + 15 9 1 6 -1. + + <_> + 15 12 1 3 2. + + + + <_> + + <_> + 7 17 6 3 -1. + + <_> + 7 18 6 1 3. + + + + <_> + + <_> + 14 3 2 16 -1. + + <_> + 15 3 1 8 2. + + <_> + 14 11 1 8 2. + + + + <_> + + <_> + 4 9 1 6 -1. + + <_> + 4 12 1 3 2. + + + + <_> + + <_> + 12 1 5 2 -1. + + <_> + 12 2 5 1 2. + + + + <_> + + <_> + 6 18 4 2 -1. + + <_> + 6 18 2 1 2. + + <_> + 8 19 2 1 2. + + + + <_> + + <_> + 2 4 16 10 -1. + + <_> + 10 4 8 5 2. + + <_> + 2 9 8 5 2. + + + + <_> + + <_> + 6 5 1 10 -1. + + <_> + 6 10 1 5 2. + + + + <_> + + <_> + 4 8 15 2 -1. + + <_> + 9 8 5 2 3. + + + + <_> + + <_> + 1 8 15 2 -1. + + <_> + 6 8 5 2 3. + + + + <_> + + <_> + 9 5 3 6 -1. + + <_> + 9 7 3 2 3. + + + + <_> + + <_> + 5 7 8 2 -1. + + <_> + 9 7 4 2 2. + + + + <_> + + <_> + 9 11 2 3 -1. + + <_> + 9 12 2 1 3. + + + + <_> + + <_> + 1 0 16 3 -1. + + <_> + 1 1 16 1 3. + + + + <_> + + <_> + 11 2 7 2 -1. + + <_> + 11 3 7 1 2. + + + + <_> + + <_> + 5 1 10 18 -1. + + <_> + 5 7 10 6 3. + + + + <_> + + <_> + 17 4 3 2 -1. + + <_> + 18 4 1 2 3. + + + + <_> + + <_> + 8 13 1 3 -1. + + <_> + 8 14 1 1 3. + + + + <_> + + <_> + 3 14 14 6 -1. + + <_> + 3 16 14 2 3. + + + + <_> + + <_> + 0 2 3 4 -1. + + <_> + 1 2 1 4 3. + + + + <_> + + <_> + 12 1 5 2 -1. + + <_> + 12 2 5 1 2. + + + + <_> + + <_> + 3 1 5 2 -1. + + <_> + 3 2 5 1 2. + + + + <_> + + <_> + 10 13 2 3 -1. + + <_> + 10 14 2 1 3. + + + + <_> + + <_> + 8 13 2 3 -1. + + <_> + 8 14 2 1 3. + + + + <_> + + <_> + 14 12 2 3 -1. + + <_> + 14 13 2 1 3. + + + + <_> + + <_> + 7 2 2 3 -1. + + <_> + 7 3 2 1 3. + + + + <_> + + <_> + 5 6 10 4 -1. + + <_> + 10 6 5 2 2. + + <_> + 5 8 5 2 2. + + + + <_> + + <_> + 9 13 1 6 -1. + + <_> + 9 16 1 3 2. + + + + <_> + + <_> + 10 12 2 2 -1. + + <_> + 11 12 1 1 2. + + <_> + 10 13 1 1 2. + + + + <_> + + <_> + 4 12 2 3 -1. + + <_> + 4 13 2 1 3. + + + + <_> + + <_> + 14 4 6 6 -1. + + <_> + 14 6 6 2 3. + + + + <_> + + <_> + 8 17 2 3 -1. + + <_> + 8 18 2 1 3. + + + + <_> + + <_> + 16 4 4 6 -1. + + <_> + 16 6 4 2 3. + + + + <_> + + <_> + 0 4 4 6 -1. + + <_> + 0 6 4 2 3. + + + + <_> + + <_> + 14 6 2 3 -1. + + <_> + 14 6 1 3 2. + + + + <_> + + <_> + 4 9 8 1 -1. + + <_> + 8 9 4 1 2. + + + + <_> + + <_> + 8 12 4 3 -1. + + <_> + 8 13 4 1 3. + + + + <_> + + <_> + 5 12 10 6 -1. + + <_> + 5 14 10 2 3. + + + + <_> + + <_> + 11 12 1 2 -1. + + <_> + 11 13 1 1 2. + + + + <_> + + <_> + 8 15 4 2 -1. + + <_> + 8 16 4 1 2. + + + + <_> + + <_> + 6 9 8 8 -1. + + <_> + 10 9 4 4 2. + + <_> + 6 13 4 4 2. + + + + <_> + + <_> + 7 12 4 6 -1. + + <_> + 7 12 2 3 2. + + <_> + 9 15 2 3 2. + + + + <_> + + <_> + 10 11 3 1 -1. + + <_> + 11 11 1 1 3. + + + + <_> + + <_> + 9 7 2 10 -1. + + <_> + 9 7 1 5 2. + + <_> + 10 12 1 5 2. + + + + <_> + + <_> + 8 0 6 6 -1. + + <_> + 10 0 2 6 3. + + + + <_> + + <_> + 3 11 2 6 -1. + + <_> + 3 13 2 2 3. + + + + <_> + + <_> + 16 12 1 2 -1. + + <_> + 16 13 1 1 2. + + + + <_> + + <_> + 1 14 6 6 -1. + + <_> + 1 14 3 3 2. + + <_> + 4 17 3 3 2. + + + + <_> + + <_> + 13 1 3 6 -1. + + <_> + 14 1 1 6 3. + + + + <_> + + <_> + 8 8 2 2 -1. + + <_> + 8 9 2 1 2. + + + + <_> + + <_> + 9 9 3 3 -1. + + <_> + 10 9 1 3 3. + + + + <_> + + <_> + 8 7 3 3 -1. + + <_> + 8 8 3 1 3. + + + + <_> + + <_> + 14 0 2 3 -1. + + <_> + 14 0 1 3 2. + + + + <_> + + <_> + 1 0 18 9 -1. + + <_> + 7 0 6 9 3. + + + + <_> + + <_> + 11 5 4 15 -1. + + <_> + 11 5 2 15 2. + + + + <_> + + <_> + 5 5 4 15 -1. + + <_> + 7 5 2 15 2. + + + + <_> + + <_> + 14 0 2 3 -1. + + <_> + 14 0 1 3 2. + + + + <_> + + <_> + 4 0 2 3 -1. + + <_> + 5 0 1 3 2. + + + + <_> + + <_> + 11 12 2 2 -1. + + <_> + 12 12 1 1 2. + + <_> + 11 13 1 1 2. + + + + <_> + + <_> + 7 12 2 2 -1. + + <_> + 7 12 1 1 2. + + <_> + 8 13 1 1 2. + + + + <_> + + <_> + 12 0 3 4 -1. + + <_> + 13 0 1 4 3. + + + + <_> + + <_> + 4 11 3 3 -1. + + <_> + 4 12 3 1 3. + + + + <_> + + <_> + 12 7 4 2 -1. + + <_> + 12 8 4 1 2. + + + + <_> + + <_> + 8 10 3 2 -1. + + <_> + 9 10 1 2 3. + + + + <_> + + <_> + 9 9 3 2 -1. + + <_> + 10 9 1 2 3. + + + + <_> + + <_> + 8 9 3 2 -1. + + <_> + 9 9 1 2 3. + + + + <_> + + <_> + 12 0 3 4 -1. + + <_> + 13 0 1 4 3. + + + + <_> + + <_> + 5 0 3 4 -1. + + <_> + 6 0 1 4 3. + + + + <_> + + <_> + 4 14 12 4 -1. + + <_> + 10 14 6 2 2. + + <_> + 4 16 6 2 2. + + + + <_> + + <_> + 8 13 2 3 -1. + + <_> + 8 14 2 1 3. + + + + <_> + + <_> + 10 10 3 8 -1. + + <_> + 10 14 3 4 2. + + + + <_> + + <_> + 8 10 4 8 -1. + + <_> + 8 10 2 4 2. + + <_> + 10 14 2 4 2. + + + + <_> + + <_> + 10 8 3 1 -1. + + <_> + 11 8 1 1 3. + + + + <_> + + <_> + 9 12 1 6 -1. + + <_> + 9 15 1 3 2. + + + + <_> + + <_> + 10 8 3 1 -1. + + <_> + 11 8 1 1 3. + + + + <_> + + <_> + 7 8 3 1 -1. + + <_> + 8 8 1 1 3. + + + + <_> + + <_> + 5 2 15 14 -1. + + <_> + 5 9 15 7 2. + + + + <_> + + <_> + 2 1 2 10 -1. + + <_> + 2 1 1 5 2. + + <_> + 3 6 1 5 2. + + + + <_> + + <_> + 14 14 2 3 -1. + + <_> + 14 15 2 1 3. + + + + <_> + + <_> + 2 7 3 3 -1. + + <_> + 3 7 1 3 3. + + + + <_> + + <_> + 17 4 3 3 -1. + + <_> + 17 5 3 1 3. + + + + <_> + + <_> + 0 4 3 3 -1. + + <_> + 0 5 3 1 3. + + + + <_> + + <_> + 13 5 6 2 -1. + + <_> + 16 5 3 1 2. + + <_> + 13 6 3 1 2. + + + + <_> + + <_> + 4 19 12 1 -1. + + <_> + 8 19 4 1 3. + + + + <_> + + <_> + 12 12 2 4 -1. + + <_> + 12 14 2 2 2. + + + + <_> + + <_> + 3 15 1 3 -1. + + <_> + 3 16 1 1 3. + + + + <_> + + <_> + 11 16 6 4 -1. + + <_> + 11 16 3 4 2. + + + + <_> + + <_> + 2 10 3 10 -1. + + <_> + 3 10 1 10 3. + + + + <_> + + <_> + 12 8 2 4 -1. + + <_> + 12 8 1 4 2. + + + + <_> + + <_> + 6 8 2 4 -1. + + <_> + 7 8 1 4 2. + + + + <_> + + <_> + 10 14 2 3 -1. + + <_> + 10 14 1 3 2. + + + + <_> + + <_> + 5 1 10 3 -1. + + <_> + 10 1 5 3 2. + + + + <_> + + <_> + 10 7 3 2 -1. + + <_> + 11 7 1 2 3. + + + + <_> + + <_> + 5 6 9 2 -1. + + <_> + 8 6 3 2 3. + + + + <_> + + <_> + 9 8 2 2 -1. + + <_> + 9 9 2 1 2. + + + + <_> + + <_> + 2 11 16 6 -1. + + <_> + 2 11 8 3 2. + + <_> + 10 14 8 3 2. + + + + <_> + + <_> + 12 7 2 2 -1. + + <_> + 13 7 1 1 2. + + <_> + 12 8 1 1 2. + + + + <_> + + <_> + 9 5 2 3 -1. + + <_> + 9 6 2 1 3. + + + + <_> + + <_> + 9 7 3 2 -1. + + <_> + 10 7 1 2 3. + + + + <_> + + <_> + 5 1 8 12 -1. + + <_> + 5 7 8 6 2. + + + + <_> + + <_> + 13 5 2 2 -1. + + <_> + 13 6 2 1 2. + + + + <_> + + <_> + 5 5 2 2 -1. + + <_> + 5 6 2 1 2. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 4 14 2 3 -1. + + <_> + 4 15 2 1 3. + + + + <_> + + <_> + 12 4 3 3 -1. + + <_> + 12 5 3 1 3. + + + + <_> + + <_> + 5 4 3 3 -1. + + <_> + 5 5 3 1 3. + + + + <_> + + <_> + 9 14 2 6 -1. + + <_> + 10 14 1 3 2. + + <_> + 9 17 1 3 2. + + + + <_> + + <_> + 8 14 3 2 -1. + + <_> + 9 14 1 2 3. + + + + <_> + + <_> + 9 5 6 6 -1. + + <_> + 11 5 2 6 3. + + + + <_> + + <_> + 5 5 6 6 -1. + + <_> + 7 5 2 6 3. + + + + <_> + + <_> + 13 13 1 2 -1. + + <_> + 13 14 1 1 2. + + + + <_> + + <_> + 0 2 10 2 -1. + + <_> + 0 3 10 1 2. + + + + <_> + + <_> + 13 13 1 2 -1. + + <_> + 13 14 1 1 2. + + + + <_> + + <_> + 5 7 2 2 -1. + + <_> + 5 7 1 1 2. + + <_> + 6 8 1 1 2. + + + + <_> + + <_> + 13 5 2 7 -1. + + <_> + 13 5 1 7 2. + + + + <_> + + <_> + 6 13 1 2 -1. + + <_> + 6 14 1 1 2. + + + + <_> + + <_> + 11 0 3 7 -1. + + <_> + 12 0 1 7 3. + + + + <_> + + <_> + 0 3 2 16 -1. + + <_> + 0 3 1 8 2. + + <_> + 1 11 1 8 2. + + + + <_> + + <_> + 11 0 3 7 -1. + + <_> + 12 0 1 7 3. + + + + <_> + + <_> + 6 0 3 7 -1. + + <_> + 7 0 1 7 3. + + + + <_> + + <_> + 11 16 8 4 -1. + + <_> + 11 16 4 4 2. + + + + <_> + + <_> + 1 16 8 4 -1. + + <_> + 5 16 4 4 2. + + + + <_> + + <_> + 13 5 2 7 -1. + + <_> + 13 5 1 7 2. + + + + <_> + + <_> + 5 5 2 7 -1. + + <_> + 6 5 1 7 2. + + + + <_> + + <_> + 18 6 2 14 -1. + + <_> + 18 13 2 7 2. + + + + <_> + + <_> + 6 10 3 4 -1. + + <_> + 6 12 3 2 2. + + + + <_> + + <_> + 14 7 1 2 -1. + + <_> + 14 8 1 1 2. + + + + <_> + + <_> + 0 1 18 6 -1. + + <_> + 0 1 9 3 2. + + <_> + 9 4 9 3 2. + + + + <_> + + <_> + 14 7 1 2 -1. + + <_> + 14 8 1 1 2. + + + + <_> + + <_> + 0 6 2 14 -1. + + <_> + 0 13 2 7 2. + + + + <_> + + <_> + 17 0 3 12 -1. + + <_> + 18 0 1 12 3. + + + + <_> + + <_> + 0 6 18 3 -1. + + <_> + 0 7 18 1 3. + + + + <_> + + <_> + 6 0 14 16 -1. + + <_> + 6 8 14 8 2. + + + + <_> + + <_> + 0 0 3 12 -1. + + <_> + 1 0 1 12 3. + + + + <_> + + <_> + 13 0 3 7 -1. + + <_> + 14 0 1 7 3. + + + + <_> + + <_> + 5 7 1 2 -1. + + <_> + 5 8 1 1 2. + + + + <_> + + <_> + 14 4 6 6 -1. + + <_> + 14 6 6 2 3. + + + + <_> + + <_> + 5 7 7 2 -1. + + <_> + 5 8 7 1 2. + + + + <_> + + <_> + 8 6 6 9 -1. + + <_> + 8 9 6 3 3. + + + + <_> + + <_> + 5 4 6 1 -1. + + <_> + 7 4 2 1 3. + + + + <_> + + <_> + 13 0 6 4 -1. + + <_> + 16 0 3 2 2. + + <_> + 13 2 3 2 2. + + + + <_> + + <_> + 1 2 18 12 -1. + + <_> + 1 6 18 4 3. + + + + <_> + + <_> + 3 2 17 12 -1. + + <_> + 3 6 17 4 3. + + + + <_> + + <_> + 5 14 7 3 -1. + + <_> + 5 15 7 1 3. + + + + <_> + + <_> + 10 14 1 3 -1. + + <_> + 10 15 1 1 3. + + + + <_> + + <_> + 3 14 3 3 -1. + + <_> + 3 15 3 1 3. + + + + <_> + + <_> + 14 4 6 6 -1. + + <_> + 14 6 6 2 3. + + + + <_> + + <_> + 0 4 6 6 -1. + + <_> + 0 6 6 2 3. + + + + <_> + + <_> + 12 5 4 3 -1. + + <_> + 12 6 4 1 3. + + + + <_> + + <_> + 4 5 4 3 -1. + + <_> + 4 6 4 1 3. + + + + <_> + + <_> + 18 0 2 6 -1. + + <_> + 18 2 2 2 3. + + + + <_> + + <_> + 8 1 4 9 -1. + + <_> + 10 1 2 9 2. + + + + <_> + + <_> + 6 6 8 2 -1. + + <_> + 6 6 4 2 2. + + + + <_> + + <_> + 6 5 4 2 -1. + + <_> + 6 5 2 1 2. + + <_> + 8 6 2 1 2. + + + + <_> + + <_> + 10 5 2 3 -1. + + <_> + 10 6 2 1 3. + + + + <_> + + <_> + 9 5 1 3 -1. + + <_> + 9 6 1 1 3. + + + + <_> + + <_> + 9 10 2 2 -1. + + <_> + 9 11 2 1 2. + + + + <_> + + <_> + 0 8 4 3 -1. + + <_> + 0 9 4 1 3. + + + + <_> + + <_> + 6 0 8 6 -1. + + <_> + 6 3 8 3 2. + + + + <_> + + <_> + 1 0 6 4 -1. + + <_> + 1 0 3 2 2. + + <_> + 4 2 3 2 2. + + + + <_> + + <_> + 13 0 3 7 -1. + + <_> + 14 0 1 7 3. + + + + <_> + + <_> + 9 16 2 2 -1. + + <_> + 9 17 2 1 2. + + + + <_> + + <_> + 11 4 6 10 -1. + + <_> + 11 9 6 5 2. + + + + <_> + + <_> + 0 10 19 2 -1. + + <_> + 0 11 19 1 2. + + + + <_> + + <_> + 9 5 8 9 -1. + + <_> + 9 8 8 3 3. + + + + <_> + + <_> + 4 0 3 7 -1. + + <_> + 5 0 1 7 3. + + + + <_> + + <_> + 8 6 4 12 -1. + + <_> + 10 6 2 6 2. + + <_> + 8 12 2 6 2. + + + + <_> + + <_> + 0 2 6 4 -1. + + <_> + 0 4 6 2 2. + + + + <_> + + <_> + 8 15 4 3 -1. + + <_> + 8 16 4 1 3. + + + + <_> + + <_> + 8 0 3 7 -1. + + <_> + 9 0 1 7 3. + + + + <_> + + <_> + 9 5 3 4 -1. + + <_> + 10 5 1 4 3. + + + + <_> + + <_> + 8 5 3 4 -1. + + <_> + 9 5 1 4 3. + + + + <_> + + <_> + 7 6 6 1 -1. + + <_> + 9 6 2 1 3. + + + + <_> + + <_> + 7 14 4 4 -1. + + <_> + 7 14 2 2 2. + + <_> + 9 16 2 2 2. + + + + <_> + + <_> + 13 14 4 6 -1. + + <_> + 15 14 2 3 2. + + <_> + 13 17 2 3 2. + + + + <_> + + <_> + 7 8 1 8 -1. + + <_> + 7 12 1 4 2. + + + + <_> + + <_> + 16 0 2 8 -1. + + <_> + 17 0 1 4 2. + + <_> + 16 4 1 4 2. + + + + <_> + + <_> + 2 0 2 8 -1. + + <_> + 2 0 1 4 2. + + <_> + 3 4 1 4 2. + + + + <_> + + <_> + 6 1 14 3 -1. + + <_> + 6 2 14 1 3. + + + + <_> + + <_> + 7 9 3 10 -1. + + <_> + 7 14 3 5 2. + + + + <_> + + <_> + 9 14 2 2 -1. + + <_> + 9 15 2 1 2. + + + + <_> + + <_> + 7 7 6 8 -1. + + <_> + 7 11 6 4 2. + + + + <_> + + <_> + 9 7 3 6 -1. + + <_> + 9 10 3 3 2. + + + + <_> + + <_> + 7 13 3 3 -1. + + <_> + 7 14 3 1 3. + + + + <_> + + <_> + 9 9 2 2 -1. + + <_> + 9 10 2 1 2. + + + + <_> + + <_> + 0 1 18 2 -1. + + <_> + 6 1 6 2 3. + + + + <_> + + <_> + 7 1 6 14 -1. + + <_> + 7 8 6 7 2. + + + + <_> + + <_> + 1 9 18 1 -1. + + <_> + 7 9 6 1 3. + + + + <_> + + <_> + 9 7 2 2 -1. + + <_> + 9 7 1 2 2. + + + + <_> + + <_> + 9 3 2 9 -1. + + <_> + 10 3 1 9 2. + + + + <_> + + <_> + 18 14 2 3 -1. + + <_> + 18 15 2 1 3. + + + + <_> + + <_> + 7 11 3 1 -1. + + <_> + 8 11 1 1 3. + + + + <_> + + <_> + 10 8 3 4 -1. + + <_> + 11 8 1 4 3. + + + + <_> + + <_> + 7 14 3 6 -1. + + <_> + 8 14 1 6 3. + + + + <_> + + <_> + 10 8 3 4 -1. + + <_> + 11 8 1 4 3. + + + + <_> + + <_> + 7 8 3 4 -1. + + <_> + 8 8 1 4 3. + + + + <_> + + <_> + 7 9 6 9 -1. + + <_> + 7 12 6 3 3. + + + + <_> + + <_> + 0 14 2 3 -1. + + <_> + 0 15 2 1 3. + + + + <_> + + <_> + 11 12 1 2 -1. + + <_> + 11 13 1 1 2. + + + + <_> + + <_> + 4 3 8 3 -1. + + <_> + 8 3 4 3 2. + + + + <_> + + <_> + 0 4 20 6 -1. + + <_> + 0 4 10 6 2. + + + + <_> + + <_> + 9 14 1 3 -1. + + <_> + 9 15 1 1 3. + + + + <_> + + <_> + 8 14 4 3 -1. + + <_> + 8 15 4 1 3. + + + + <_> + + <_> + 0 15 14 4 -1. + + <_> + 0 17 14 2 2. + + + + <_> + + <_> + 1 14 18 6 -1. + + <_> + 1 17 18 3 2. + + + + <_> + + <_> + 0 0 10 6 -1. + + <_> + 0 0 5 3 2. + + <_> + 5 3 5 3 2. + + + + + + \ No newline at end of file diff --git a/squirrowse.web/StaticFiles/haarcascade_lowerbody.xml b/squirrowse.web/StaticFiles/haarcascade_lowerbody.xml new file mode 100644 index 0000000..fd1cc96 --- /dev/null +++ b/squirrowse.web/StaticFiles/haarcascade_lowerbody.xml @@ -0,0 +1,22792 @@ + + + + + + BOOST + HAAR + 23 + 19 + + 89 + + + 0 + + 27 + + <_> + 17 + -1.4308550357818604e+00 + + <_> + + 0 -1 0 -1.6869869083166122e-02 + + + 5.4657417535781860e-01 -6.3678038120269775e-01 + + + <_> + + 0 -1 1 2.5349899660795927e-03 + + + -3.7605491280555725e-01 3.2378101348876953e-01 + + + <_> + + 0 -1 2 -2.4709459394216537e-02 + + + -6.7979127168655396e-01 2.0501059293746948e-01 + + + <_> + + 0 -1 3 8.2436859607696533e-02 + + + 2.0588639378547668e-01 -8.4938430786132812e-01 + + + <_> + + 0 -1 4 -8.2128931535407901e-04 + + + 3.1891921162605286e-01 -4.6469458937644958e-01 + + + <_> + + 0 -1 5 2.3016959428787231e-02 + + + 1.8670299649238586e-01 -7.0330899953842163e-01 + + + <_> + + 0 -1 6 6.6386149264872074e-03 + + + 1.6370490193367004e-01 -8.4604722261428833e-01 + + + <_> + + 0 -1 7 7.6682120561599731e-04 + + + -3.9852690696716309e-01 2.3113329708576202e-01 + + + <_> + + 0 -1 8 1.1731679737567902e-01 + + + 1.0445039719343185e-01 -8.8510942459106445e-01 + + + <_> + + 0 -1 9 1.5421230345964432e-02 + + + -2.7859508991241455e-01 2.8921920061111450e-01 + + + <_> + + 0 -1 10 3.4018948674201965e-02 + + + -1.4287669956684113e-01 7.7801531553268433e-01 + + + <_> + + 0 -1 11 3.4638870507478714e-02 + + + 1.8644079566001892e-01 -6.0324841737747192e-01 + + + <_> + + 0 -1 12 -3.7503659725189209e-01 + + + 9.2781841754913330e-01 -1.5421600639820099e-01 + + + <_> + + 0 -1 13 -5.6011971086263657e-02 + + + -5.8591067790985107e-01 1.9547510147094727e-01 + + + <_> + + 0 -1 14 -1.4878909569233656e-03 + + + 2.8139349818229675e-01 -4.1853010654449463e-01 + + + <_> + + 0 -1 15 -1.4495699666440487e-02 + + + -7.2273969650268555e-01 9.4288460910320282e-02 + + + <_> + + 0 -1 16 -5.6178281083703041e-03 + + + -5.9551960229873657e-01 1.5202650427818298e-01 + + + + + <_> + 13 + -1.1907930374145508e+00 + + <_> + + 0 -1 17 -3.1839120201766491e-03 + + + 4.0025138854980469e-01 -6.8473160266876221e-01 + + + <_> + + 0 -1 18 3.5989920143038034e-03 + + + -5.1895952224731445e-01 3.0101141333580017e-01 + + + <_> + + 0 -1 19 1.8804630264639854e-02 + + + 1.5554919838905334e-01 -8.0477172136306763e-01 + + + <_> + + 0 -1 20 5.2497140131890774e-03 + + + 1.3780809938907623e-01 -6.0767507553100586e-01 + + + <_> + + 0 -1 21 -1.4204799663275480e-03 + + + 3.2319429516792297e-01 -4.3407461047172546e-01 + + + <_> + + 0 -1 22 -2.5174349546432495e-02 + + + -7.0780879259109497e-01 9.3106329441070557e-02 + + + <_> + + 0 -1 23 3.2285219058394432e-03 + + + -3.2510471343994141e-01 3.3571699261665344e-01 + + + <_> + + 0 -1 24 9.4993412494659424e-02 + + + 8.2439087331295013e-02 -8.7549537420272827e-01 + + + <_> + + 0 -1 25 -6.5919090993702412e-03 + + + -7.3804199695587158e-01 1.3853749632835388e-01 + + + <_> + + 0 -1 26 -1.1146620381623507e-03 + + + 1.7917269468307495e-01 -2.7955859899520874e-01 + + + <_> + + 0 -1 27 1.3349019922316074e-02 + + + 1.3057829439640045e-01 -6.9802671670913696e-01 + + + <_> + + 0 -1 28 -3.5181451588869095e-02 + + + 4.6535360813140869e-01 -1.0698779672384262e-01 + + + <_> + + 0 -1 29 3.1874589622020721e-02 + + + -1.3565389811992645e-01 7.9047888517379761e-01 + + + + + <_> + 19 + -1.3129220008850098e+00 + + <_> + + 0 -1 30 -1.0647430084645748e-02 + + + 3.8079029321670532e-01 -5.8672338724136353e-01 + + + <_> + + 0 -1 31 -7.3214493691921234e-02 + + + -7.9550951719284058e-01 1.7223259806632996e-01 + + + <_> + + 0 -1 32 6.0464427806437016e-03 + + + 1.6532160341739655e-01 -6.9376647472381592e-01 + + + <_> + + 0 -1 33 7.3225022060796618e-04 + + + -3.3247160911560059e-01 2.3669970035552979e-01 + + + <_> + + 0 -1 34 -1.0990080423653126e-02 + + + -6.9136887788772583e-01 2.1058270335197449e-01 + + + <_> + + 0 -1 35 -1.5282750246115029e-04 + + + 2.0305849611759186e-01 -4.6551659703254700e-01 + + + <_> + + 0 -1 36 2.4822261184453964e-04 + + + -4.2122921347618103e-01 2.7335309982299805e-01 + + + <_> + + 0 -1 37 -8.4205856546759605e-03 + + + -4.3744468688964844e-01 5.8831848204135895e-02 + + + <_> + + 0 -1 38 -3.6992791295051575e-01 + + + 9.1070818901062012e-01 -8.7207540869712830e-02 + + + <_> + + 0 -1 39 6.1259930953383446e-03 + + + 1.1886730045080185e-01 -1.8520170450210571e-01 + + + <_> + + 0 -1 40 -6.0144090093672276e-03 + + + -6.3057059049606323e-01 1.4577180147171021e-01 + + + <_> + + 0 -1 41 8.5623031482100487e-03 + + + -2.9369381070137024e-01 3.2411348819732666e-01 + + + <_> + + 0 -1 42 -1.3966850005090237e-02 + + + -8.0650371313095093e-01 1.1267790198326111e-01 + + + <_> + + 0 -1 43 -4.1734468191862106e-02 + + + 7.7495330572128296e-01 -7.8866302967071533e-02 + + + <_> + + 0 -1 44 -2.7996799326501787e-04 + + + 2.7783310413360596e-01 -3.5196089744567871e-01 + + + <_> + + 0 -1 45 1.9588569179177284e-02 + + + -6.5759636461734772e-02 5.2414137125015259e-01 + + + <_> + + 0 -1 46 9.2163113877177238e-03 + + + -1.5525479614734650e-01 5.4835391044616699e-01 + + + <_> + + 0 -1 47 -2.1458569914102554e-02 + + + -5.2255308628082275e-01 8.2208268344402313e-02 + + + <_> + + 0 -1 48 3.6805770359933376e-03 + + + -2.4434129893779755e-01 3.6122488975524902e-01 + + + + + <_> + 23 + -1.3777279853820801e+00 + + <_> + + 0 -1 49 -8.3544738590717316e-03 + + + 2.8173181414604187e-01 -4.9728131294250488e-01 + + + <_> + + 0 -1 50 -5.5724289268255234e-03 + + + -6.5505301952362061e-01 1.9406059384346008e-01 + + + <_> + + 0 -1 51 -5.7714767754077911e-03 + + + -6.2230938673019409e-01 2.7622398734092712e-01 + + + <_> + + 0 -1 52 2.2995889186859131e-02 + + + 1.9798569381237030e-02 -7.8324538469314575e-01 + + + <_> + + 0 -1 53 -1.1443760013207793e-03 + + + 2.8108718991279602e-01 -4.8214849829673767e-01 + + + <_> + + 0 -1 54 -2.5917509198188782e-01 + + + -6.8214958906173706e-01 -3.3729869755916297e-04 + + + <_> + + 0 -1 55 -3.0133039690554142e-03 + + + -6.5704411268234253e-01 1.3693599402904510e-01 + + + <_> + + 0 -1 56 5.4540671408176422e-03 + + + 8.6931817233562469e-02 -7.0567971467971802e-01 + + + <_> + + 0 -1 57 6.6230311058461666e-03 + + + 1.6634289920330048e-01 -5.1772958040237427e-01 + + + <_> + + 0 -1 58 -1.2561669573187828e-02 + + + 9.0290471911430359e-02 -1.6850970685482025e-01 + + + <_> + + 0 -1 59 4.2890738695859909e-02 + + + 1.2977810204029083e-01 -5.8218061923980713e-01 + + + <_> + + 0 -1 60 -1.3341030571609735e-03 + + + 1.3694329559803009e-01 -1.9437809288501740e-01 + + + <_> + + 0 -1 61 -4.1247460991144180e-02 + + + 6.8543851375579834e-01 -1.3039450347423553e-01 + + + <_> + + 0 -1 62 -9.1503392904996872e-03 + + + -1.1895430088043213e-01 6.7576698958873749e-02 + + + <_> + + 0 -1 63 -1.7151240026578307e-03 + + + 2.6475539803504944e-01 -3.0487450957298279e-01 + + + <_> + + 0 -1 64 2.0843200385570526e-01 + + + 1.2401489913463593e-01 -4.7014111280441284e-01 + + + <_> + + 0 -1 65 7.2393968701362610e-02 + + + 9.6924379467964172e-02 -7.7347749471664429e-01 + + + <_> + + 0 -1 66 -1.5335980569943786e-03 + + + 1.7991219460964203e-01 -2.5788331031799316e-01 + + + <_> + + 0 -1 67 4.8640500754117966e-03 + + + 1.1392980068922043e-01 -5.5173867940902710e-01 + + + <_> + + 0 -1 68 -1.6523050144314766e-03 + + + 1.5154689550399780e-01 -2.2901679575443268e-01 + + + <_> + + 0 -1 69 7.5348757207393646e-02 + + + -1.4630889892578125e-01 6.8105882406234741e-01 + + + <_> + + 0 -1 70 -8.2630068063735962e-03 + + + -7.2783601284027100e-01 1.0281019657850266e-01 + + + <_> + + 0 -1 71 -5.5124741047620773e-03 + + + -6.3059347867965698e-01 9.3257799744606018e-02 + + + + + <_> + 15 + -1.0618749856948853e+00 + + <_> + + 0 -1 72 -9.3849105760455132e-03 + + + 5.2500581741333008e-01 -4.3231061100959778e-01 + + + <_> + + 0 -1 73 -1.3772470410913229e-03 + + + 2.0698480308055878e-01 -4.2718759179115295e-01 + + + <_> + + 0 -1 74 2.6320109143853188e-02 + + + 1.5825170278549194e-01 -6.5509521961212158e-01 + + + <_> + + 0 -1 75 -4.5488759875297546e-02 + + + -4.9510109424591064e-01 1.7998820543289185e-01 + + + <_> + + 0 -1 76 -4.7006201930344105e-03 + + + 3.3971160650253296e-01 -3.6917701363563538e-01 + + + <_> + + 0 -1 77 -1.3270860072225332e-03 + + + 3.0907860398292542e-01 -1.9771750271320343e-01 + + + <_> + + 0 -1 78 9.3802614137530327e-03 + + + 9.4488449394702911e-02 -7.3198097944259644e-01 + + + <_> + + 0 -1 79 4.3565612286329269e-03 + + + 1.1520200222730637e-01 -5.4008102416992188e-01 + + + <_> + + 0 -1 80 8.1178937107324600e-03 + + + -1.5956309437751770e-01 5.3777867555618286e-01 + + + <_> + + 0 -1 81 -8.7829083204269409e-03 + + + 5.6634718179702759e-01 -1.3279379904270172e-01 + + + <_> + + 0 -1 82 2.1944850683212280e-02 + + + 1.5901289880275726e-01 -5.1751822233200073e-01 + + + <_> + + 0 -1 83 4.9510098993778229e-02 + + + 1.1067640036344528e-02 -4.9972468614578247e-01 + + + <_> + + 0 -1 84 -2.1175360307097435e-03 + + + 2.6490759849548340e-01 -2.4565629661083221e-01 + + + <_> + + 0 -1 85 1.0379469953477383e-02 + + + 1.2624099850654602e-01 -4.0877240896224976e-01 + + + <_> + + 0 -1 86 2.4977258872240782e-03 + + + -1.9723020493984222e-01 3.8866749405860901e-01 + + + + + <_> + 18 + -9.5461457967758179e-01 + + <_> + + 0 -1 87 -6.1489548534154892e-03 + + + 4.0187481045722961e-01 -5.2397370338439941e-01 + + + <_> + + 0 -1 88 5.0464540719985962e-02 + + + 1.3049679994583130e-01 -5.8651441335678101e-01 + + + <_> + + 0 -1 89 -5.5906269699335098e-02 + + + -5.1229542493820190e-01 2.4392889440059662e-01 + + + <_> + + 0 -1 90 1.4281509816646576e-01 + + + -1.5180160291492939e-02 -6.9593918323516846e-01 + + + <_> + + 0 -1 91 4.1162770241498947e-02 + + + 1.3673730194568634e-01 -6.4158838987350464e-01 + + + <_> + + 0 -1 92 -1.6468750312924385e-02 + + + 2.6339039206504822e-01 -2.2083680331707001e-01 + + + <_> + + 0 -1 93 2.4763140827417374e-02 + + + 1.0897739976644516e-01 -6.5213900804519653e-01 + + + <_> + + 0 -1 94 4.3008858337998390e-03 + + + -1.8299630284309387e-01 4.3614229559898376e-01 + + + <_> + + 0 -1 95 3.4035290591418743e-03 + + + -2.4363580346107483e-01 2.8224369883537292e-01 + + + <_> + + 0 -1 96 -2.2210620343685150e-02 + + + -5.4645758867263794e-01 1.3542969524860382e-01 + + + <_> + + 0 -1 97 -2.6968019083142281e-02 + + + 6.5300947427749634e-01 -1.4297309517860413e-01 + + + <_> + + 0 -1 98 -3.4927908331155777e-02 + + + -5.2346628904342651e-01 1.0084570199251175e-01 + + + <_> + + 0 -1 99 3.6263581365346909e-02 + + + 1.5110149979591370e-01 -5.4185849428176880e-01 + + + <_> + + 0 -1 100 -3.8526788353919983e-02 + + + -8.6942279338836670e-01 3.7176769226789474e-02 + + + <_> + + 0 -1 101 2.5399168953299522e-03 + + + -2.6125881075859070e-01 2.7278441190719604e-01 + + + <_> + + 0 -1 102 -1.2931150384247303e-02 + + + -4.9501579999923706e-01 9.1383516788482666e-02 + + + <_> + + 0 -1 103 1.1981350369751453e-02 + + + -1.2059610337018967e-01 6.3848638534545898e-01 + + + <_> + + 0 -1 104 -7.4320413172245026e-02 + + + 4.6591779589653015e-01 -4.0265668183565140e-02 + + + + + <_> + 14 + -1.1777880191802979e+00 + + <_> + + 0 -1 105 -6.9070039317011833e-03 + + + 4.3197679519653320e-01 -5.1717847585678101e-01 + + + <_> + + 0 -1 106 -8.1628039479255676e-03 + + + 2.7116540074348450e-01 -3.2803410291671753e-01 + + + <_> + + 0 -1 107 1.8852509558200836e-02 + + + 1.5548799932003021e-01 -5.5243927240371704e-01 + + + <_> + + 0 -1 108 3.4079391509294510e-02 + + + 1.5272259712219238e-01 -6.5318012237548828e-01 + + + <_> + + 0 -1 109 -3.2038250938057899e-03 + + + 3.4725460410118103e-01 -2.7734228968620300e-01 + + + <_> + + 0 -1 110 2.1410689223557711e-03 + + + -6.8888276815414429e-02 2.4079489707946777e-01 + + + <_> + + 0 -1 111 1.4620450139045715e-01 + + + 1.5766879916191101e-01 -5.4515862464904785e-01 + + + <_> + + 0 -1 112 -6.2386798672378063e-03 + + + 3.2899579405784607e-01 -1.6970640420913696e-01 + + + <_> + + 0 -1 113 7.7623138204216957e-03 + + + 1.6352510452270508e-01 -5.1879328489303589e-01 + + + <_> + + 0 -1 114 3.7800080608576536e-03 + + + -1.8464370071887970e-01 4.8660078644752502e-01 + + + <_> + + 0 -1 115 2.2303969599306583e-03 + + + -1.7057199776172638e-01 4.7744798660278320e-01 + + + <_> + + 0 -1 116 2.4544890038669109e-03 + + + -3.3550649881362915e-01 2.5369268655776978e-01 + + + <_> + + 0 -1 117 -2.1707419306039810e-02 + + + -4.8321890830993652e-01 1.6075029969215393e-01 + + + <_> + + 0 -1 118 1.7421970143914223e-02 + + + 7.9877912998199463e-02 -7.5137257575988770e-01 + + + + + <_> + 34 + -1.2834340333938599e+00 + + <_> + + 0 -1 119 8.8802073150873184e-03 + + + -4.4682410359382629e-01 2.6062530279159546e-01 + + + <_> + + 0 -1 120 -3.0198058811947703e-04 + + + 1.5258400142192841e-01 -3.5206508636474609e-01 + + + <_> + + 0 -1 121 6.7998501472175121e-03 + + + 1.2259320169687271e-01 -6.8427437543869019e-01 + + + <_> + + 0 -1 122 2.7802670374512672e-03 + + + -3.3681631088256836e-01 1.8518559634685516e-01 + + + <_> + + 0 -1 123 -1.1553820222616196e-02 + + + -6.9871348142623901e-01 1.3079600036144257e-01 + + + <_> + + 0 -1 124 -2.6563290506601334e-02 + + + -7.0277881622314453e-01 1.7791330814361572e-02 + + + <_> + + 0 -1 125 -2.5158381322398782e-04 + + + 2.4779480695724487e-01 -3.9787930250167847e-01 + + + <_> + + 0 -1 126 3.5748310387134552e-02 + + + -3.8043439388275146e-02 4.7976261377334595e-01 + + + <_> + + 0 -1 127 -1.9973930902779102e-03 + + + 2.5774869322776794e-01 -3.1990098953247070e-01 + + + <_> + + 0 -1 128 -1.1007110029459000e-01 + + + -4.9102869629859924e-01 2.3104630410671234e-02 + + + <_> + + 0 -1 129 -2.2225650027394295e-03 + + + 2.3825299739837646e-01 -2.8415530920028687e-01 + + + <_> + + 0 -1 130 -7.7874241396784782e-03 + + + -3.8951370120048523e-01 5.5762890726327896e-02 + + + <_> + + 0 -1 131 5.6415859609842300e-02 + + + -9.3521721661090851e-02 7.2561162710189819e-01 + + + <_> + + 0 -1 132 -3.5978010855615139e-03 + + + 1.9452190399169922e-01 -1.9651280343532562e-01 + + + <_> + + 0 -1 133 -7.2716898284852505e-03 + + + 3.4169870615005493e-01 -2.2851559519767761e-01 + + + <_> + + 0 -1 134 7.1941758506000042e-03 + + + 7.2148866951465607e-02 -4.5313501358032227e-01 + + + <_> + + 0 -1 135 -4.1034761816263199e-03 + + + -5.1336747407913208e-01 1.3323569297790527e-01 + + + <_> + + 0 -1 136 -3.4210970625281334e-03 + + + -4.2383781075477600e-01 8.4852807223796844e-02 + + + <_> + + 0 -1 137 4.1890922002494335e-03 + + + -1.3398550450801849e-01 4.3749558925628662e-01 + + + <_> + + 0 -1 138 1.1827970156446099e-03 + + + -2.9739010334014893e-01 2.2126840054988861e-01 + + + <_> + + 0 -1 139 -4.1196551173925400e-02 + + + -5.0735759735107422e-01 1.3243959844112396e-01 + + + <_> + + 0 -1 140 2.9593890067189932e-03 + + + -1.4052620530128479e-01 6.1360880732536316e-02 + + + <_> + + 0 -1 141 -5.0226859748363495e-03 + + + -4.7495970129966736e-01 1.2069150060415268e-01 + + + <_> + + 0 -1 142 -1.5097860246896744e-02 + + + 2.7555391192436218e-01 -5.3780451416969299e-02 + + + <_> + + 0 -1 143 -2.7190970256924629e-02 + + + 7.5995457172393799e-01 -7.4793189764022827e-02 + + + <_> + + 0 -1 144 1.9893879070878029e-02 + + + -6.7238640040159225e-03 7.3972767591476440e-01 + + + <_> + + 0 -1 145 7.7208830043673515e-03 + + + 9.3071162700653076e-02 -6.5780252218246460e-01 + + + <_> + + 0 -1 146 -1.1565990280359983e-03 + + + 9.4645917415618896e-02 -1.6407909989356995e-01 + + + <_> + + 0 -1 147 2.6069190353155136e-03 + + + -1.3877980411052704e-01 4.7349870204925537e-01 + + + <_> + + 0 -1 148 -5.3586110472679138e-02 + + + -3.7349641323089600e-01 2.5728559121489525e-02 + + + <_> + + 0 -1 149 1.5184599906206131e-03 + + + -2.2478710114955902e-01 2.3574599623680115e-01 + + + <_> + + 0 -1 150 -3.7061560899019241e-02 + + + -6.1827117204666138e-01 8.2348063588142395e-02 + + + <_> + + 0 -1 151 -2.6311799883842468e-02 + + + -6.0057657957077026e-01 7.7768869698047638e-02 + + + <_> + + 0 -1 152 -8.7947428226470947e-02 + + + 3.8841038942337036e-01 -8.1545598804950714e-02 + + + + + <_> + 20 + -1.2891789674758911e+00 + + <_> + + 0 -1 153 -2.9038030654191971e-02 + + + 5.0635957717895508e-01 -4.3462699651718140e-01 + + + <_> + + 0 -1 154 3.9044669829308987e-03 + + + -1.9009789824485779e-01 5.1840317249298096e-01 + + + <_> + + 0 -1 155 2.9162769205868244e-03 + + + -3.4351310133934021e-01 2.4016310274600983e-01 + + + <_> + + 0 -1 156 -8.9670084416866302e-03 + + + -4.2667150497436523e-01 1.2316550314426422e-01 + + + <_> + + 0 -1 157 -2.4935540277510881e-03 + + + 3.6086550354957581e-01 -1.8381460011005402e-01 + + + <_> + + 0 -1 158 -4.8912568017840385e-03 + + + -6.4749848842620850e-01 1.0856709629297256e-01 + + + <_> + + 0 -1 159 -4.0970719419419765e-03 + + + 2.2143830358982086e-01 -3.1505578756332397e-01 + + + <_> + + 0 -1 160 4.3956499546766281e-02 + + + -1.0780169814825058e-01 7.1893501281738281e-01 + + + <_> + + 0 -1 161 1.9277370302006602e-03 + + + 2.0247739553451538e-01 -4.0381088852882385e-01 + + + <_> + + 0 -1 162 9.4976946711540222e-03 + + + 4.3494019657373428e-02 -2.9908061027526855e-01 + + + <_> + + 0 -1 163 3.5389279946684837e-03 + + + -1.5109489858150482e-01 5.1864242553710938e-01 + + + <_> + + 0 -1 164 -2.2064079530537128e-03 + + + 2.3006440699100494e-01 -3.3191001415252686e-01 + + + <_> + + 0 -1 165 3.9085410535335541e-03 + + + -3.4253311157226562e-01 2.2951880097389221e-01 + + + <_> + + 0 -1 166 2.6973709464073181e-03 + + + 1.1976680159568787e-01 -3.5321989655494690e-01 + + + <_> + + 0 -1 167 -2.1321459207683802e-03 + + + 1.8206289410591125e-01 -2.8434100747108459e-01 + + + <_> + + 0 -1 168 2.6955150533467531e-03 + + + 7.4593842029571533e-02 -3.0896648764610291e-01 + + + <_> + + 0 -1 169 -6.0222679749131203e-03 + + + 1.8041500449180603e-01 -2.7531668543815613e-01 + + + <_> + + 0 -1 170 -8.9143458753824234e-03 + + + 2.4166099727153778e-01 -1.4506129920482635e-01 + + + <_> + + 0 -1 171 2.3474939167499542e-02 + + + -1.2354619801044464e-01 6.5625041723251343e-01 + + + <_> + + 0 -1 172 -5.6602950207889080e-03 + + + -3.3785250782966614e-01 1.1194559931755066e-01 + + + + + <_> + 20 + -1.0202569961547852e+00 + + <_> + + 0 -1 173 -6.9699093699455261e-02 + + + 5.0786459445953369e-01 -4.7562688589096069e-01 + + + <_> + + 0 -1 174 2.1672779694199562e-02 + + + -2.9134199023246765e-01 3.4561529755592346e-01 + + + <_> + + 0 -1 175 -4.7600260004401207e-03 + + + 3.6477440595626831e-01 -1.9551509618759155e-01 + + + <_> + + 0 -1 176 -4.6418169513344765e-03 + + + -5.6445592641830444e-01 9.8486669361591339e-02 + + + <_> + + 0 -1 177 -6.0006938874721527e-03 + + + -6.3645982742309570e-01 1.4379170536994934e-01 + + + <_> + + 0 -1 178 1.9073469564318657e-02 + + + -3.4218288958072662e-02 5.5043292045593262e-01 + + + <_> + + 0 -1 179 4.7993380576372147e-02 + + + -8.5889510810375214e-02 7.6790231466293335e-01 + + + <_> + + 0 -1 180 -3.6511209327727556e-03 + + + 2.0186069607734680e-01 -2.9832679033279419e-01 + + + <_> + + 0 -1 181 -1.4485770370811224e-03 + + + -5.1293247938156128e-01 1.3695690035820007e-01 + + + <_> + + 0 -1 182 -3.3748829737305641e-03 + + + -4.0975129604339600e-01 1.1581440269947052e-01 + + + <_> + + 0 -1 183 2.3586750030517578e-03 + + + 1.7582429945468903e-01 -4.5439630746841431e-01 + + + <_> + + 0 -1 184 -2.2074829787015915e-02 + + + 4.6775639057159424e-01 -4.6358831226825714e-02 + + + <_> + + 0 -1 185 7.0953248068690300e-03 + + + -3.2100531458854675e-01 2.2119350731372833e-01 + + + <_> + + 0 -1 186 -2.0119780674576759e-03 + + + 5.4601740092039108e-02 -9.7853101789951324e-02 + + + <_> + + 0 -1 187 4.9847508780658245e-03 + + + -1.3063269853591919e-01 5.2815079689025879e-01 + + + <_> + + 0 -1 188 -5.3485459648072720e-03 + + + -4.2115539312362671e-01 1.1927159875631332e-01 + + + <_> + + 0 -1 189 2.5243330746889114e-03 + + + 1.2105660140514374e-01 -4.5177119970321655e-01 + + + <_> + + 0 -1 190 -2.4893151130527258e-03 + + + 1.2249600142240524e-01 -1.1200980097055435e-01 + + + <_> + + 0 -1 191 4.3740491382777691e-03 + + + -1.0549320280551910e-01 6.0806149244308472e-01 + + + <_> + + 0 -1 192 -7.3214988224208355e-03 + + + 4.7615110874176025e-01 -6.8390920758247375e-02 + + + + + <_> + 24 + -1.0336159467697144e+00 + + <_> + + 0 -1 193 -4.2286239564418793e-02 + + + 3.6749860644340515e-01 -4.3680980801582336e-01 + + + <_> + + 0 -1 194 3.8884699344635010e-02 + + + -3.5438889265060425e-01 2.7009218931198120e-01 + + + <_> + + 0 -1 195 1.5983959892764688e-03 + + + -3.2200628519058228e-01 2.5404900312423706e-01 + + + <_> + + 0 -1 196 3.9249849505722523e-03 + + + 1.6477300226688385e-01 -4.2043879628181458e-01 + + + <_> + + 0 -1 197 1.5850430354475975e-03 + + + -2.5503370165824890e-01 3.1559389829635620e-01 + + + <_> + + 0 -1 198 -3.4282119013369083e-03 + + + -4.0074288845062256e-01 1.1993350088596344e-01 + + + <_> + + 0 -1 199 -3.3538821153342724e-03 + + + 3.0459630489349365e-01 -2.2311030328273773e-01 + + + <_> + + 0 -1 200 -6.7664748057723045e-03 + + + 3.2396519184112549e-01 -9.2932380735874176e-02 + + + <_> + + 0 -1 201 -6.7180307814851403e-04 + + + -3.2457518577575684e-01 2.1808999776840210e-01 + + + <_> + + 0 -1 202 2.8931829147040844e-03 + + + 1.2530609965324402e-01 -4.8582470417022705e-01 + + + <_> + + 0 -1 203 -3.3115309197455645e-03 + + + 4.0534108877182007e-01 -2.2432869672775269e-01 + + + <_> + + 0 -1 204 8.8509041815996170e-03 + + + 1.2155570089817047e-01 -6.0243481397628784e-01 + + + <_> + + 0 -1 205 5.4662628099322319e-03 + + + -1.6978119313716888e-01 4.0752619504928589e-01 + + + <_> + + 0 -1 206 4.7559391707181931e-02 + + + -8.1737041473388672e-02 6.9865119457244873e-01 + + + <_> + + 0 -1 207 3.1745019368827343e-03 + + + 1.7419810593128204e-01 -3.7237030267715454e-01 + + + <_> + + 0 -1 208 -5.1520839333534241e-03 + + + 2.7799358963966370e-01 -2.5311779975891113e-01 + + + <_> + + 0 -1 209 -4.8141111619770527e-03 + + + -5.8466029167175293e-01 1.5894299745559692e-01 + + + <_> + + 0 -1 210 2.1967150270938873e-02 + + + -1.0052759945392609e-01 4.7374871373176575e-01 + + + <_> + + 0 -1 211 -6.0128211043775082e-03 + + + 1.9820199906826019e-01 -4.2172819375991821e-01 + + + <_> + + 0 -1 212 4.5052049681544304e-03 + + + 1.7064809799194336e-02 -4.8947790265083313e-01 + + + <_> + + 0 -1 213 -1.3302109437063336e-03 + + + 1.8670339882373810e-01 -2.9437661170959473e-01 + + + <_> + + 0 -1 214 -7.3667510878294706e-04 + + + -1.4788800477981567e-01 1.0121300071477890e-01 + + + <_> + + 0 -1 215 -1.4602739829570055e-03 + + + -4.3107959628105164e-01 1.2479860335588455e-01 + + + <_> + + 0 -1 216 3.4185629338026047e-02 + + + -5.7933650910854340e-02 5.4917758703231812e-01 + + + + + <_> + 33 + -1.0450899600982666e+00 + + <_> + + 0 -1 217 3.0665110796689987e-02 + + + -3.9953279495239258e-01 3.3617529273033142e-01 + + + <_> + + 0 -1 218 2.8893710114061832e-03 + + + -3.8745269179344177e-01 3.0567520856857300e-01 + + + <_> + + 0 -1 219 -1.1876110220327973e-03 + + + 2.2150239348411560e-01 -2.9632321000099182e-01 + + + <_> + + 0 -1 220 4.0173018351197243e-03 + + + 1.3102529942989349e-01 -4.8803418874740601e-01 + + + <_> + + 0 -1 221 4.4870697893202305e-03 + + + -3.3282509446144104e-01 1.6376070678234100e-01 + + + <_> + + 0 -1 222 3.2539520412683487e-02 + + + -5.9164509177207947e-02 6.9953370094299316e-01 + + + <_> + + 0 -1 223 -8.9682880789041519e-03 + + + -5.6289541721343994e-01 1.1756320297718048e-01 + + + <_> + + 0 -1 224 -6.1743397964164615e-04 + + + 1.5408250689506531e-01 -2.7350011467933655e-01 + + + <_> + + 0 -1 225 -3.1031211256049573e-04 + + + 1.8013550341129303e-01 -3.7572589516639709e-01 + + + <_> + + 0 -1 226 2.8775030747056007e-02 + + + -3.4200929105281830e-02 2.7645361423492432e-01 + + + <_> + + 0 -1 227 -6.1647972324863076e-04 + + + 1.7953120172023773e-01 -3.5178318619728088e-01 + + + <_> + + 0 -1 228 2.1818219684064388e-03 + + + -1.4532999694347382e-01 1.4900140464305878e-01 + + + <_> + + 0 -1 229 -2.4263889063149691e-03 + + + -4.6981298923492432e-01 9.5262229442596436e-02 + + + <_> + + 0 -1 230 2.5438209995627403e-02 + + + -2.1531460806727409e-02 3.3266928791999817e-01 + + + <_> + + 0 -1 231 7.9593079863116145e-04 + + + 1.2254969775676727e-01 -3.5679769515991211e-01 + + + <_> + + 0 -1 232 5.6763447355479002e-04 + + + -1.3694189488887787e-01 1.0818839818239212e-01 + + + <_> + + 0 -1 233 8.7481308728456497e-03 + + + -9.0849868953227997e-02 5.0112378597259521e-01 + + + <_> + + 0 -1 234 -4.7468831762671471e-03 + + + 1.1629249900579453e-01 -1.4651729725301266e-02 + + + <_> + + 0 -1 235 3.0644210055470467e-03 + + + -2.2739639878273010e-01 2.7780678868293762e-01 + + + <_> + + 0 -1 236 3.1514191068708897e-03 + + + 3.5710681229829788e-02 -3.2296779751777649e-01 + + + <_> + + 0 -1 237 -3.8335900753736496e-03 + + + -4.8395419120788574e-01 9.2689603567123413e-02 + + + <_> + + 0 -1 238 -3.6972409579902887e-03 + + + 1.6351610422134399e-01 -1.4657320082187653e-01 + + + <_> + + 0 -1 239 6.7644561640918255e-03 + + + 8.0342940986156464e-02 -5.0272989273071289e-01 + + + <_> + + 0 -1 240 5.7455507339909673e-04 + + + -1.9531010091304779e-01 1.2394949793815613e-01 + + + <_> + + 0 -1 241 1.0008309967815876e-02 + + + -1.5030139684677124e-01 2.7990019321441650e-01 + + + <_> + + 0 -1 242 -7.2150952182710171e-03 + + + 1.6882060468196869e-01 -1.2279219925403595e-01 + + + <_> + + 0 -1 243 1.1310850270092487e-02 + + + -9.6786908805370331e-02 6.4601618051528931e-01 + + + <_> + + 0 -1 244 1.0049899667501450e-01 + + + 2.0610159263014793e-02 -9.9988579750061035e-01 + + + <_> + + 0 -1 245 1.3250860385596752e-02 + + + 9.3147717416286469e-02 -4.8156800866127014e-01 + + + <_> + + 0 -1 246 -3.9085310697555542e-01 + + + 7.1057820320129395e-01 -1.6548840329051018e-02 + + + <_> + + 0 -1 247 2.4332199245691299e-02 + + + 1.4528210461139679e-01 -2.8366720676422119e-01 + + + <_> + + 0 -1 248 1.0354409459978342e-03 + + + -2.0017370581626892e-01 1.8794250488281250e-01 + + + <_> + + 0 -1 249 -7.1747899055480957e-01 + + + 6.6637128591537476e-01 -5.2656259387731552e-02 + + + + + <_> + 42 + -1.0599969625473022e+00 + + <_> + + 0 -1 250 1.9620559178292751e-03 + + + -4.1077700257301331e-01 1.8896859884262085e-01 + + + <_> + + 0 -1 251 2.1331369876861572e-02 + + + 9.2599019408226013e-02 -3.9660450816154480e-01 + + + <_> + + 0 -1 252 -2.3037450388073921e-02 + + + -7.2293937206268311e-01 9.6411719918251038e-02 + + + <_> + + 0 -1 253 -5.0521228462457657e-02 + + + 1.8302009999752045e-01 -1.9482779502868652e-01 + + + <_> + + 0 -1 254 2.5330919772386551e-02 + + + 1.0334759950637817e-01 -5.8018290996551514e-01 + + + <_> + + 0 -1 255 -4.3120220652781427e-04 + + + 1.3374519348144531e-01 -2.1300980448722839e-01 + + + <_> + + 0 -1 256 -1.4295669643615838e-05 + + + 1.8420490622520447e-01 -3.0300238728523254e-01 + + + <_> + + 0 -1 257 -2.8645719867199659e-03 + + + 1.7371790111064911e-01 -2.1612820029258728e-01 + + + <_> + + 0 -1 258 1.0322510264813900e-02 + + + 1.1071330308914185e-01 -4.2402949929237366e-01 + + + <_> + + 0 -1 259 1.3879509642720222e-02 + + + -1.0993299633264542e-01 5.5458897352218628e-01 + + + <_> + + 0 -1 260 -1.7010340234264731e-03 + + + -3.1409528851509094e-01 1.5474779903888702e-01 + + + <_> + + 0 -1 261 -2.7375848731026053e-04 + + + 1.4674690365791321e-01 -1.2817619740962982e-01 + + + <_> + + 0 -1 262 3.9977379143238068e-02 + + + -6.3540339469909668e-02 6.0685801506042480e-01 + + + <_> + + 0 -1 263 -1.2663399800658226e-02 + + + 1.0982260107994080e-01 -1.2707209587097168e-01 + + + <_> + + 0 -1 264 1.0186760127544403e-01 + + + 8.8505871593952179e-02 -5.7165622711181641e-01 + + + <_> + + 0 -1 265 -1.0695089586079121e-03 + + + 3.4594889730215073e-02 -9.9618308246135712e-02 + + + <_> + + 0 -1 266 -3.4467370714992285e-03 + + + 2.2871519625186920e-01 -1.9664469361305237e-01 + + + <_> + + 0 -1 267 -1.2329400330781937e-01 + + + -1.0825649648904800e-01 2.4728389456868172e-02 + + + <_> + + 0 -1 268 -5.8832589536905289e-02 + + + 5.5791580677032471e-01 -7.7630676329135895e-02 + + + <_> + + 0 -1 269 9.7795920446515083e-03 + + + 9.4951488077640533e-02 -5.3767371177673340e-01 + + + <_> + + 0 -1 270 1.1116569861769676e-02 + + + -8.9288607239723206e-02 4.6695429086685181e-01 + + + <_> + + 0 -1 271 -1.5398260205984116e-02 + + + 9.0432487428188324e-02 -1.2233799695968628e-01 + + + <_> + + 0 -1 272 5.8570769615471363e-03 + + + 1.0859709978103638e-01 -4.0961760282516479e-01 + + + <_> + + 0 -1 273 6.6174753010272980e-02 + + + -4.4282642193138599e-03 -8.8055539131164551e-01 + + + <_> + + 0 -1 274 -1.0636489838361740e-02 + + + -4.4541570544242859e-01 1.0953740030527115e-01 + + + <_> + + 0 -1 275 -3.1363599002361298e-02 + + + 8.0546891689300537e-01 -4.9883890897035599e-02 + + + <_> + + 0 -1 276 9.8021561279892921e-04 + + + -2.3428329825401306e-01 1.6934409737586975e-01 + + + <_> + + 0 -1 277 5.3463829681277275e-03 + + + -1.0729180276393890e-01 2.5447541475296021e-01 + + + <_> + + 0 -1 278 -5.1919990219175816e-03 + + + -5.1496618986129761e-01 8.5118137300014496e-02 + + + <_> + + 0 -1 279 1.8721649423241615e-02 + + + -8.4052212536334991e-02 4.7836899757385254e-01 + + + <_> + + 0 -1 280 3.7875440903007984e-03 + + + -2.3145659267902374e-01 1.6052989661693573e-01 + + + <_> + + 0 -1 281 6.8765478208661079e-03 + + + 9.6559382975101471e-02 -2.3832960426807404e-01 + + + <_> + + 0 -1 282 -5.4661519825458527e-03 + + + -3.7871730327606201e-01 8.7851487100124359e-02 + + + <_> + + 0 -1 283 -1.5829449519515038e-02 + + + 5.2159512042999268e-01 -7.3916867375373840e-02 + + + <_> + + 0 -1 284 1.2771990150213242e-02 + + + 1.0658729821443558e-01 -3.2850459218025208e-01 + + + <_> + + 0 -1 285 4.7000780701637268e-02 + + + -2.9548000544309616e-02 4.8469349741935730e-01 + + + <_> + + 0 -1 286 1.1224800255149603e-03 + + + -2.1395659446716309e-01 1.5407760441303253e-01 + + + <_> + + 0 -1 287 -1.0136750061064959e-03 + + + 2.3574739694595337e-01 -1.4536799490451813e-01 + + + <_> + + 0 -1 288 5.2841319702565670e-03 + + + 8.0536216497421265e-02 -3.6417248845100403e-01 + + + <_> + + 0 -1 289 -1.7608689144253731e-02 + + + 5.3858822584152222e-01 -3.5741850733757019e-02 + + + <_> + + 0 -1 290 3.4710608422756195e-02 + + + -4.3261460959911346e-02 7.7817600965499878e-01 + + + <_> + + 0 -1 291 1.6450349241495132e-02 + + + 4.1815090924501419e-02 -3.4912678599357605e-01 + + + + + <_> + 45 + -1.0216469764709473e+00 + + <_> + + 0 -1 292 -1.7846419941633940e-03 + + + 2.2014810144901276e-01 -3.6912658810615540e-01 + + + <_> + + 0 -1 293 -6.1350408941507339e-04 + + + -3.0695998668670654e-01 9.7717791795730591e-02 + + + <_> + + 0 -1 294 -2.5726810563355684e-03 + + + -3.7789058685302734e-01 1.7042149603366852e-01 + + + <_> + + 0 -1 295 8.8661757763475180e-04 + + + -3.7929078936576843e-01 9.3289971351623535e-02 + + + <_> + + 0 -1 296 3.5716239362955093e-02 + + + 7.3169313371181488e-02 -6.1792898178100586e-01 + + + <_> + + 0 -1 297 3.5162840038537979e-02 + + + -1.2328250333666801e-02 4.4894638657569885e-01 + + + <_> + + 0 -1 298 -5.8216741308569908e-03 + + + -4.9501991271972656e-01 8.8005952537059784e-02 + + + <_> + + 0 -1 299 -7.7909301035106182e-04 + + + 1.1154119670391083e-01 -2.8316551446914673e-01 + + + <_> + + 0 -1 300 -6.8164491094648838e-03 + + + 1.8434180319309235e-01 -2.3727069795131683e-01 + + + <_> + + 0 -1 301 9.0218139812350273e-03 + + + -5.3773559629917145e-02 2.6174989342689514e-01 + + + <_> + + 0 -1 302 -6.7481878213584423e-03 + + + -5.0475108623504639e-01 7.6614417135715485e-02 + + + <_> + + 0 -1 303 7.5771231204271317e-03 + + + -1.1926110088825226e-01 3.4210419654846191e-01 + + + <_> + + 0 -1 304 -4.6335519291460514e-03 + + + -4.9088281393051147e-01 6.9542020559310913e-02 + + + <_> + + 0 -1 305 4.1346959769725800e-03 + + + -8.1591427326202393e-02 4.7879660129547119e-01 + + + <_> + + 0 -1 306 -9.8444558680057526e-03 + + + 2.0124210417270660e-01 -2.3769280314445496e-01 + + + <_> + + 0 -1 307 -3.4897070378065109e-02 + + + -9.1024678945541382e-01 1.8579540774226189e-02 + + + <_> + + 0 -1 308 -3.5042490344494581e-04 + + + 1.2479469925165176e-01 -3.0717149376869202e-01 + + + <_> + + 0 -1 309 -9.4668623059988022e-03 + + + 1.1332949995994568e-01 -1.6115890443325043e-01 + + + <_> + + 0 -1 310 2.2053409367799759e-02 + + + -7.9784400761127472e-02 6.0739010572433472e-01 + + + <_> + + 0 -1 311 -7.2947797889355570e-05 + + + 1.4449119567871094e-01 -1.3706150650978088e-01 + + + <_> + + 0 -1 312 -7.5134839862585068e-03 + + + -3.0744421482086182e-01 1.0279080271720886e-01 + + + <_> + + 0 -1 313 1.0311939753592014e-02 + + + -7.0246197283267975e-02 4.8307010531425476e-01 + + + <_> + + 0 -1 314 9.4670448452234268e-03 + + + 7.0281803607940674e-02 -4.7069519758224487e-01 + + + <_> + + 0 -1 315 -3.0116239562630653e-02 + + + 5.2378559112548828e-01 -3.7109669297933578e-02 + + + <_> + + 0 -1 316 -1.2667849659919739e-02 + + + -6.0825890302658081e-01 5.0444670021533966e-02 + + + <_> + + 0 -1 317 2.2987429983913898e-03 + + + -1.1808679997920990e-01 1.7393890023231506e-01 + + + <_> + + 0 -1 318 2.5533209554851055e-03 + + + -1.6625979542732239e-01 1.9768959283828735e-01 + + + <_> + + 0 -1 319 -3.3218199014663696e-01 + + + -9.5407789945602417e-01 4.1291080415248871e-03 + + + <_> + + 0 -1 320 5.4485369473695755e-03 + + + -9.1220542788505554e-02 3.9834749698638916e-01 + + + <_> + + 0 -1 321 4.7633191570639610e-03 + + + -1.2069889903068542e-01 1.6169339418411255e-01 + + + <_> + + 0 -1 322 4.4371229596436024e-03 + + + 8.5928186774253845e-02 -4.4427189230918884e-01 + + + <_> + + 0 -1 323 2.7019889093935490e-03 + + + -1.9511219859123230e-01 7.1141660213470459e-02 + + + <_> + + 0 -1 324 -1.4219670556485653e-03 + + + 1.9089500606060028e-01 -1.8880489468574524e-01 + + + <_> + + 0 -1 325 -6.9531630724668503e-03 + + + -2.6191520690917969e-01 7.7488146722316742e-02 + + + <_> + + 0 -1 326 -2.6554360985755920e-01 + + + 4.7893580794334412e-01 -7.8830257058143616e-02 + + + <_> + + 0 -1 327 5.4960828274488449e-03 + + + 6.4748808741569519e-02 -4.0898790955543518e-01 + + + <_> + + 0 -1 328 1.6060929745435715e-02 + + + 9.4868503510951996e-02 -3.5040768980979919e-01 + + + <_> + + 0 -1 329 -3.5279421135783195e-03 + + + 2.2704540193080902e-01 -1.5011039376258850e-01 + + + <_> + + 0 -1 330 1.5189720317721367e-02 + + + -8.6033642292022705e-02 5.0375241041183472e-01 + + + <_> + + 0 -1 331 9.8117031157016754e-03 + + + 9.1945856809616089e-02 -2.7134710550308228e-01 + + + <_> + + 0 -1 332 -8.9835934340953827e-03 + + + -3.5721930861473083e-01 1.1564330011606216e-01 + + + <_> + + 0 -1 333 2.5472430512309074e-02 + + + -3.8861878216266632e-02 5.0707322359085083e-01 + + + <_> + + 0 -1 334 1.3594819465652108e-03 + + + -1.5127420425415039e-01 2.3332439363002777e-01 + + + <_> + + 0 -1 335 1.4673129655420780e-02 + + + 7.6386481523513794e-02 -4.3126261234283447e-01 + + + <_> + + 0 -1 336 -2.1757239475846291e-02 + + + 6.0306608676910400e-01 -5.7926669716835022e-02 + + + + + <_> + 49 + -1.0149190425872803e+00 + + <_> + + 0 -1 337 -1.9122850149869919e-02 + + + 2.1423059701919556e-01 -4.0178310871124268e-01 + + + <_> + + 0 -1 338 -4.0749661275185645e-04 + + + 1.0837800055742264e-01 -9.7847007215023041e-02 + + + <_> + + 0 -1 339 1.8419560045003891e-02 + + + 9.4817012548446655e-02 -4.4825899600982666e-01 + + + <_> + + 0 -1 340 -3.0946850893087685e-04 + + + 1.1567220091819763e-01 -6.9291338324546814e-02 + + + <_> + + 0 -1 341 2.4416830390691757e-02 + + + -2.6403778791427612e-01 1.4588509500026703e-01 + + + <_> + + 0 -1 342 3.9483308792114258e-03 + + + 7.8703567385673523e-02 -3.9770650863647461e-01 + + + <_> + + 0 -1 343 1.5498059801757336e-02 + + + -6.8623371422290802e-02 6.3598757982254028e-01 + + + <_> + + 0 -1 344 1.0397369973361492e-02 + + + 5.3116258233785629e-02 -2.4757599830627441e-01 + + + <_> + + 0 -1 345 1.0350650409236550e-03 + + + -2.2953610122203827e-01 2.1623679995536804e-01 + + + <_> + + 0 -1 346 -6.9717521546408534e-04 + + + 1.6330949962139130e-01 -2.7930000424385071e-01 + + + <_> + + 0 -1 347 1.1055100476369262e-03 + + + -2.6721170544624329e-01 1.3809490203857422e-01 + + + <_> + + 0 -1 348 1.8128760159015656e-02 + + + 7.8602522611618042e-02 -3.3748328685760498e-01 + + + <_> + + 0 -1 349 -1.4303029747679830e-03 + + + 1.5668049454689026e-01 -2.5422498583793640e-01 + + + <_> + + 0 -1 350 1.0650220327079296e-02 + + + -4.1638601571321487e-02 3.2634070515632629e-01 + + + <_> + + 0 -1 351 -1.0680139530450106e-03 + + + 1.7996980249881744e-01 -2.0673060417175293e-01 + + + <_> + + 0 -1 352 -8.0095082521438599e-03 + + + -2.8778979182243347e-01 7.5492449104785919e-02 + + + <_> + + 0 -1 353 -1.1857559904456139e-02 + + + -5.5485212802886963e-01 4.7465000301599503e-02 + + + <_> + + 0 -1 354 -1.9440150260925293e-01 + + + 4.9564599990844727e-01 -6.8522267043590546e-02 + + + <_> + + 0 -1 355 1.2786169536411762e-02 + + + -5.8201011270284653e-02 5.1194858551025391e-01 + + + <_> + + 0 -1 356 1.1360739590600133e-03 + + + -2.1216529607772827e-01 1.4639540016651154e-01 + + + <_> + + 0 -1 357 -3.7541511119343340e-04 + + + 1.1406060308218002e-01 -2.7936661243438721e-01 + + + <_> + + 0 -1 358 6.2142009846866131e-03 + + + 2.8568789362907410e-02 -3.2485058903694153e-01 + + + <_> + + 0 -1 359 4.5166439376771450e-03 + + + -9.5556378364562988e-02 3.6032339930534363e-01 + + + <_> + + 0 -1 360 -1.7354219453409314e-03 + + + -8.0804876983165741e-02 5.3851570934057236e-02 + + + <_> + + 0 -1 361 -6.9608418270945549e-03 + + + -6.0131508111953735e-01 4.5509491115808487e-02 + + + <_> + + 0 -1 362 8.7833311408758163e-03 + + + -9.4497971236705780e-02 3.1924161314964294e-01 + + + <_> + + 0 -1 363 -2.0243569742888212e-03 + + + 2.6737558841705322e-01 -1.1679279804229736e-01 + + + <_> + + 0 -1 364 5.6362948380410671e-03 + + + 4.6491090208292007e-02 -2.3982259631156921e-01 + + + <_> + + 0 -1 365 -2.1751220338046551e-03 + + + -3.1831741333007812e-01 1.1634550243616104e-01 + + + <_> + + 0 -1 366 2.5424890220165253e-02 + + + 7.5600057840347290e-02 -3.7359631061553955e-01 + + + <_> + + 0 -1 367 3.9950129576027393e-04 + + + -2.6206868886947632e-01 1.4345559477806091e-01 + + + <_> + + 0 -1 368 -3.9724060334265232e-03 + + + 2.0395089685916901e-01 -1.1896310001611710e-01 + + + <_> + + 0 -1 369 2.4637179449200630e-03 + + + -1.3687339425086975e-01 3.4098258614540100e-01 + + + <_> + + 0 -1 370 1.4397709630429745e-02 + + + 2.4846889078617096e-02 -6.5415948629379272e-01 + + + <_> + + 0 -1 371 -1.4848919818177819e-05 + + + 1.3884930312633514e-01 -2.1077479422092438e-01 + + + <_> + + 0 -1 372 -3.8339510560035706e-02 + + + 5.8668392896652222e-01 -3.6245860159397125e-02 + + + <_> + + 0 -1 373 -5.4605712648481131e-04 + + + 2.1259330213069916e-01 -1.3791069388389587e-01 + + + <_> + + 0 -1 374 1.3036499731242657e-02 + + + 5.0619971007108688e-02 -2.3150099813938141e-01 + + + <_> + + 0 -1 375 -2.4273560848087072e-03 + + + 2.4302999675273895e-01 -1.1315950006246567e-01 + + + <_> + + 0 -1 376 -6.3351681455969810e-03 + + + -3.5549488663673401e-01 9.4948403537273407e-02 + + + <_> + + 0 -1 377 -5.7510860264301300e-02 + + + 4.9378138780593872e-01 -6.0664121061563492e-02 + + + <_> + + 0 -1 378 6.8376341369003057e-04 + + + -1.9417250156402588e-01 1.4234590530395508e-01 + + + <_> + + 0 -1 379 8.8113872334361076e-03 + + + 4.7562059015035629e-02 -5.8416491746902466e-01 + + + <_> + + 0 -1 380 1.0788169689476490e-02 + + + -4.6855889260768890e-02 1.6548010706901550e-01 + + + <_> + + 0 -1 381 -1.3571690069511533e-03 + + + -3.2510679960250854e-01 9.4090476632118225e-02 + + + <_> + + 0 -1 382 -1.0195979848504066e-02 + + + -1.4696849882602692e-01 2.6246059685945511e-02 + + + <_> + + 0 -1 383 -1.2560819741338491e-03 + + + 2.2853380441665649e-01 -1.6265660524368286e-01 + + + <_> + + 0 -1 384 6.6750420955941081e-04 + + + -1.3430669903755188e-01 1.3987569510936737e-01 + + + <_> + + 0 -1 385 2.0975170191377401e-03 + + + -1.2987610697746277e-01 1.9978469610214233e-01 + + + + + <_> + 53 + -9.3152678012847900e-01 + + <_> + + 0 -1 386 -3.6917610559612513e-03 + + + 2.2682790458202362e-01 -4.1167381405830383e-01 + + + <_> + + 0 -1 387 -9.4609148800373077e-03 + + + 1.6305020451545715e-01 -2.2949010133743286e-01 + + + <_> + + 0 -1 388 3.3874800428748131e-03 + + + 7.7644690871238708e-02 -4.7465118765830994e-01 + + + <_> + + 0 -1 389 3.3596849534660578e-03 + + + -1.4722810685634613e-01 1.3755659759044647e-01 + + + <_> + + 0 -1 390 -2.2649099119007587e-03 + + + -2.9027861356735229e-01 1.2261869758367538e-01 + + + <_> + + 0 -1 391 -5.5420072749257088e-04 + + + 1.1591990292072296e-01 -2.3066529631614685e-01 + + + <_> + + 0 -1 392 1.9706019666045904e-03 + + + 1.1808300018310547e-01 -3.7879431247711182e-01 + + + <_> + + 0 -1 393 1.7503080889582634e-02 + + + -9.4161599874496460e-02 4.7933238744735718e-01 + + + <_> + + 0 -1 394 -2.9575270600616932e-03 + + + 1.7336699366569519e-01 -3.1673321127891541e-01 + + + <_> + + 0 -1 395 -2.6238700747489929e-01 + + + -7.4405288696289062e-01 8.9512793347239494e-03 + + + <_> + + 0 -1 396 5.5493800900876522e-03 + + + -2.4088740348815918e-01 1.4212040603160858e-01 + + + <_> + + 0 -1 397 -1.4842569828033447e-02 + + + 5.5166311562061310e-02 -8.5363000631332397e-02 + + + <_> + + 0 -1 398 -1.8193490803241730e-02 + + + -7.5389099121093750e-01 4.4062498956918716e-02 + + + <_> + + 0 -1 399 -1.9381130114197731e-03 + + + 1.4762139320373535e-01 -1.4214770495891571e-01 + + + <_> + + 0 -1 400 -6.1375028453767300e-03 + + + -5.4175209999084473e-01 5.2872691303491592e-02 + + + <_> + + 0 -1 401 1.6630079597234726e-02 + + + -6.0005810111761093e-02 5.2294141054153442e-01 + + + <_> + + 0 -1 402 -9.7470665350556374e-03 + + + -3.1776770949363708e-01 9.4077728688716888e-02 + + + <_> + + 0 -1 403 -3.9159679412841797e-01 + + + 5.1550501585006714e-01 -8.6178213357925415e-02 + + + <_> + + 0 -1 404 1.0457860305905342e-02 + + + -5.4442230612039566e-02 5.5086338520050049e-01 + + + <_> + + 0 -1 405 9.2479586601257324e-02 + + + 9.5865959301590919e-03 -7.5205242633819580e-01 + + + <_> + + 0 -1 406 -1.3383329845964909e-02 + + + -2.5909280776977539e-01 1.2255199998617172e-01 + + + <_> + + 0 -1 407 -1.9297929480671883e-02 + + + -1.8686549365520477e-01 4.2670380324125290e-02 + + + <_> + + 0 -1 408 -1.1118740076199174e-03 + + + 1.4586099982261658e-01 -2.2742809355258942e-01 + + + <_> + + 0 -1 409 2.3209059610962868e-02 + + + 2.1769199520349503e-02 -2.4001930654048920e-01 + + + <_> + + 0 -1 410 6.9435071200132370e-03 + + + -8.4814570844173431e-02 3.8388100266456604e-01 + + + <_> + + 0 -1 411 -1.0249669849872589e-01 + + + -7.0618611574172974e-01 1.2580949813127518e-02 + + + <_> + + 0 -1 412 -1.4036430045962334e-02 + + + -3.8427880406379700e-01 8.7678723037242889e-02 + + + <_> + + 0 -1 413 6.8071340210735798e-03 + + + -7.5941346585750580e-02 7.6014332473278046e-02 + + + <_> + + 0 -1 414 4.8163239844143391e-03 + + + -1.6402910649776459e-01 2.0124110579490662e-01 + + + <_> + + 0 -1 415 -3.0274710152298212e-03 + + + -2.8118729591369629e-01 6.8671241402626038e-02 + + + <_> + + 0 -1 416 -1.6530510038137436e-03 + + + 2.1427379548549652e-01 -1.3038359582424164e-01 + + + <_> + + 0 -1 417 -3.9757499471306801e-03 + + + -2.3737999796867371e-01 5.1290549337863922e-02 + + + <_> + + 0 -1 418 6.9589749909937382e-03 + + + -1.3246279954910278e-01 2.3703409731388092e-01 + + + <_> + + 0 -1 419 7.2270620148628950e-04 + + + 5.0478070974349976e-02 -1.3544809818267822e-01 + + + <_> + + 0 -1 420 1.5057729557156563e-02 + + + -6.6954463720321655e-02 4.5368999242782593e-01 + + + <_> + + 0 -1 421 6.5838429145514965e-03 + + + 3.9054669439792633e-02 -1.9516509771347046e-01 + + + <_> + + 0 -1 422 -2.9128929600119591e-03 + + + 1.7604969441890717e-01 -1.5639689564704895e-01 + + + <_> + + 0 -1 423 6.4386397600173950e-01 + + + -1.1777699925005436e-02 1.0000569820404053e+00 + + + <_> + + 0 -1 424 5.1160277798771858e-03 + + + 9.5464669167995453e-02 -3.7832370400428772e-01 + + + <_> + + 0 -1 425 6.8325497210025787e-02 + + + -3.9297499461099505e-04 -9.9986249208450317e-01 + + + <_> + + 0 -1 426 4.4071719050407410e-02 + + + 2.8716549277305603e-02 -9.0306490659713745e-01 + + + <_> + + 0 -1 427 -1.5712520107626915e-02 + + + 2.4888029694557190e-01 -5.3066261112689972e-02 + + + <_> + + 0 -1 428 -3.9486829191446304e-03 + + + -5.0214129686355591e-01 5.2089609205722809e-02 + + + <_> + + 0 -1 429 1.1841469677165151e-03 + + + 6.2122888863086700e-02 -1.6479890048503876e-01 + + + <_> + + 0 -1 430 -1.1385709792375565e-01 + + + 5.6728571653366089e-01 -3.8864318281412125e-02 + + + <_> + + 0 -1 431 6.2493737787008286e-03 + + + 8.7858140468597412e-02 -2.8675949573516846e-01 + + + <_> + + 0 -1 432 -2.3781529162079096e-03 + + + 2.6684141159057617e-01 -9.3291386961936951e-02 + + + <_> + + 0 -1 433 -6.3620522618293762e-02 + + + 1.5153369307518005e-01 -1.5354029834270477e-02 + + + <_> + + 0 -1 434 7.9275481402873993e-03 + + + 8.8268518447875977e-02 -3.1872791051864624e-01 + + + <_> + + 0 -1 435 1.0556660126894712e-03 + + + -1.0226110368967056e-01 6.0546699911355972e-02 + + + <_> + + 0 -1 436 9.1879200190305710e-03 + + + 8.0963402986526489e-02 -3.5031539201736450e-01 + + + <_> + + 0 -1 437 3.9727380499243736e-03 + + + -1.0334850102663040e-01 2.7450188994407654e-01 + + + <_> + + 0 -1 438 1.7149309860542417e-03 + + + -1.2329679727554321e-01 2.1561819314956665e-01 + + + + + <_> + 55 + -9.3984860181808472e-01 + + <_> + + 0 -1 439 -1.4547890052199364e-02 + + + -5.7042872905731201e-01 1.0164090245962143e-01 + + + <_> + + 0 -1 440 -1.2570459512062371e-04 + + + 7.7566891908645630e-02 -2.9524150490760803e-01 + + + <_> + + 0 -1 441 9.4022490084171295e-03 + + + -3.2618519663810730e-01 1.3688039779663086e-01 + + + <_> + + 0 -1 442 -5.1469001919031143e-03 + + + -2.2486360371112823e-01 1.4886389672756195e-01 + + + <_> + + 0 -1 443 -3.1212199246510863e-04 + + + 1.1287149786949158e-01 -3.2888731360435486e-01 + + + <_> + + 0 -1 444 1.8742609769105911e-02 + + + -1.8080070614814758e-02 3.0115321278572083e-01 + + + <_> + + 0 -1 445 2.9675778932869434e-03 + + + -2.5948849320411682e-01 1.3308060169219971e-01 + + + <_> + + 0 -1 446 -3.0295079573988914e-02 + + + -6.0041320323944092e-01 3.3516548573970795e-02 + + + <_> + + 0 -1 447 6.4835487864911556e-03 + + + -7.7768087387084961e-02 4.6268320083618164e-01 + + + <_> + + 0 -1 448 2.2889559622853994e-03 + + + 6.0411829501390457e-02 -1.7498730123043060e-01 + + + <_> + + 0 -1 449 -1.6078320331871510e-03 + + + -2.9557180404663086e-01 1.5449790656566620e-01 + + + <_> + + 0 -1 450 -2.3348669707775116e-01 + + + -6.3751947879791260e-01 1.3748309575021267e-02 + + + <_> + + 0 -1 451 5.8999718166887760e-03 + + + 1.2713789939880371e-01 -3.2689490914344788e-01 + + + <_> + + 0 -1 452 1.2073719874024391e-02 + + + 1.6614260151982307e-02 -2.2707170248031616e-01 + + + <_> + + 0 -1 453 -5.6356011191383004e-04 + + + 1.6879190504550934e-01 -1.9605310261249542e-01 + + + <_> + + 0 -1 454 1.7435080371797085e-03 + + + -1.3831000030040741e-01 2.2103509306907654e-01 + + + <_> + + 0 -1 455 6.6066621802747250e-03 + + + 4.4354528188705444e-02 -6.7365241050720215e-01 + + + <_> + + 0 -1 456 -5.9419698081910610e-03 + + + 1.7569009959697723e-01 -1.3697220385074615e-01 + + + <_> + + 0 -1 457 4.9261527601629496e-04 + + + -2.1035130321979523e-01 1.3241830468177795e-01 + + + <_> + + 0 -1 458 -3.6582869943231344e-03 + + + 1.5420369803905487e-01 -1.0563220083713531e-01 + + + <_> + + 0 -1 459 -1.4477679505944252e-03 + + + -2.8920960426330566e-01 1.4950390160083771e-01 + + + <_> + + 0 -1 460 -1.0310580255463719e-03 + + + 8.8572971522808075e-02 -9.0375833213329315e-02 + + + <_> + + 0 -1 461 3.2927519641816616e-03 + + + -1.1087729781866074e-01 3.0003741383552551e-01 + + + <_> + + 0 -1 462 -1.6668019816279411e-03 + + + -6.2054108828306198e-02 2.2652259469032288e-01 + + + <_> + + 0 -1 463 1.3452100101858377e-03 + + + 9.2012971639633179e-02 -3.5944160819053650e-01 + + + <_> + + 0 -1 464 -1.4981569722294807e-02 + + + 3.6636090278625488e-01 -6.4556807279586792e-02 + + + <_> + + 0 -1 465 6.2536462210118771e-03 + + + 6.9381363689899445e-02 -4.1023838520050049e-01 + + + <_> + + 0 -1 466 5.0937399268150330e-02 + + + 1.7869930714368820e-02 -6.0524070262908936e-01 + + + <_> + + 0 -1 467 1.0756580159068108e-03 + + + -2.3777949810028076e-01 1.4223319292068481e-01 + + + <_> + + 0 -1 468 -4.1086040437221527e-03 + + + 1.4915379881858826e-01 -1.9213069975376129e-01 + + + <_> + + 0 -1 469 -1.3338520191609859e-02 + + + -4.9711030721664429e-01 6.5755158662796021e-02 + + + <_> + + 0 -1 470 3.1997971236705780e-02 + + + -6.4927592873573303e-02 6.6577041149139404e-01 + + + <_> + + 0 -1 471 -4.9686059355735779e-02 + + + 5.0676888227462769e-01 -6.4676910638809204e-02 + + + <_> + + 0 -1 472 6.0286428779363632e-03 + + + 8.8214896619319916e-02 -2.7923619747161865e-01 + + + <_> + + 0 -1 473 -6.9053061306476593e-03 + + + -6.1452347040176392e-01 3.5631489008665085e-02 + + + <_> + + 0 -1 474 5.8130919933319092e-03 + + + -9.3653626739978790e-02 9.9817357957363129e-02 + + + <_> + + 0 -1 475 -1.1030419729650021e-02 + + + 4.5798170566558838e-01 -6.5124973654747009e-02 + + + <_> + + 0 -1 476 -1.5703570097684860e-03 + + + 4.7113660722970963e-02 -1.3347460329532623e-01 + + + <_> + + 0 -1 477 4.6482901088893414e-03 + + + 7.3932677507400513e-02 -4.2145860195159912e-01 + + + <_> + + 0 -1 478 5.0479872152209282e-04 + + + -2.0517270267009735e-01 9.5128253102302551e-02 + + + <_> + + 0 -1 479 2.6125760748982430e-02 + + + -6.8816967308521271e-02 4.2644789814949036e-01 + + + <_> + + 0 -1 480 6.4811189658939838e-03 + + + 1.1302389949560165e-01 -4.7021061182022095e-01 + + + <_> + + 0 -1 481 -4.5484181493520737e-02 + + + 5.4101467132568359e-01 -5.6804839521646500e-02 + + + <_> + + 0 -1 482 6.8956136703491211e-02 + + + 3.4444119781255722e-02 -1.7411549389362335e-01 + + + <_> + + 0 -1 483 -2.0358948968350887e-03 + + + 1.3366940617561340e-01 -2.0985920727252960e-01 + + + <_> + + 0 -1 484 1.4390050200745463e-03 + + + -1.6449619829654694e-01 9.8886348307132721e-02 + + + <_> + + 0 -1 485 3.0180480331182480e-02 + + + 8.7635383009910583e-02 -3.9464119076728821e-01 + + + <_> + + 0 -1 486 -3.8663588929921389e-03 + + + 1.5964619815349579e-01 -1.1840829998254776e-01 + + + <_> + + 0 -1 487 1.0753490030765533e-02 + + + -5.7142060250043869e-02 5.0125277042388916e-01 + + + <_> + + 0 -1 488 1.0978150181472301e-02 + + + 3.5985160619020462e-02 -3.8646480441093445e-01 + + + <_> + + 0 -1 489 -7.8152219066396356e-04 + + + 1.8248090147972107e-01 -1.6435949504375458e-01 + + + <_> + + 0 -1 490 -6.9936108775436878e-03 + + + -2.6556238532066345e-01 9.4436101615428925e-02 + + + <_> + + 0 -1 491 2.3125730454921722e-02 + + + -5.9101939201354980e-02 5.7359057664871216e-01 + + + <_> + + 0 -1 492 -1.7055520787835121e-02 + + + -5.4567247629165649e-01 2.7153130620718002e-02 + + + <_> + + 0 -1 493 1.5192289836704731e-02 + + + 9.2580981552600861e-02 -2.9735139012336731e-01 + + + + + <_> + 53 + -8.2538652420043945e-01 + + <_> + + 0 -1 494 -2.1589139476418495e-02 + + + 3.3779260516166687e-01 -2.6725459098815918e-01 + + + <_> + + 0 -1 495 6.3885431736707687e-03 + + + -2.6759129762649536e-01 2.1438689529895782e-01 + + + <_> + + 0 -1 496 -2.4394609499722719e-03 + + + 1.8841089308261871e-01 -2.3495130240917206e-01 + + + <_> + + 0 -1 497 3.9824391715228558e-03 + + + 4.6689908951520920e-02 -1.7984829843044281e-01 + + + <_> + + 0 -1 498 -3.1252959161065519e-04 + + + 1.7267709970474243e-01 -1.8782779574394226e-01 + + + <_> + + 0 -1 499 3.3181109465658665e-03 + + + 1.2081120163202286e-01 -3.2373869419097900e-01 + + + <_> + + 0 -1 500 -7.0711369626224041e-03 + + + -2.7498379349708557e-01 1.3868269324302673e-01 + + + <_> + + 0 -1 501 4.4392608106136322e-03 + + + -2.2279019653797150e-01 1.7155140638351440e-01 + + + <_> + + 0 -1 502 2.1352670155465603e-03 + + + -1.1322859674692154e-01 2.8428959846496582e-01 + + + <_> + + 0 -1 503 -4.0205409750342369e-03 + + + -2.4542550742626190e-01 9.4957500696182251e-02 + + + <_> + + 0 -1 504 -6.5228617750108242e-03 + + + 3.2106789946556091e-01 -9.7372367978096008e-02 + + + <_> + + 0 -1 505 4.4146090658614412e-05 + + + -1.5269330143928528e-01 8.5128836333751678e-02 + + + <_> + + 0 -1 506 4.7606039792299271e-02 + + + 7.9339757561683655e-02 -2.9599419236183167e-01 + + + <_> + + 0 -1 507 4.0928661823272705e-02 + + + -3.5142261534929276e-02 3.7593579292297363e-01 + + + <_> + + 0 -1 508 -1.1161889880895615e-02 + + + -2.6747810840606689e-01 8.9181788265705109e-02 + + + <_> + + 0 -1 509 -2.9888451099395752e-01 + + + 4.8014399409294128e-01 -7.2485052049160004e-02 + + + <_> + + 0 -1 510 1.1514360085129738e-02 + + + -5.9218250215053558e-02 4.0962639451026917e-01 + + + <_> + + 0 -1 511 -2.6182739529758692e-03 + + + -1.8478739261627197e-01 3.9801560342311859e-02 + + + <_> + + 0 -1 512 -1.2829460320062935e-04 + + + 1.0710919648408890e-01 -2.4155279994010925e-01 + + + <_> + + 0 -1 513 -6.9328160025179386e-03 + + + -2.9845720529556274e-01 4.5657958835363388e-02 + + + <_> + + 0 -1 514 -6.3937888480722904e-03 + + + 1.8363510072231293e-01 -1.4049419760704041e-01 + + + <_> + + 0 -1 515 4.1702711023390293e-03 + + + -5.1890019327402115e-02 1.0211580246686935e-01 + + + <_> + + 0 -1 516 1.0390999726951122e-02 + + + -1.3426989316940308e-01 1.9137309491634369e-01 + + + <_> + + 0 -1 517 1.3004739768803120e-02 + + + -4.5922718942165375e-02 3.0526930093765259e-01 + + + <_> + + 0 -1 518 -4.0645021945238113e-03 + + + -4.8477160930633545e-01 6.9338463246822357e-02 + + + <_> + + 0 -1 519 -3.7050418904982507e-04 + + + 1.0090719908475876e-01 -6.8911276757717133e-02 + + + <_> + + 0 -1 520 8.8882551062852144e-04 + + + -1.6742789745330811e-01 1.8965889513492584e-01 + + + <_> + + 0 -1 521 -4.8583559691905975e-03 + + + -4.0789389610290527e-01 5.1483351737260818e-02 + + + <_> + + 0 -1 522 4.4327960349619389e-03 + + + -1.4262509346008301e-01 1.8987190723419189e-01 + + + <_> + + 0 -1 523 2.0999709144234657e-02 + + + 9.2153772711753845e-02 -3.0773550271987915e-01 + + + <_> + + 0 -1 524 -2.2740170825272799e-03 + + + 1.5176279842853546e-01 -1.6528700292110443e-01 + + + <_> + + 0 -1 525 -1.5075540170073509e-02 + + + -3.1039240956306458e-01 6.5696939826011658e-02 + + + <_> + + 0 -1 526 9.5290662720799446e-03 + + + -6.7693017423152924e-02 4.0692031383514404e-01 + + + <_> + + 0 -1 527 1.2057139538228512e-03 + + + 4.3188188225030899e-02 -1.8454369902610779e-01 + + + <_> + + 0 -1 528 -2.4757070466876030e-02 + + + 6.6890978813171387e-01 -3.4418709576129913e-02 + + + <_> + + 0 -1 529 3.0408669263124466e-03 + + + -1.3256159424781799e-01 9.5131039619445801e-02 + + + <_> + + 0 -1 530 -1.5181970084086061e-03 + + + 1.2939499318599701e-01 -1.8558539450168610e-01 + + + <_> + + 0 -1 531 -2.4845359846949577e-02 + + + -7.3013377189636230e-01 9.4545418396592140e-03 + + + <_> + + 0 -1 532 -8.1413304433226585e-03 + + + 1.1521799862384796e-01 -1.9038149714469910e-01 + + + <_> + + 0 -1 533 -4.2350329458713531e-03 + + + 7.2733633220195770e-02 -1.0841889679431915e-01 + + + <_> + + 0 -1 534 9.9135711789131165e-03 + + + -8.4218956530094147e-02 4.7613239288330078e-01 + + + <_> + + 0 -1 535 -2.7879870031028986e-03 + + + -1.2846939265727997e-01 6.5720662474632263e-02 + + + <_> + + 0 -1 536 2.6451589073985815e-03 + + + 8.9269757270812988e-02 -2.6216679811477661e-01 + + + <_> + + 0 -1 537 -2.6683490723371506e-02 + + + 8.9870773255825043e-02 -9.6914090216159821e-02 + + + <_> + + 0 -1 538 3.1197380740195513e-03 + + + -1.1731740087270737e-01 2.2004860639572144e-01 + + + <_> + + 0 -1 539 -2.3388290405273438e-01 + + + -9.0905857086181641e-01 5.6871720589697361e-03 + + + <_> + + 0 -1 540 1.0922820307314396e-02 + + + 8.5061840713024139e-02 -3.0725648999214172e-01 + + + <_> + + 0 -1 541 9.4858808442950249e-03 + + + -2.2317569702863693e-02 3.3745709061622620e-01 + + + <_> + + 0 -1 542 -5.1413412438705564e-04 + + + 1.4860659837722778e-01 -1.5598359704017639e-01 + + + <_> + + 0 -1 543 6.5561588853597641e-03 + + + 6.6693432629108429e-02 -2.9945740103721619e-01 + + + <_> + + 0 -1 544 9.8293996416032314e-04 + + + -1.9923539459705353e-01 1.4816479384899139e-01 + + + <_> + + 0 -1 545 -1.8866109894588590e-03 + + + 8.6462371051311493e-02 -1.6101740300655365e-01 + + + <_> + + 0 -1 546 2.7264489326626062e-03 + + + -8.2049086689949036e-02 3.8679501414299011e-01 + + + + + <_> + 60 + -8.3464938402175903e-01 + + <_> + + 0 -1 547 -1.2602520175278187e-02 + + + 2.2423070669174194e-01 -3.3462178707122803e-01 + + + <_> + + 0 -1 548 2.5659699458628893e-03 + + + 8.5756540298461914e-02 -3.2376360893249512e-01 + + + <_> + + 0 -1 549 -1.2003120500594378e-03 + + + 1.4650370180606842e-01 -3.0306750535964966e-01 + + + <_> + + 0 -1 550 4.7978968359529972e-03 + + + -2.4725909531116486e-01 5.2705809473991394e-02 + + + <_> + + 0 -1 551 -5.9380318270996213e-04 + + + -1.8883049488067627e-01 1.5490350127220154e-01 + + + <_> + + 0 -1 552 8.1017091870307922e-03 + + + 1.0764879733324051e-01 -2.4738930165767670e-01 + + + <_> + + 0 -1 553 -6.8427261430770159e-04 + + + 1.8282850086688995e-01 -1.6550099849700928e-01 + + + <_> + + 0 -1 554 4.5279348269104958e-03 + + + -5.5668760091066360e-02 4.1382691264152527e-01 + + + <_> + + 0 -1 555 3.8289420772343874e-03 + + + -2.2222219407558441e-01 1.5282329916954041e-01 + + + <_> + + 0 -1 556 -6.2229200266301632e-03 + + + -3.2351690530776978e-01 6.8372547626495361e-02 + + + <_> + + 0 -1 557 -6.1763478443026543e-03 + + + -3.9912268519401550e-01 7.7707469463348389e-02 + + + <_> + + 0 -1 558 -8.7820261716842651e-02 + + + 5.8577078580856323e-01 -5.3584650158882141e-02 + + + <_> + + 0 -1 559 -6.8017458543181419e-03 + + + -4.3307110667228699e-01 6.2693849205970764e-02 + + + <_> + + 0 -1 560 1.0741569567471743e-03 + + + -1.1966490000486374e-01 5.5397849529981613e-02 + + + <_> + + 0 -1 561 -3.0490919947624207e-02 + + + -2.3663240671157837e-01 1.0002999752759933e-01 + + + <_> + + 0 -1 562 5.1879119127988815e-02 + + + -3.6418840289115906e-02 7.3392897844314575e-01 + + + <_> + + 0 -1 563 8.6805049795657396e-04 + + + -1.7705479264259338e-01 1.4985239505767822e-01 + + + <_> + + 0 -1 564 4.8424140550196171e-03 + + + -4.6208251267671585e-02 1.3162529468536377e-01 + + + <_> + + 0 -1 565 9.1674225404858589e-03 + + + 9.9181063473224640e-02 -2.0292450487613678e-01 + + + <_> + + 0 -1 566 -5.6356228888034821e-03 + + + 8.7860167026519775e-02 -3.7438090890645981e-02 + + + <_> + + 0 -1 567 -3.8375150412321091e-02 + + + 4.9721479415893555e-01 -4.3815169483423233e-02 + + + <_> + + 0 -1 568 8.9894384145736694e-03 + + + 9.4126552343368530e-02 -3.0227750539779663e-01 + + + <_> + + 0 -1 569 -1.1650560190901160e-04 + + + 1.3361050188541412e-01 -1.8932069838047028e-01 + + + <_> + + 0 -1 570 -6.6462112590670586e-04 + + + 7.7972702682018280e-02 -1.3508260250091553e-01 + + + <_> + + 0 -1 571 -1.2656490318477154e-02 + + + -3.6913019418716431e-01 6.4613893628120422e-02 + + + <_> + + 0 -1 572 -4.3929531238973141e-03 + + + 2.6696819067001343e-01 -8.8650099933147430e-02 + + + <_> + + 0 -1 573 -1.2583639472723007e-03 + + + 2.0614829659461975e-01 -1.0952439904212952e-01 + + + <_> + + 0 -1 574 -1.1131940409541130e-02 + + + -4.1352048516273499e-01 6.2840126454830170e-02 + + + <_> + + 0 -1 575 3.0703889206051826e-03 + + + -1.5591779351234436e-01 1.5018209815025330e-01 + + + <_> + + 0 -1 576 3.5361549817025661e-03 + + + 6.2573492527008057e-02 -2.1869969367980957e-01 + + + <_> + + 0 -1 577 2.8864629566669464e-02 + + + -6.9561749696731567e-02 4.4892778992652893e-01 + + + <_> + + 0 -1 578 -7.1035906672477722e-02 + + + 2.0991979539394379e-01 -3.6562878638505936e-02 + + + <_> + + 0 -1 579 -1.1107679456472397e-03 + + + -3.3020168542861938e-01 7.9758942127227783e-02 + + + <_> + + 0 -1 580 7.9184047877788544e-02 + + + -1.3226009905338287e-02 3.8603660464286804e-01 + + + <_> + + 0 -1 581 1.3353509828448296e-02 + + + 5.8410558849573135e-02 -3.9250770211219788e-01 + + + <_> + + 0 -1 582 5.0049051642417908e-02 + + + -2.3318229243159294e-02 7.4593770503997803e-01 + + + <_> + + 0 -1 583 -2.1859000623226166e-01 + + + -8.4585267305374146e-01 2.5940530002117157e-02 + + + <_> + + 0 -1 584 1.0064110159873962e-02 + + + -1.0959850251674652e-01 2.1068529784679413e-01 + + + <_> + + 0 -1 585 7.5430879369378090e-03 + + + 5.3567539900541306e-02 -3.3617278933525085e-01 + + + <_> + + 0 -1 586 1.5817210078239441e-02 + + + -1.9042259082198143e-02 2.2196899354457855e-01 + + + <_> + + 0 -1 587 -1.7135319649241865e-04 + + + 1.7667369544506073e-01 -1.2068530172109604e-01 + + + <_> + + 0 -1 588 6.6670849919319153e-03 + + + 7.0071838796138763e-02 -2.2137600183486938e-01 + + + <_> + + 0 -1 589 2.7946738991886377e-03 + + + -1.0509230196475983e-01 1.9277399778366089e-01 + + + <_> + + 0 -1 590 -1.5057970304042101e-03 + + + 6.0012888163328171e-02 -1.2378510087728500e-01 + + + <_> + + 0 -1 591 8.5329543799161911e-03 + + + -4.7611240297555923e-02 3.9985141158103943e-01 + + + <_> + + 0 -1 592 4.2939469218254089e-02 + + + 3.1611390411853790e-02 -1.9731660187244415e-01 + + + <_> + + 0 -1 593 2.0308220759034157e-02 + + + 3.5055190324783325e-02 -5.1969397068023682e-01 + + + <_> + + 0 -1 594 -7.7673741616308689e-03 + + + -1.8817919492721558e-01 5.6889228522777557e-02 + + + <_> + + 0 -1 595 2.1762759424746037e-03 + + + -9.0948157012462616e-02 2.4575869739055634e-01 + + + <_> + + 0 -1 596 -1.9813690334558487e-02 + + + 5.2904421091079712e-01 -3.8754951208829880e-02 + + + <_> + + 0 -1 597 1.3035159558057785e-02 + + + 6.7918822169303894e-02 -3.0413469672203064e-01 + + + <_> + + 0 -1 598 -1.9664920400828123e-03 + + + -2.0626169443130493e-01 9.6140593290328979e-02 + + + <_> + + 0 -1 599 -2.6359891053289175e-03 + + + 2.5085249543190002e-01 -8.3200961351394653e-02 + + + <_> + + 0 -1 600 -2.2968810517340899e-03 + + + 2.9634681344032288e-01 -5.8743689209222794e-02 + + + <_> + + 0 -1 601 -3.8644939195364714e-03 + + + 1.9411550462245941e-01 -1.0827559977769852e-01 + + + <_> + + 0 -1 602 4.4517841160995886e-05 + + + -2.4451869726181030e-01 1.0293029993772507e-01 + + + <_> + + 0 -1 603 1.9567341078072786e-03 + + + -1.0519249737262726e-01 2.2499999403953552e-01 + + + <_> + + 0 -1 604 1.4188109897077084e-02 + + + 3.2100718468427658e-02 -5.9142422676086426e-01 + + + <_> + + 0 -1 605 -1.3274629600346088e-04 + + + 7.4577853083610535e-02 -2.7654591202735901e-01 + + + <_> + + 0 -1 606 2.0996380597352982e-02 + + + -4.5735489577054977e-02 3.2947731018066406e-01 + + + + + <_> + 68 + -7.0352667570114136e-01 + + <_> + + 0 -1 607 -3.9841078221797943e-02 + + + 1.5186519920825958e-01 -2.9055249691009521e-01 + + + <_> + + 0 -1 608 1.1327869724482298e-03 + + + -1.1921630054712296e-01 1.2098889797925949e-01 + + + <_> + + 0 -1 609 1.0022070491686463e-03 + + + 1.2088630348443985e-01 -2.5621330738067627e-01 + + + <_> + + 0 -1 610 6.3866227865219116e-02 + + + 4.7628100961446762e-02 -8.6150348186492920e-01 + + + <_> + + 0 -1 611 -3.0986019410192966e-03 + + + -3.1975808739662170e-01 9.1434687376022339e-02 + + + <_> + + 0 -1 612 6.5784230828285217e-03 + + + -8.0473050475120544e-02 3.6123031377792358e-01 + + + <_> + + 0 -1 613 4.5082601718604565e-03 + + + -1.8215750157833099e-01 1.4672499895095825e-01 + + + <_> + + 0 -1 614 -1.6526240855455399e-02 + + + -1.2954659759998322e-01 6.6522419452667236e-02 + + + <_> + + 0 -1 615 -4.1868099942803383e-03 + + + -2.6552608609199524e-01 1.1237680166959763e-01 + + + <_> + + 0 -1 616 5.6613027118146420e-04 + + + 1.1822649836540222e-01 -1.6119679808616638e-01 + + + <_> + + 0 -1 617 2.0279800519347191e-03 + + + -2.2618439793586731e-01 1.1263699829578400e-01 + + + <_> + + 0 -1 618 -1.1969150044023991e-02 + + + -2.7523440122604370e-01 8.3603866398334503e-02 + + + <_> + + 0 -1 619 -2.8411731123924255e-01 + + + 4.0216109156608582e-01 -7.7971749007701874e-02 + + + <_> + + 0 -1 620 -3.6587871145457029e-03 + + + -2.9723858833312988e-01 6.3484713435173035e-02 + + + <_> + + 0 -1 621 9.2046172358095646e-04 + + + 7.7872820198535919e-02 -2.9539081454277039e-01 + + + <_> + + 0 -1 622 1.3571759685873985e-02 + + + -7.2430767118930817e-02 3.4849750995635986e-01 + + + <_> + + 0 -1 623 -3.1399999279528856e-03 + + + -2.2088779509067535e-01 1.0072159767150879e-01 + + + <_> + + 0 -1 624 6.9894008338451385e-03 + + + 5.9188209474086761e-02 -1.4137220382690430e-01 + + + <_> + + 0 -1 625 -5.9609091840684414e-04 + + + 1.3563929498195648e-01 -1.5081329643726349e-01 + + + <_> + + 0 -1 626 1.6805849736556411e-03 + + + -7.8348256647586823e-02 7.7357366681098938e-02 + + + <_> + + 0 -1 627 -5.7250040117651224e-04 + + + 2.3572799563407898e-01 -1.1594360321760178e-01 + + + <_> + + 0 -1 628 4.3474160134792328e-02 + + + 8.2836961373686790e-03 -3.7428310513496399e-01 + + + <_> + + 0 -1 629 6.0316640883684158e-04 + + + -1.7846900224685669e-01 1.6185760498046875e-01 + + + <_> + + 0 -1 630 2.6881720870733261e-02 + + + 7.2419442236423492e-02 -1.7971959710121155e-01 + + + <_> + + 0 -1 631 -4.9273878335952759e-02 + + + 4.6386399865150452e-01 -5.0276938825845718e-02 + + + <_> + + 0 -1 632 -6.7225202918052673e-02 + + + -1. 1.3532400131225586e-02 + + + <_> + + 0 -1 633 2.0203770697116852e-01 + + + -3.8748100399971008e-02 5.7211977243423462e-01 + + + <_> + + 0 -1 634 3.1489748507738113e-02 + + + 4.5488908886909485e-02 -1.2539370357990265e-01 + + + <_> + + 0 -1 635 -5.7097017997875810e-04 + + + 1.9619710743427277e-01 -1.0944739729166031e-01 + + + <_> + + 0 -1 636 -7.8234989196062088e-03 + + + 6.7954361438751221e-02 -7.2075963020324707e-02 + + + <_> + + 0 -1 637 -2.1555390208959579e-02 + + + -2.8890660405158997e-01 9.9806018173694611e-02 + + + <_> + + 0 -1 638 -8.3767198026180267e-02 + + + -4.3685078620910645e-01 1.0792650282382965e-02 + + + <_> + + 0 -1 639 -3.5752300173044205e-03 + + + 1.1191669851541519e-01 -1.9461460411548615e-01 + + + <_> + + 0 -1 640 1.2265419587492943e-02 + + + -6.5728217363357544e-02 3.2739359140396118e-01 + + + <_> + + 0 -1 641 2.8762801084667444e-03 + + + -1.8723809719085693e-01 1.1246989667415619e-01 + + + <_> + + 0 -1 642 7.4190571904182434e-03 + + + 5.1525920629501343e-02 -2.6615419983863831e-01 + + + <_> + + 0 -1 643 -4.9716630019247532e-03 + + + 1.5384270250797272e-01 -1.5141449868679047e-01 + + + <_> + + 0 -1 644 2.0294899120926857e-02 + + + -1.9532799720764160e-02 3.0571049451828003e-01 + + + <_> + + 0 -1 645 1.3469019904732704e-02 + + + 6.2345318496227264e-02 -3.6343741416931152e-01 + + + <_> + + 0 -1 646 6.8610929884016514e-03 + + + -6.2487348914146423e-02 2.8820911049842834e-01 + + + <_> + + 0 -1 647 -5.9594889171421528e-04 + + + 8.5537739098072052e-02 -2.4081380665302277e-01 + + + <_> + + 0 -1 648 -4.0149871259927750e-02 + + + -1. 1.5480610309168696e-03 + + + <_> + + 0 -1 649 -2.7885669842362404e-03 + + + -2.2338689863681793e-01 1.1001159995794296e-01 + + + <_> + + 0 -1 650 -7.9318676143884659e-03 + + + 1.3043269515037537e-01 -2.8859179466962814e-02 + + + <_> + + 0 -1 651 -2.9607459509861656e-05 + + + 1.1876039952039719e-01 -1.7018820345401764e-01 + + + <_> + + 0 -1 652 2.6092668995261192e-03 + + + -6.9877780973911285e-02 1.5036509931087494e-01 + + + <_> + + 0 -1 653 -4.5970208942890167e-02 + + + 5.6322151422500610e-01 -3.6318130791187286e-02 + + + <_> + + 0 -1 654 9.0047682169824839e-04 + + + 3.2461058348417282e-02 -1.8973889946937561e-01 + + + <_> + + 0 -1 655 -5.1712408661842346e-02 + + + -8.5045510530471802e-01 2.0679740235209465e-02 + + + <_> + + 0 -1 656 -1.4172409474849701e-01 + + + -9.1004508733749390e-01 3.8531969767063856e-03 + + + <_> + + 0 -1 657 -6.9771192967891693e-02 + + + 4.2144781351089478e-01 -5.5162269622087479e-02 + + + <_> + + 0 -1 658 -7.5836889445781708e-03 + + + -4.2189291119575500e-01 6.1964530497789383e-02 + + + <_> + + 0 -1 659 -1.2404819717630744e-03 + + + 1.7558629810810089e-01 -1.3540640473365784e-01 + + + <_> + + 0 -1 660 1.0614699684083462e-02 + + + 4.5083239674568176e-02 -2.5765570998191833e-01 + + + <_> + + 0 -1 661 1.7647630302235484e-03 + + + -1.1009249836206436e-01 2.4041210114955902e-01 + + + <_> + + 0 -1 662 3.7170480936765671e-03 + + + -7.6920822262763977e-02 2.0119519531726837e-01 + + + <_> + + 0 -1 663 1.5280679799616337e-02 + + + 5.8605119585990906e-02 -3.6220121383666992e-01 + + + <_> + + 0 -1 664 -8.1635616719722748e-02 + + + 5.2819788455963135e-01 -4.3608970940113068e-02 + + + <_> + + 0 -1 665 -2.4431939236819744e-03 + + + -2.4369360506534576e-01 8.4384277462959290e-02 + + + <_> + + 0 -1 666 -1.2289900332689285e-03 + + + 1.0332729667425156e-01 -9.7442328929901123e-02 + + + <_> + + 0 -1 667 6.9271848769858479e-04 + + + -1.1367750167846680e-01 1.6121849417686462e-01 + + + <_> + + 0 -1 668 9.9380649626255035e-03 + + + 5.2774678915739059e-02 -1.5222820639610291e-01 + + + <_> + + 0 -1 669 -1.8377749249339104e-02 + + + 4.6800789237022400e-01 -4.2411230504512787e-02 + + + <_> + + 0 -1 670 -3.0569550581276417e-03 + + + 1.2866629660129547e-01 -9.8308563232421875e-02 + + + <_> + + 0 -1 671 -1.8440110143274069e-03 + + + -2.7592489123344421e-01 1.0050299763679504e-01 + + + <_> + + 0 -1 672 5.6205368600785732e-03 + + + -7.0716217160224915e-02 1.6734069585800171e-01 + + + <_> + + 0 -1 673 3.4157470799982548e-03 + + + 5.2378088235855103e-02 -5.0982749462127686e-01 + + + <_> + + 0 -1 674 -3.0376210343092680e-03 + + + 1.4243629574775696e-01 -6.3037060201168060e-02 + + + + + <_> + 67 + -7.4644768238067627e-01 + + <_> + + 0 -1 675 1.0126640088856220e-02 + + + -2.1863789856433868e-01 1.7513489723205566e-01 + + + <_> + + 0 -1 676 -2.6893198955804110e-03 + + + -3.2822969555854797e-01 9.9838256835937500e-02 + + + <_> + + 0 -1 677 -1.5573530457913876e-02 + + + 1.9594019651412964e-01 -2.2535979747772217e-01 + + + <_> + + 0 -1 678 4.9326270818710327e-03 + + + 4.9988470971584320e-02 -5.3175377845764160e-01 + + + <_> + + 0 -1 679 -7.6638202881440520e-04 + + + -2.6926669478416443e-01 1.1751429736614227e-01 + + + <_> + + 0 -1 680 -1.2552300177048892e-04 + + + 6.9110788404941559e-02 -8.1727392971515656e-02 + + + <_> + + 0 -1 681 -1.4519299838866573e-05 + + + 1.1483950167894363e-01 -2.3017129302024841e-01 + + + <_> + + 0 -1 682 -1.6113840043544769e-02 + + + 5.0956588983535767e-01 -3.7494029849767685e-02 + + + <_> + + 0 -1 683 5.5138790048658848e-03 + + + -7.8787550330162048e-02 2.3771439492702484e-01 + + + <_> + + 0 -1 684 8.7763823568820953e-02 + + + 1.3863979838788509e-02 -8.9777380228042603e-01 + + + <_> + + 0 -1 685 -1.2825570069253445e-02 + + + -3.9504998922348022e-01 5.5546328425407410e-02 + + + <_> + + 0 -1 686 8.2099979044869542e-04 + + + -1.2663979828357697e-01 1.9081629812717438e-01 + + + <_> + + 0 -1 687 -1.2775770155712962e-03 + + + 1.1065080016851425e-01 -1.9801099598407745e-01 + + + <_> + + 0 -1 688 -2.5229719281196594e-01 + + + -8.1039828062057495e-01 8.3870543166995049e-03 + + + <_> + + 0 -1 689 7.0347747532650828e-04 + + + -2.1380549669265747e-01 9.8673596978187561e-02 + + + <_> + + 0 -1 690 1.0717480443418026e-02 + + + 8.4470443427562714e-02 -2.6063749194145203e-01 + + + <_> + + 0 -1 691 5.1081487908959389e-03 + + + -5.5732220411300659e-02 4.1447860002517700e-01 + + + <_> + + 0 -1 692 -1.9006159156560898e-02 + + + -3.7475249171257019e-01 7.9524833709001541e-03 + + + <_> + + 0 -1 693 1.1136929970234632e-03 + + + -2.2650149464607239e-01 1.0789389908313751e-01 + + + <_> + + 0 -1 694 1.1141769587993622e-02 + + + -4.2054798454046249e-02 1.3697710633277893e-01 + + + <_> + + 0 -1 695 1.2054879916831851e-03 + + + 9.2105977237224579e-02 -2.3083679378032684e-01 + + + <_> + + 0 -1 696 -2.0797130127903074e-04 + + + 8.4210596978664398e-02 -6.6967681050300598e-02 + + + <_> + + 0 -1 697 -1.6412649303674698e-02 + + + 4.2269191145896912e-01 -4.9638699740171432e-02 + + + <_> + + 0 -1 698 7.0363390259444714e-03 + + + 9.0550661087036133e-02 -2.7322870492935181e-01 + + + <_> + + 0 -1 699 -8.4774550050497055e-03 + + + -1.9004869461059570e-01 1.0416539758443832e-01 + + + <_> + + 0 -1 700 -8.7799631059169769e-02 + + + -1. 4.5551471412181854e-03 + + + <_> + + 0 -1 701 -4.6731110662221909e-02 + + + 4.1607761383056641e-01 -6.7924611270427704e-02 + + + <_> + + 0 -1 702 7.4915830045938492e-03 + + + 4.7516189515590668e-02 -4.4306200742721558e-01 + + + <_> + + 0 -1 703 8.6966790258884430e-03 + + + -3.9423149079084396e-02 5.2188277244567871e-01 + + + <_> + + 0 -1 704 -6.4137862063944340e-03 + + + -2.4749429523944855e-01 1.1350250244140625e-01 + + + <_> + + 0 -1 705 6.4909840002655983e-03 + + + -2.0237590372562408e-01 1.1887309700250626e-01 + + + <_> + + 0 -1 706 1.1677639558911324e-03 + + + -9.8187439143657684e-02 1.4470459520816803e-01 + + + <_> + + 0 -1 707 8.0650653690099716e-03 + + + 3.0806429684162140e-02 -5.7410538196563721e-01 + + + <_> + + 0 -1 708 -6.1450549401342869e-03 + + + 1.4213280379772186e-01 -1.2155479937791824e-01 + + + <_> + + 0 -1 709 3.3926900941878557e-03 + + + -6.9425463676452637e-02 3.7945500016212463e-01 + + + <_> + + 0 -1 710 2.5861251354217529e-01 + + + -8.0964984372258186e-03 5.7324391603469849e-01 + + + <_> + + 0 -1 711 4.6327650547027588e-02 + + + 9.3428269028663635e-02 -2.9274320602416992e-01 + + + <_> + + 0 -1 712 -1.4053919585421681e-05 + + + 5.9584300965070724e-02 -1.2193849682807922e-01 + + + <_> + + 0 -1 713 -5.5521689355373383e-03 + + + -3.0268138647079468e-01 7.9481996595859528e-02 + + + <_> + + 0 -1 714 -7.1974180638790131e-02 + + + 5.9862488508224487e-01 -3.2414238899946213e-02 + + + <_> + + 0 -1 715 -1.1097419774159789e-03 + + + -2.2289000451564789e-01 9.4809576869010925e-02 + + + <_> + + 0 -1 716 1.1012280359864235e-02 + + + -5.0954710692167282e-02 2.1996709704399109e-01 + + + <_> + + 0 -1 717 -1.0663530230522156e-01 + + + -7.8257107734680176e-01 2.3075709119439125e-02 + + + <_> + + 0 -1 718 2.6826610788702965e-02 + + + -3.3334378153085709e-02 3.2825571298599243e-01 + + + <_> + + 0 -1 719 1.6480779275298119e-02 + + + 2.4793079122900963e-02 -7.9102367162704468e-01 + + + <_> + + 0 -1 720 1.4533529756590724e-03 + + + -4.7377821058034897e-02 1.8299889564514160e-01 + + + <_> + + 0 -1 721 4.6536721289157867e-02 + + + -4.2217779904603958e-02 4.7201961278915405e-01 + + + <_> + + 0 -1 722 1.3604049570858479e-02 + + + 7.1543172001838684e-02 -2.8175559639930725e-01 + + + <_> + + 0 -1 723 2.9868748970329762e-03 + + + -1.2019319832324982e-01 1.5165250003337860e-01 + + + <_> + + 0 -1 724 7.5455583631992340e-02 + + + 7.6729329302906990e-03 -3.7560600042343140e-01 + + + <_> + + 0 -1 725 -2.1207109093666077e-03 + + + 1.1624389886856079e-01 -1.5187309682369232e-01 + + + <_> + + 0 -1 726 4.6092201955616474e-03 + + + 5.2315160632133484e-02 -2.3050600290298462e-01 + + + <_> + + 0 -1 727 1.0207670275121927e-03 + + + -1.1380010098218918e-01 1.7626440525054932e-01 + + + <_> + + 0 -1 728 6.2532532028853893e-03 + + + 6.1674360185861588e-02 -3.4915238618850708e-01 + + + <_> + + 0 -1 729 2.8322400525212288e-02 + + + -3.9958149194717407e-02 5.2392977476119995e-01 + + + <_> + + 0 -1 730 -1.6342360526323318e-02 + + + -1.2563559412956238e-01 4.0041740983724594e-02 + + + <_> + + 0 -1 731 -1.8282469827681780e-03 + + + 9.1135032474994659e-02 -1.9224719703197479e-01 + + + <_> + + 0 -1 732 4.4616919010877609e-02 + + + -1.7582910135388374e-02 3.0281931161880493e-01 + + + <_> + + 0 -1 733 3.5677649429999292e-04 + + + -8.7897412478923798e-02 2.2339150309562683e-01 + + + <_> + + 0 -1 734 -4.5413200859911740e-04 + + + 6.5522827208042145e-02 -9.9679380655288696e-02 + + + <_> + + 0 -1 735 1.5353029593825340e-03 + + + 6.8590000271797180e-02 -2.9728370904922485e-01 + + + <_> + + 0 -1 736 2.1600390318781137e-03 + + + -8.9736528694629669e-02 8.0284543335437775e-02 + + + <_> + + 0 -1 737 -5.9745612088590860e-04 + + + 2.1873860061168671e-01 -1.1398520320653915e-01 + + + <_> + + 0 -1 738 -1.2356050312519073e-02 + + + -2.9350760579109192e-01 6.4420320093631744e-02 + + + <_> + + 0 -1 739 -3.2670930027961731e-01 + + + 3.8920149207115173e-01 -4.9165409058332443e-02 + + + <_> + + 0 -1 740 8.7828626856207848e-03 + + + 8.6186192929744720e-02 -2.2631849348545074e-01 + + + <_> + + 0 -1 741 3.3569689840078354e-03 + + + -9.1194286942481995e-02 2.1264100074768066e-01 + + + + + <_> + 75 + -7.8030252456665039e-01 + + <_> + + 0 -1 742 -1.5290499664843082e-02 + + + 1.6011320054531097e-01 -2.1511940658092499e-01 + + + <_> + + 0 -1 743 -5.9956451877951622e-03 + + + -1.8299789726734161e-01 3.7886500358581543e-02 + + + <_> + + 0 -1 744 6.2301359139382839e-04 + + + -1.2199199944734573e-01 2.1163250505924225e-01 + + + <_> + + 0 -1 745 5.8087380602955818e-04 + + + -2.2747389972209930e-01 7.6958037912845612e-02 + + + <_> + + 0 -1 746 -2.8277048841118813e-03 + + + 2.7597460150718689e-01 -7.8942306339740753e-02 + + + <_> + + 0 -1 747 2.1096320822834969e-02 + + + 4.1295919567346573e-02 -3.2933080196380615e-01 + + + <_> + + 0 -1 748 -2.2117430344223976e-03 + + + 2.4672569334506989e-01 -7.3121666908264160e-02 + + + <_> + + 0 -1 749 -2.3275949060916901e-03 + + + -2.2825109958648682e-01 7.9285196959972382e-02 + + + <_> + + 0 -1 750 -4.4754869304597378e-03 + + + 1.1744049936532974e-01 -1.9801409542560577e-01 + + + <_> + + 0 -1 751 -2.5716619566082954e-03 + + + 3.7658710032701492e-02 -1.2148059904575348e-01 + + + <_> + + 0 -1 752 1.5387970488518476e-03 + + + -5.5973250418901443e-02 3.6923429369926453e-01 + + + <_> + + 0 -1 753 -3.3066518604755402e-02 + + + 3.9160001277923584e-01 -7.7862940728664398e-02 + + + <_> + + 0 -1 754 -8.5727721452713013e-02 + + + -2.5174748897552490e-01 1.3543550670146942e-01 + + + <_> + + 0 -1 755 -7.0333289913833141e-03 + + + 1.3328710198402405e-01 -1.5664640069007874e-01 + + + <_> + + 0 -1 756 -6.8310517235659063e-05 + + + 9.9454201757907867e-02 -2.3412980139255524e-01 + + + <_> + + 0 -1 757 -6.0546118766069412e-04 + + + -1.7742669582366943e-01 1.0017810016870499e-01 + + + <_> + + 0 -1 758 -2.2480569314211607e-03 + + + -3.6424639821052551e-01 5.3501259535551071e-02 + + + <_> + + 0 -1 759 -1.5090550296008587e-03 + + + 7.7575050294399261e-02 -9.4920717179775238e-02 + + + <_> + + 0 -1 760 -5.8666180848376825e-05 + + + 1.2585939466953278e-01 -1.4529819786548615e-01 + + + <_> + + 0 -1 761 3.5532109905034304e-03 + + + -9.8626613616943359e-02 7.4326246976852417e-02 + + + <_> + + 0 -1 762 -1.4601859729737043e-03 + + + -3.3026841282844543e-01 6.3813462853431702e-02 + + + <_> + + 0 -1 763 -2.3586049792356789e-04 + + + 1.0846760123968124e-01 -1.0571049898862839e-01 + + + <_> + + 0 -1 764 1.4756060205399990e-02 + + + -5.9472840279340744e-02 3.7792891263961792e-01 + + + <_> + + 0 -1 765 -1.6795310378074646e-01 + + + -6.6773468255996704e-01 1.7404930666089058e-02 + + + <_> + + 0 -1 766 3.2017670571804047e-02 + + + -2.3720450699329376e-01 9.6205927431583405e-02 + + + <_> + + 0 -1 767 -6.1111792456358671e-04 + + + 1.3566890358924866e-01 -6.8121932446956635e-02 + + + <_> + + 0 -1 768 -1.1586040258407593e-02 + + + -2.9761460423469543e-01 6.4853250980377197e-02 + + + <_> + + 0 -1 769 -1.1290679685771465e-03 + + + 1.3520470261573792e-01 -9.0693503618240356e-02 + + + <_> + + 0 -1 770 1.8352170009166002e-03 + + + -9.6694603562355042e-02 1.8725989758968353e-01 + + + <_> + + 0 -1 771 -2.7584248781204224e-01 + + + 2.7460220456123352e-01 -1.6176709905266762e-02 + + + <_> + + 0 -1 772 -5.2487280219793320e-02 + + + -2.6295030117034912e-01 8.4279276430606842e-02 + + + <_> + + 0 -1 773 -2.8409080579876900e-02 + + + 4.4033178687095642e-01 -4.6736340969800949e-02 + + + <_> + + 0 -1 774 1.2234229594469070e-02 + + + 7.1391902863979340e-02 -2.9463478922843933e-01 + + + <_> + + 0 -1 775 3.7752088159322739e-02 + + + -3.2507140189409256e-02 6.2293910980224609e-01 + + + <_> + + 0 -1 776 -1.3006339780986309e-02 + + + -3.5619509220123291e-01 5.7085920125246048e-02 + + + <_> + + 0 -1 777 -3.7061918992549181e-03 + + + 1.7485049366950989e-01 -1.0506869852542877e-01 + + + <_> + + 0 -1 778 -4.8177209682762623e-03 + + + 1.4761090278625488e-01 -1.3700130581855774e-01 + + + <_> + + 0 -1 779 -3.0726719647645950e-02 + + + -2.1432609856128693e-01 3.4535329788923264e-02 + + + <_> + + 0 -1 780 1.0044399648904800e-02 + + + 8.2472868263721466e-02 -2.1329440176486969e-01 + + + <_> + + 0 -1 781 3.3808979787863791e-04 + + + -5.6368399411439896e-02 8.4050692617893219e-02 + + + <_> + + 0 -1 782 -3.4935539588332176e-04 + + + 1.5510140359401703e-01 -1.5465189516544342e-01 + + + <_> + + 0 -1 783 8.5416442016139627e-04 + + + 7.4811212718486786e-02 -2.0761939883232117e-01 + + + <_> + + 0 -1 784 -7.4278831016272306e-04 + + + 2.0695370435714722e-01 -1.1315040290355682e-01 + + + <_> + + 0 -1 785 -4.1803911328315735e-02 + + + 7.7375417947769165e-01 -2.7391599491238594e-02 + + + <_> + + 0 -1 786 -8.9303712593391538e-04 + + + -2.8926849365234375e-01 8.3425313234329224e-02 + + + <_> + + 0 -1 787 2.0034189801663160e-03 + + + 5.7899519801139832e-02 -2.1817860007286072e-01 + + + <_> + + 0 -1 788 7.4933562427759171e-04 + + + -1.3606220483779907e-01 1.6150030493736267e-01 + + + <_> + + 0 -1 789 -8.9645422995090485e-02 + + + -9.5717740058898926e-01 5.8882208541035652e-03 + + + <_> + + 0 -1 790 -6.5244808793067932e-03 + + + 1.4521969854831696e-01 -1.6119849681854248e-01 + + + <_> + + 0 -1 791 -2.8723690193146467e-03 + + + 1.0670810192823410e-01 -3.0505739152431488e-02 + + + <_> + + 0 -1 792 2.2762219887226820e-03 + + + -1.4573380351066589e-01 1.5590649843215942e-01 + + + <_> + + 0 -1 793 4.3706637807190418e-03 + + + -2.4369299411773682e-02 2.0724129676818848e-01 + + + <_> + + 0 -1 794 1.1989739723503590e-03 + + + 8.8461942970752716e-02 -2.2536410391330719e-01 + + + <_> + + 0 -1 795 -6.1923090834170580e-04 + + + 1.5108090639114380e-01 -9.9106341600418091e-02 + + + <_> + + 0 -1 796 -1.0555429616943002e-03 + + + 1.5399299561977386e-01 -1.4410500228404999e-01 + + + <_> + + 0 -1 797 2.3101890459656715e-02 + + + -2.6107529178261757e-02 2.5875169038772583e-01 + + + <_> + + 0 -1 798 6.7337458021938801e-03 + + + 6.4629636704921722e-02 -3.2299819588661194e-01 + + + <_> + + 0 -1 799 1.4084229478612542e-03 + + + 8.5755072534084320e-02 -1.4947549998760223e-01 + + + <_> + + 0 -1 800 -2.3923629487399012e-04 + + + 1.8700890243053436e-01 -1.0941530019044876e-01 + + + <_> + + 0 -1 801 2.2198690567165613e-04 + + + -1.9517560303211212e-01 5.9587858617305756e-02 + + + <_> + + 0 -1 802 2.8156230691820383e-03 + + + -8.9527882635593414e-02 2.2894319891929626e-01 + + + <_> + + 0 -1 803 7.8730508685112000e-03 + + + 6.4139701426029205e-02 -1.7174859344959259e-01 + + + <_> + + 0 -1 804 1.0448540560901165e-03 + + + -2.0927239954471588e-01 1.1022809892892838e-01 + + + <_> + + 0 -1 805 -1.8041099607944489e-01 + + + 2.5460541248321533e-01 -3.1580239534378052e-02 + + + <_> + + 0 -1 806 -1.8916819989681244e-01 + + + -8.1439048051834106e-01 3.0212750658392906e-02 + + + <_> + + 0 -1 807 -4.8934340476989746e-02 + + + 4.8329269886016846e-01 -3.1813390552997589e-02 + + + <_> + + 0 -1 808 -6.2278551049530506e-03 + + + -2.2463080286979675e-01 9.3202292919158936e-02 + + + <_> + + 0 -1 809 -3.6263489164412022e-03 + + + 9.7239963710308075e-02 -2.2094939649105072e-01 + + + <_> + + 0 -1 810 2.0688530057668686e-02 + + + -3.9044689387083054e-02 6.9668918848037720e-01 + + + <_> + + 0 -1 811 -6.5703191794455051e-03 + + + -1.5919350087642670e-01 3.7697389721870422e-02 + + + <_> + + 0 -1 812 -2.7691440191119909e-03 + + + -2.1777799725532532e-01 1.1075550317764282e-01 + + + <_> + + 0 -1 813 -2.5391899980604649e-03 + + + 7.6753303408622742e-02 -1.2121020257472992e-01 + + + <_> + + 0 -1 814 1.4522899873554707e-02 + + + -4.6935468912124634e-02 4.4322049617767334e-01 + + + <_> + + 0 -1 815 -4.8549640923738480e-03 + + + -4.1040301322937012e-01 4.7296289354562759e-02 + + + <_> + + 0 -1 816 -3.6202149931341410e-03 + + + 3.6707898974418640e-01 -5.0583109259605408e-02 + + + + + <_> + 79 + -8.1366151571273804e-01 + + <_> + + 0 -1 817 9.7794737666845322e-03 + + + -1.9873769581317902e-01 1.8754990398883820e-01 + + + <_> + + 0 -1 818 2.5764610618352890e-03 + + + -1.6544049978256226e-01 1.1968299746513367e-01 + + + <_> + + 0 -1 819 6.6844018874689937e-04 + + + 8.1187427043914795e-02 -2.6954218745231628e-01 + + + <_> + + 0 -1 820 1.8919180147349834e-03 + + + 8.2398690283298492e-02 -1.9564670324325562e-01 + + + <_> + + 0 -1 821 -8.2977651618421078e-04 + + + -2.1381169557571411e-01 1.0152959823608398e-01 + + + <_> + + 0 -1 822 -2.5124829262495041e-03 + + + 2.6497021317481995e-01 -8.1728130578994751e-02 + + + <_> + + 0 -1 823 4.9220919609069824e-03 + + + -1.3837899267673492e-01 1.7047420144081116e-01 + + + <_> + + 0 -1 824 1.5432259533554316e-03 + + + -2.3483499884605408e-01 1.2624679505825043e-01 + + + <_> + + 0 -1 825 -7.5272549875080585e-03 + + + -2.1902580559253693e-01 7.8214943408966064e-02 + + + <_> + + 0 -1 826 -3.2087319414131343e-04 + + + 9.9803313612937927e-02 -1.0052630305290222e-01 + + + <_> + + 0 -1 827 -5.6291592773050070e-04 + + + 1.4587800204753876e-01 -1.3194470107555389e-01 + + + <_> + + 0 -1 828 -3.4248359501361847e-02 + + + 7.3179531097412109e-01 -2.5754369795322418e-02 + + + <_> + + 0 -1 829 5.5207060649991035e-03 + + + 7.3829427361488342e-02 -2.4615940451622009e-01 + + + <_> + + 0 -1 830 3.3663161098957062e-02 + + + -5.0750829279422760e-02 5.1054477691650391e-01 + + + <_> + + 0 -1 831 1.0605139657855034e-02 + + + -1.9593380391597748e-01 9.6162728965282440e-02 + + + <_> + + 0 -1 832 3.6454470828175545e-03 + + + -1.0274770110845566e-01 1.8021290004253387e-01 + + + <_> + + 0 -1 833 3.1658720225095749e-02 + + + 7.7415347099304199e-02 -2.3498320579528809e-01 + + + <_> + + 0 -1 834 6.0496449470520020e-02 + + + 7.9810861498117447e-03 -5.8126330375671387e-01 + + + <_> + + 0 -1 835 -2.1451190696097910e-04 + + + -2.7141410112380981e-01 7.2448231279850006e-02 + + + <_> + + 0 -1 836 -8.9069753885269165e-03 + + + 1.0864660143852234e-01 -3.7890978157520294e-02 + + + <_> + + 0 -1 837 -3.1367139890789986e-03 + + + 2.3194080591201782e-01 -8.3242997527122498e-02 + + + <_> + + 0 -1 838 -8.2477089017629623e-04 + + + 1.3757370412349701e-01 -4.0709521621465683e-02 + + + <_> + + 0 -1 839 -3.8041090010665357e-04 + + + 9.9655948579311371e-02 -2.0115250349044800e-01 + + + <_> + + 0 -1 840 3.0412159394472837e-03 + + + 4.8606388270854950e-02 -2.9261159896850586e-01 + + + <_> + + 0 -1 841 -2.7135149575769901e-03 + + + -2.0402909815311432e-01 8.7270192801952362e-02 + + + <_> + + 0 -1 842 -1.1454220116138458e-01 + + + 2.6342248916625977e-01 -2.8976829722523689e-02 + + + <_> + + 0 -1 843 -7.9219061881303787e-03 + + + -2.3954220116138458e-01 7.8425459563732147e-02 + + + <_> + + 0 -1 844 -6.4272403717041016e-02 + + + 3.8651049137115479e-01 -3.4981280565261841e-02 + + + <_> + + 0 -1 845 2.0820159465074539e-02 + + + 3.6676738411188126e-02 -5.0909721851348877e-01 + + + <_> + + 0 -1 846 4.7503421083092690e-03 + + + -4.9171518534421921e-02 1.8542270362377167e-01 + + + <_> + + 0 -1 847 -9.3589037656784058e-02 + + + 6.2822377681732178e-01 -2.5140469893813133e-02 + + + <_> + + 0 -1 848 -6.8223377456888556e-04 + + + 4.0090799331665039e-02 -1.0250650346279144e-01 + + + <_> + + 0 -1 849 -8.3058718591928482e-03 + + + -2.1625949442386627e-01 8.5505023598670959e-02 + + + <_> + + 0 -1 850 5.5919620208442211e-03 + + + -6.5724261105060577e-02 6.1939451843500137e-02 + + + <_> + + 0 -1 851 1.8336649518460035e-03 + + + -1.0324809700250626e-01 2.5134149193763733e-01 + + + <_> + + 0 -1 852 -4.4351099058985710e-03 + + + -1.5100279450416565e-01 3.7323009222745895e-02 + + + <_> + + 0 -1 853 -4.7271270304918289e-03 + + + 1.3500709831714630e-01 -1.5250219404697418e-01 + + + <_> + + 0 -1 854 5.3573452169075608e-04 + + + -6.0964770615100861e-02 7.1996733546257019e-02 + + + <_> + + 0 -1 855 -1.3135100016370416e-04 + + + 1.2902179360389709e-01 -1.3107609748840332e-01 + + + <_> + + 0 -1 856 4.0799290873110294e-03 + + + 4.9433309584856033e-02 -1.9467090070247650e-01 + + + <_> + + 0 -1 857 -3.1066180672496557e-03 + + + 2.3984549939632416e-01 -7.1281567215919495e-02 + + + <_> + + 0 -1 858 1.0999400168657303e-02 + + + 2.9017930850386620e-02 -3.8504680991172791e-01 + + + <_> + + 0 -1 859 1.5001590363681316e-03 + + + -8.3652436733245850e-02 1.8141129612922668e-01 + + + <_> + + 0 -1 860 1.3700149953365326e-02 + + + 3.6753259599208832e-02 -4.5086589455604553e-01 + + + <_> + + 0 -1 861 3.9507630281150341e-03 + + + -6.9417111575603485e-02 2.1540710330009460e-01 + + + <_> + + 0 -1 862 -8.5161393508315086e-03 + + + 1.0704089701175690e-01 -1.4857380092144012e-01 + + + <_> + + 0 -1 863 1.7032850300893188e-03 + + + -8.1896521151065826e-02 3.2398068904876709e-01 + + + <_> + + 0 -1 864 -1.0852930136024952e-02 + + + -1.3142329454421997e-01 9.9990189075469971e-02 + + + <_> + + 0 -1 865 -3.7832378875464201e-03 + + + 9.7596637904644012e-02 -1.6081459820270538e-01 + + + <_> + + 0 -1 866 1.3263260014355183e-02 + + + 6.8189077079296112e-02 -1.4820660650730133e-01 + + + <_> + + 0 -1 867 -4.4276300817728043e-02 + + + 5.3883999586105347e-01 -3.4769881516695023e-02 + + + <_> + + 0 -1 868 -1.6476439312100410e-02 + + + -6.9341838359832764e-01 3.0285930261015892e-02 + + + <_> + + 0 -1 869 1.5063960105180740e-02 + + + 5.0365351140499115e-02 -3.2215261459350586e-01 + + + <_> + + 0 -1 870 5.3230069577693939e-02 + + + 4.0058908052742481e-03 -1.0000929832458496e+00 + + + <_> + + 0 -1 871 -1.2282089889049530e-01 + + + 4.0438568592071533e-01 -5.4661169648170471e-02 + + + <_> + + 0 -1 872 -8.0205321311950684e-02 + + + -1.8915909528732300e-01 3.5704288631677628e-02 + + + <_> + + 0 -1 873 -1.1679669842123985e-03 + + + -2.7641400694847107e-01 5.9974398463964462e-02 + + + <_> + + 0 -1 874 -3.1197320204228163e-03 + + + 1.1307190358638763e-01 -7.2880730032920837e-02 + + + <_> + + 0 -1 875 3.6612390540540218e-03 + + + -4.7828570008277893e-02 3.9067369699478149e-01 + + + <_> + + 0 -1 876 4.6034730039536953e-03 + + + -4.7448419034481049e-02 3.6146968603134155e-01 + + + <_> + + 0 -1 877 -1.0733479866757989e-03 + + + 1.1264870315790176e-01 -2.9074960947036743e-01 + + + <_> + + 0 -1 878 -1.8310690298676491e-02 + + + 9.6729353070259094e-02 -1.0150820016860962e-01 + + + <_> + + 0 -1 879 -6.8194739520549774e-02 + + + -2.2048689424991608e-01 1.0977990180253983e-01 + + + <_> + + 0 -1 880 8.9977607131004333e-03 + + + -2.9652440920472145e-02 1.5059219300746918e-01 + + + <_> + + 0 -1 881 2.6954131317324936e-04 + + + -1.9917850196361542e-01 9.4677992165088654e-02 + + + <_> + + 0 -1 882 5.9090729337185621e-04 + + + -1.3240300118923187e-01 6.3088178634643555e-02 + + + <_> + + 0 -1 883 5.5691739544272423e-03 + + + 1.0318289697170258e-01 -1.9276739656925201e-01 + + + <_> + + 0 -1 884 -9.9434129893779755e-02 + + + 2.5911080837249756e-01 -4.3947871774435043e-02 + + + <_> + + 0 -1 885 -9.6295922994613647e-03 + + + -3.6871969699859619e-01 4.6506170183420181e-02 + + + <_> + + 0 -1 886 -1.7397940391674638e-03 + + + 1.3736039400100708e-01 -6.9822482764720917e-02 + + + <_> + + 0 -1 887 -1.3269430026412010e-02 + + + 4.5216149091720581e-01 -3.8461238145828247e-02 + + + <_> + + 0 -1 888 2.5604839902371168e-03 + + + 5.4858781397342682e-02 -2.4963529407978058e-01 + + + <_> + + 0 -1 889 -1.9173050532117486e-03 + + + -2.5733208656311035e-01 6.7481383681297302e-02 + + + <_> + + 0 -1 890 -3.7461649626493454e-02 + + + 5.9668248891830444e-01 -1.8121080473065376e-02 + + + <_> + + 0 -1 891 -1.9658938981592655e-03 + + + 1.9501520693302155e-01 -9.0026341378688812e-02 + + + <_> + + 0 -1 892 -3.2596408855170012e-03 + + + -3.5647168755531311e-01 4.6495281159877777e-02 + + + <_> + + 0 -1 893 -1.2043650262057781e-02 + + + 3.7508749961853027e-01 -5.3072199225425720e-02 + + + <_> + + 0 -1 894 4.1690650396049023e-03 + + + -4.1845761239528656e-02 1.1177790164947510e-01 + + + <_> + + 0 -1 895 1.4214499853551388e-02 + + + 7.1965761482715607e-02 -2.6777520775794983e-01 + + + + + <_> + 81 + -3.0813199996948242e+01 + + <_> + + 0 -1 896 -1.2230969965457916e-02 + + + 1.4567610621452332e-01 -2.4045179784297943e-01 + + + <_> + + 0 -1 897 -5.5717672221362591e-03 + + + -1.8789610266685486e-01 4.0596708655357361e-02 + + + <_> + + 0 -1 898 -5.5606552632525563e-04 + + + 1.6649569571018219e-01 -1.1817839741706848e-01 + + + <_> + + 0 -1 899 8.3173572784289718e-04 + + + -1.4224030077457428e-01 4.1616160422563553e-02 + + + <_> + + 0 -1 900 -8.7869318667799234e-04 + + + -1.6430449485778809e-01 1.5523290634155273e-01 + + + <_> + + 0 -1 901 -1.3641480356454849e-02 + + + 3.0867528915405273e-01 -2.7172269299626350e-02 + + + <_> + + 0 -1 902 1.4917860426066909e-05 + + + -1.5592050552368164e-01 1.0176579654216766e-01 + + + <_> + + 0 -1 903 8.7703643366694450e-03 + + + 6.1582878232002258e-02 -3.0546051263809204e-01 + + + <_> + + 0 -1 904 7.5755198486149311e-03 + + + -6.8759873509407043e-02 2.9675748944282532e-01 + + + <_> + + 0 -1 905 4.9841161817312241e-02 + + + 1.0127910412847996e-02 -7.9213422536849976e-01 + + + <_> + + 0 -1 906 -1.1090819723904133e-02 + + + 1.8339020013809204e-01 -1.0113699734210968e-01 + + + <_> + + 0 -1 907 -8.5937082767486572e-02 + + + -4.1994568705558777e-01 1.5568479895591736e-02 + + + <_> + + 0 -1 908 -1.0151329915970564e-03 + + + 1.1474460363388062e-01 -1.6091680526733398e-01 + + + <_> + + 0 -1 909 -1.3470250181853771e-02 + + + -3.0626448988914490e-01 5.3186140954494476e-02 + + + <_> + + 0 -1 910 1.6635110601782799e-02 + + + -4.3458938598632812e-02 4.4043311476707458e-01 + + + <_> + + 0 -1 911 -2.2650870960205793e-03 + + + 1.5985119342803955e-01 -1.2725980579853058e-01 + + + <_> + + 0 -1 912 7.0288166403770447e-02 + + + 6.4891628921031952e-02 -2.3496179282665253e-01 + + + <_> + + 0 -1 913 2.9186379164457321e-02 + + + -2.0920279622077942e-01 8.9257873594760895e-02 + + + <_> + + 0 -1 914 -5.0624469295144081e-03 + + + 3.4374091029167175e-01 -6.2093049287796021e-02 + + + <_> + + 0 -1 915 2.9356318991631269e-03 + + + -1.4249369502067566e-01 4.5412261039018631e-02 + + + <_> + + 0 -1 916 -6.7740739323198795e-03 + + + 3.1641799211502075e-01 -4.9601629376411438e-02 + + + <_> + + 0 -1 917 -1.4607170305680484e-04 + + + 1.0752049833536148e-01 -1.1540039628744125e-01 + + + <_> + + 0 -1 918 -3.5684450995177031e-03 + + + -4.1672629117965698e-01 4.2202819138765335e-02 + + + <_> + + 0 -1 919 -2.0149808842688799e-03 + + + 1.0860130190849304e-01 -1.6349700093269348e-01 + + + <_> + + 0 -1 920 -8.7240645661950111e-03 + + + -2.2000640630722046e-01 9.0927027165889740e-02 + + + <_> + + 0 -1 921 7.3565947823226452e-03 + + + -1.0335700213909149e-01 1.6051970422267914e-01 + + + <_> + + 0 -1 922 3.4252731129527092e-03 + + + -6.9635637104511261e-02 3.1490880250930786e-01 + + + <_> + + 0 -1 923 -5.7803248055279255e-03 + + + -4.3639171123504639e-01 3.6127548664808273e-02 + + + <_> + + 0 -1 924 -2.9641189612448215e-03 + + + 2.1797280013561249e-01 -7.7875941991806030e-02 + + + <_> + + 0 -1 925 2.4028679355978966e-02 + + + 2.5940960273146629e-02 -5.7640588283538818e-01 + + + <_> + + 0 -1 926 8.1514477729797363e-02 + + + -3.4380380064249039e-02 5.7957500219345093e-01 + + + <_> + + 0 -1 927 6.7858170950785279e-04 + + + 1.0398740321397781e-01 -2.3831090331077576e-01 + + + <_> + + 0 -1 928 4.2639520019292831e-02 + + + -4.1167970746755600e-02 4.0556749701499939e-01 + + + <_> + + 0 -1 929 -4.0414459072053432e-03 + + + -3.8652890920639038e-01 5.3053580224514008e-02 + + + <_> + + 0 -1 930 4.2280308902263641e-02 + + + 1.5058529563248158e-02 -9.6623957157135010e-01 + + + <_> + + 0 -1 931 -7.3401766712777317e-05 + + + 8.4438636898994446e-02 -1.0468550026416779e-01 + + + <_> + + 0 -1 932 4.7503020614385605e-03 + + + -3.8135491311550140e-02 4.3066629767417908e-01 + + + <_> + + 0 -1 933 1.7291309777647257e-03 + + + 7.5733587145805359e-02 -1.5384200215339661e-01 + + + <_> + + 0 -1 934 -4.8985757166519761e-04 + + + 1.3722479343414307e-01 -1.2631259858608246e-01 + + + <_> + + 0 -1 935 -2.2209450253285468e-04 + + + 5.1139138638973236e-02 -6.6661313176155090e-02 + + + <_> + + 0 -1 936 1.1202819878235459e-03 + + + -1.0968499630689621e-01 1.5611450374126434e-01 + + + <_> + + 0 -1 937 -2.0596029236912727e-02 + + + -4.5425260066986084e-01 5.6112911552190781e-03 + + + <_> + + 0 -1 938 -5.1287859678268433e-03 + + + -3.9422529935836792e-01 4.4144820421934128e-02 + + + <_> + + 0 -1 939 -4.3597300536930561e-03 + + + 1.9391660392284393e-01 -6.5949328243732452e-02 + + + <_> + + 0 -1 940 4.7703061136417091e-04 + + + -1.1900710314512253e-01 1.6375440359115601e-01 + + + <_> + + 0 -1 941 -1.0993770323693752e-02 + + + -2.9915741086006165e-01 2.8793500736355782e-02 + + + <_> + + 0 -1 942 8.1108389422297478e-03 + + + -4.8145949840545654e-02 3.8399958610534668e-01 + + + <_> + + 0 -1 943 -3.6698309704661369e-03 + + + 8.8712036609649658e-02 -3.0650860071182251e-01 + + + <_> + + 0 -1 944 1.3895990559831262e-03 + + + -5.5156201124191284e-02 3.5109901428222656e-01 + + + <_> + + 0 -1 945 1.2493750546127558e-03 + + + -1.8023060262203217e-01 1.3490100204944611e-01 + + + <_> + + 0 -1 946 5.5981278419494629e-03 + + + 7.9764246940612793e-02 -2.7847459912300110e-01 + + + <_> + + 0 -1 947 -3.8133479654788971e-02 + + + 3.5153418779373169e-01 -1.7089430242776871e-02 + + + <_> + + 0 -1 948 -4.6064890921115875e-03 + + + -2.2194199264049530e-01 1.0675799846649170e-01 + + + <_> + + 0 -1 949 -2.3793010413646698e-01 + + + 4.0079510211944580e-01 -6.2151808291673660e-02 + + + <_> + + 0 -1 950 1.2010410428047180e-02 + + + 5.8646921068429947e-02 -3.5234829783439636e-01 + + + <_> + + 0 -1 951 8.4618777036666870e-03 + + + -4.1455499827861786e-02 3.9362218976020813e-01 + + + <_> + + 0 -1 952 -1.4482599683105946e-02 + + + -2.7049958705902100e-01 6.9400496780872345e-02 + + + <_> + + 0 -1 953 2.5672810152173042e-03 + + + -8.2357987761497498e-02 2.2959560155868530e-01 + + + <_> + + 0 -1 954 6.8167857825756073e-03 + + + 8.5212066769599915e-02 -2.2813120484352112e-01 + + + <_> + + 0 -1 955 -6.4145028591156006e-04 + + + 1.3260249793529510e-01 -8.1091962754726410e-02 + + + <_> + + 0 -1 956 3.8798429886810482e-04 + + + -2.1800529956817627e-01 8.2977667450904846e-02 + + + <_> + + 0 -1 957 2.6308000087738037e-02 + + + -2.5558909401297569e-02 5.8989650011062622e-01 + + + <_> + + 0 -1 958 2.0907879807054996e-03 + + + 5.7611741125583649e-02 -3.0286490917205811e-01 + + + <_> + + 0 -1 959 -1.1132369749248028e-02 + + + -1.3822869956493378e-01 4.2258080095052719e-02 + + + <_> + + 0 -1 960 -1.5296150231733918e-03 + + + 9.1749697923660278e-02 -2.2181099653244019e-01 + + + <_> + + 0 -1 961 6.7247601691633463e-04 + + + -6.7084349691867828e-02 7.9762071371078491e-02 + + + <_> + + 0 -1 962 1.0386659763753414e-02 + + + -7.4621170759201050e-02 2.2916689515113831e-01 + + + <_> + + 0 -1 963 6.2723900191485882e-04 + + + -8.6500599980354309e-02 9.7814910113811493e-02 + + + <_> + + 0 -1 964 1.5324779786169529e-02 + + + 8.0094330012798309e-02 -2.2011950612068176e-01 + + + <_> + + 0 -1 965 -8.7603963911533356e-03 + + + 3.1290820240974426e-01 -5.9373341500759125e-02 + + + <_> + + 0 -1 966 -2.3745700309518725e-04 + + + 1.1855959892272949e-01 -1.4514200389385223e-01 + + + <_> + + 0 -1 967 -1.0718279518187046e-03 + + + 1.2567649781703949e-01 -5.3101938217878342e-02 + + + <_> + + 0 -1 968 5.3873867727816105e-04 + + + -1.0715659707784653e-01 1.6037760674953461e-01 + + + <_> + + 0 -1 969 -6.9268636405467987e-02 + + + -7.9294067621231079e-01 8.2057341933250427e-03 + + + <_> + + 0 -1 970 1.0430130176246166e-02 + + + 5.1620200276374817e-02 -3.3472689986228943e-01 + + + <_> + + 0 -1 971 7.1888908743858337e-02 + + + 1.5941270394250751e-03 -8.5840928554534912e-01 + + + <_> + + 0 -1 972 2.0217420533299446e-02 + + + -3.9817400276660919e-02 4.6351060271263123e-01 + + + <_> + + 0 -1 973 5.8006029576063156e-03 + + + -2.1701389923691750e-02 9.9040143191814423e-02 + + + <_> + + 0 -1 974 3.5261210054159164e-02 + + + 1.7082870006561279e-02 -1.0000469684600830e+00 + + + <_> + + 0 -1 975 -4.5255878567695618e-01 + + + -9.1292119026184082e-01 5.2670161239802837e-03 + + + <_> + + 0 -1 976 -7.5286221690475941e-03 + + + -5.2581560611724854e-01 2.2044740617275238e-02 + + + + + <_> + 89 + -3.0780099868774414e+01 + + <_> + + 0 -1 977 2.9085609130561352e-03 + + + -2.0195980370044708e-01 1.6118539869785309e-01 + + + <_> + + 0 -1 978 -6.4552230760455132e-03 + + + -1.8676100671291351e-01 3.5359650850296021e-02 + + + <_> + + 0 -1 979 2.7815890498459339e-03 + + + -1.2228749692440033e-01 2.0362569391727448e-01 + + + <_> + + 0 -1 980 -7.6125850901007652e-03 + + + -3.6965709924697876e-01 3.9566628634929657e-02 + + + <_> + + 0 -1 981 -2.5900858640670776e-01 + + + 6.4312630891799927e-01 3.1312569626607001e-04 + + + <_> + + 0 -1 982 4.6097189188003540e-03 + + + -2.7262160554528236e-02 2.1891650557518005e-01 + + + <_> + + 0 -1 983 -1.4135500416159630e-02 + + + 7.6006792485713959e-02 -2.6031088829040527e-01 + + + <_> + + 0 -1 984 -5.9708990156650543e-03 + + + -1.9146460294723511e-01 1.1078900098800659e-01 + + + <_> + + 0 -1 985 -1.0699110571295023e-03 + + + 9.0127058327198029e-02 -1.9876359403133392e-01 + + + <_> + + 0 -1 986 1.5315730124711990e-02 + + + 5.1883369684219360e-02 -3.1069299578666687e-01 + + + <_> + + 0 -1 987 -7.3937349952757359e-05 + + + 1.0555309802293777e-01 -1.6768750548362732e-01 + + + <_> + + 0 -1 988 -8.1876888871192932e-02 + + + 4.6053099632263184e-01 -3.8276348263025284e-02 + + + <_> + + 0 -1 989 -8.8246334344148636e-03 + + + -3.3107680082321167e-01 6.9674566388130188e-02 + + + <_> + + 0 -1 990 -3.7569031119346619e-03 + + + -2.7566310763359070e-01 6.9375626742839813e-02 + + + <_> + + 0 -1 991 -3.6343189422041178e-03 + + + 1.6658850014209747e-01 -1.2031579762697220e-01 + + + <_> + + 0 -1 992 2.1979490295052528e-02 + + + -2.2316349670290947e-02 3.4402579069137573e-01 + + + <_> + + 0 -1 993 6.1386551707983017e-02 + + + 1.7906000837683678e-02 -8.8129872083663940e-01 + + + <_> + + 0 -1 994 2.7061739936470985e-02 + + + -3.2444350421428680e-02 2.8866448998451233e-01 + + + <_> + + 0 -1 995 -9.5964036881923676e-03 + + + -3.0743318796157837e-01 5.2499480545520782e-02 + + + <_> + + 0 -1 996 -1.7550870543345809e-03 + + + 1.0434249788522720e-01 -1.1126209795475006e-01 + + + <_> + + 0 -1 997 1.6808100044727325e-03 + + + -1.1712419986724854e-01 1.5606869757175446e-01 + + + <_> + + 0 -1 998 -1.3623350532725453e-03 + + + 2.2637459635734558e-01 -8.6454801261425018e-02 + + + <_> + + 0 -1 999 -3.6580429878085852e-03 + + + -3.9829111099243164e-01 4.7143589705228806e-02 + + + <_> + + 0 -1 1000 5.2668720483779907e-02 + + + -1.9696790724992752e-02 4.2998239398002625e-01 + + + <_> + + 0 -1 1001 -3.4802549635060132e-04 + + + 9.1115236282348633e-02 -2.0480670034885406e-01 + + + <_> + + 0 -1 1002 1.2204200029373169e-03 + + + 3.3061511814594269e-02 -1.7324869334697723e-01 + + + <_> + + 0 -1 1003 -9.4577670097351074e-03 + + + 2.9774200916290283e-01 -5.8979131281375885e-02 + + + <_> + + 0 -1 1004 -1.7641530139371753e-03 + + + -9.6304766833782196e-02 6.5304636955261230e-02 + + + <_> + + 0 -1 1005 8.1057827919721603e-03 + + + 5.7158369570970535e-02 -3.1123921275138855e-01 + + + <_> + + 0 -1 1006 1.3963400386273861e-02 + + + -3.5234641283750534e-02 3.5719850659370422e-01 + + + <_> + + 0 -1 1007 -3.1854680273681879e-03 + + + -2.1528400480747223e-01 7.6040878891944885e-02 + + + <_> + + 0 -1 1008 -4.3546650558710098e-03 + + + -8.3892293274402618e-02 2.8290690854191780e-02 + + + <_> + + 0 -1 1009 -1.6740639694035053e-03 + + + 1.5145839750766754e-01 -1.1756320297718048e-01 + + + <_> + + 0 -1 1010 -2.7018489781767130e-03 + + + 1.3833570480346680e-01 -5.0832830369472504e-02 + + + <_> + + 0 -1 1011 2.2117499611340463e-04 + + + -2.3960849642753601e-01 7.5004346668720245e-02 + + + <_> + + 0 -1 1012 2.2773200646042824e-02 + + + -2.2433629259467125e-02 3.7049260735511780e-01 + + + <_> + + 0 -1 1013 9.5928199589252472e-03 + + + 9.7205437719821930e-02 -1.7737109959125519e-01 + + + <_> + + 0 -1 1014 3.3168029040098190e-03 + + + -5.6414358317852020e-02 9.1938421130180359e-02 + + + <_> + + 0 -1 1015 -2.3929888848215342e-03 + + + 2.1076680719852448e-01 -9.2880353331565857e-02 + + + <_> + + 0 -1 1016 -1.0766570456326008e-02 + + + -1.2974379956722260e-01 5.9958908706903458e-02 + + + <_> + + 0 -1 1017 9.9714798852801323e-04 + + + -1.4279229938983917e-01 1.4279709756374359e-01 + + + <_> + + 0 -1 1018 -6.6825798712670803e-03 + + + -2.3819839954376221e-01 4.8119660466909409e-02 + + + <_> + + 0 -1 1019 -3.7201410159468651e-03 + + + 1.9953179359436035e-01 -9.0783573687076569e-02 + + + <_> + + 0 -1 1020 -1.8553409725427628e-02 + + + -2.6621541380882263e-01 2.2872749716043472e-02 + + + <_> + + 0 -1 1021 3.0256200116127729e-03 + + + -9.1106131672859192e-02 2.4559549987316132e-01 + + + <_> + + 0 -1 1022 -6.2146309763193130e-02 + + + -1. 5.2797337993979454e-03 + + + <_> + + 0 -1 1023 1.7690609674900770e-03 + + + -1.9379650056362152e-01 9.5696106553077698e-02 + + + <_> + + 0 -1 1024 -4.3277359509374946e-05 + + + 1.1374049633741379e-01 -1.3504849374294281e-01 + + + <_> + + 0 -1 1025 1.2779419776052237e-03 + + + 7.9606160521507263e-02 -2.3597019910812378e-01 + + + <_> + + 0 -1 1026 -4.4742479920387268e-02 + + + 1.8557150661945343e-01 -3.4167829900979996e-02 + + + <_> + + 0 -1 1027 2.7726130792871118e-04 + + + -5.7937718927860260e-02 2.8903219103813171e-01 + + + <_> + + 0 -1 1028 5.6225471198558807e-02 + + + 1.3840789906680584e-02 -7.7199739217758179e-01 + + + <_> + + 0 -1 1029 8.6825769394636154e-03 + + + -1.8263089656829834e-01 1.1423269659280777e-01 + + + <_> + + 0 -1 1030 -2.4038869887590408e-03 + + + -1.9004139304161072e-01 6.5928563475608826e-02 + + + <_> + + 0 -1 1031 1.2840219773352146e-02 + + + -3.6279100924730301e-02 4.5519340038299561e-01 + + + <_> + + 0 -1 1032 1.1061480036005378e-03 + + + -6.3054688274860382e-02 8.1609472632408142e-02 + + + <_> + + 0 -1 1033 -4.6486179344356060e-03 + + + -2.7108541131019592e-01 8.0167703330516815e-02 + + + <_> + + 0 -1 1034 6.4021991565823555e-03 + + + -6.6946588456630707e-02 1.0634910315275192e-01 + + + <_> + + 0 -1 1035 -8.2370378077030182e-02 + + + 3.4517300128936768e-01 -4.8468429595232010e-02 + + + <_> + + 0 -1 1036 -3.7429828196763992e-02 + + + -6.9630950689315796e-01 1.3054380193352699e-02 + + + <_> + + 0 -1 1037 1.0500400327146053e-02 + + + 9.6028283238410950e-02 -2.6362740993499756e-01 + + + <_> + + 0 -1 1038 6.8851239979267120e-02 + + + 3.7341150455176830e-03 -9.9989157915115356e-01 + + + <_> + + 0 -1 1039 1.0171310277655721e-03 + + + -2.3500110208988190e-01 9.1097183525562286e-02 + + + <_> + + 0 -1 1040 -2.9057949781417847e-02 + + + 5.9977847337722778e-01 -3.6899000406265259e-02 + + + <_> + + 0 -1 1041 2.2022729739546776e-02 + + + 5.8034650981426239e-02 -3.2748758792877197e-01 + + + <_> + + 0 -1 1042 -4.3123541399836540e-03 + + + 2.2153949737548828e-01 -6.1332020908594131e-02 + + + <_> + + 0 -1 1043 1.0949710384011269e-02 + + + 2.1837379783391953e-02 -7.4662190675735474e-01 + + + <_> + + 0 -1 1044 4.3610740453004837e-02 + + + -4.5098949223756790e-02 2.8109139204025269e-01 + + + <_> + + 0 -1 1045 7.7252179384231567e-02 + + + 2.0801780745387077e-02 -8.6648237705230713e-01 + + + <_> + + 0 -1 1046 -2.4023890495300293e-02 + + + 3.9884421229362488e-01 -3.5227119922637939e-02 + + + <_> + + 0 -1 1047 1.9559780135750771e-02 + + + 3.5944730043411255e-02 -5.1469117403030396e-01 + + + <_> + + 0 -1 1048 2.5917299091815948e-02 + + + -1.2942669913172722e-02 4.1695970296859741e-01 + + + <_> + + 0 -1 1049 -4.6949301031418145e-04 + + + 1.6665999591350555e-01 -9.0680040419101715e-02 + + + <_> + + 0 -1 1050 -8.4590032696723938e-02 + + + -5.9283781051635742e-01 7.2113061323761940e-03 + + + <_> + + 0 -1 1051 -8.9234940242022276e-04 + + + 1.7458200454711914e-01 -1.0072509944438934e-01 + + + <_> + + 0 -1 1052 -2.4009350687265396e-02 + + + -3.9131438732147217e-01 2.2361040115356445e-02 + + + <_> + + 0 -1 1053 -4.7586968867108226e-04 + + + 1.8306100368499756e-01 -1.2541130185127258e-01 + + + <_> + + 0 -1 1054 2.9483099933713675e-03 + + + 6.5301053225994110e-02 -2.0387080311775208e-01 + + + <_> + + 0 -1 1055 3.6947780754417181e-03 + + + -6.0878321528434753e-02 3.0403020977973938e-01 + + + <_> + + 0 -1 1056 -2.9413169249892235e-03 + + + -3.0284491181373596e-01 4.7550499439239502e-02 + + + <_> + + 0 -1 1057 -7.1274640504270792e-04 + + + 1.6200789809226990e-01 -1.1822160333395004e-01 + + + <_> + + 0 -1 1058 2.4309750646352768e-02 + + + -1.1442789807915688e-02 2.0453959703445435e-01 + + + <_> + + 0 -1 1059 -9.1473112115636468e-04 + + + -2.0707829296588898e-01 7.5701341032981873e-02 + + + <_> + + 0 -1 1060 -3.6473390646278858e-03 + + + 2.4093860387802124e-01 -8.3565562963485718e-02 + + + <_> + + 0 -1 1061 1.2513220310211182e-02 + + + 4.1536040604114532e-02 -3.7487721443176270e-01 + + + <_> + + 0 -1 1062 6.2148571014404297e-03 + + + 2.0434129983186722e-02 -9.0057849884033203e-02 + + + <_> + + 0 -1 1063 -2.0954229403287172e-03 + + + 1.1625260114669800e-01 -1.8561770021915436e-01 + + + <_> + + 0 -1 1064 -2.1173250675201416e-01 + + + -1. 2.4372090119868517e-03 + + + <_> + + 0 -1 1065 1.0188589803874493e-03 + + + -7.5683966279029846e-02 2.9555431008338928e-01 + + + + + <_> + 77 + -3.0694400787353516e+01 + + <_> + + 0 -1 1066 -2.4422600865364075e-02 + + + 2.0446979999542236e-01 -2.2299669682979584e-01 + + + <_> + + 0 -1 1067 1.0574000189080834e-03 + + + -1.4355170726776123e-01 8.5603542625904083e-02 + + + <_> + + 0 -1 1068 2.5123930536210537e-03 + + + 1.0997679829597473e-01 -2.3044809699058533e-01 + + + <_> + + 0 -1 1069 1.2112739682197571e-01 + + + 3.3267501741647720e-02 -9.9910151958465576e-01 + + + <_> + + 0 -1 1070 2.9103590641170740e-03 + + + -1.0391929745674133e-01 1.9292880594730377e-01 + + + <_> + + 0 -1 1071 -8.6717177182435989e-03 + + + -2.7087220549583435e-01 9.9762901663780212e-02 + + + <_> + + 0 -1 1072 6.1140959151089191e-03 + + + -1.1517100036144257e-01 2.0429219305515289e-01 + + + <_> + + 0 -1 1073 2.0590990781784058e-02 + + + -3.3107578754425049e-02 4.6375459432601929e-01 + + + <_> + + 0 -1 1074 1.1507490416988730e-03 + + + 7.6014623045921326e-02 -2.7485209703445435e-01 + + + <_> + + 0 -1 1075 6.5449788235127926e-03 + + + -1.1266589909791946e-01 5.0031568855047226e-02 + + + <_> + + 0 -1 1076 1.6102850204333663e-03 + + + -1.8794959783554077e-01 1.1234410107135773e-01 + + + <_> + + 0 -1 1077 2.8527909889817238e-03 + + + 4.0457468479871750e-02 -8.4716461598873138e-02 + + + <_> + + 0 -1 1078 -4.0883300825953484e-03 + + + 1.2509189546108246e-01 -1.4850109815597534e-01 + + + <_> + + 0 -1 1079 1.6648479504510760e-03 + + + -1.0346720367670059e-01 5.3585231304168701e-02 + + + <_> + + 0 -1 1080 -3.1635090708732605e-03 + + + -3.3729389309883118e-01 6.1192918568849564e-02 + + + <_> + + 0 -1 1081 -1.0922599583864212e-02 + + + 4.5238488912582397e-01 -5.7903379201889038e-02 + + + <_> + + 0 -1 1082 -3.3356929197907448e-03 + + + 3.3880978822708130e-01 -6.4470112323760986e-02 + + + <_> + + 0 -1 1083 -3.0014500021934509e-02 + + + -8.2835501432418823e-01 2.4696119129657745e-02 + + + <_> + + 0 -1 1084 -3.0110439658164978e-01 + + + -8.3429050445556641e-01 1.4369309879839420e-02 + + + <_> + + 0 -1 1085 -4.2447918094694614e-03 + + + -1.2281739711761475e-01 2.8134100139141083e-02 + + + <_> + + 0 -1 1086 7.7825621701776981e-03 + + + -6.9222308695316315e-02 2.5814509391784668e-01 + + + <_> + + 0 -1 1087 -1.2726710177958012e-02 + + + 1.0745859891176224e-01 -7.6575823128223419e-02 + + + <_> + + 0 -1 1088 4.7346940264105797e-03 + + + 4.4127859175205231e-02 -3.8045680522918701e-01 + + + <_> + + 0 -1 1089 3.4512639977037907e-03 + + + -4.2947210371494293e-02 4.6074831485748291e-01 + + + <_> + + 0 -1 1090 5.6996050989255309e-04 + + + 6.6926121711730957e-02 -2.9685848951339722e-01 + + + <_> + + 0 -1 1091 -5.3889099508523941e-02 + + + -1. 3.9760880172252655e-03 + + + <_> + + 0 -1 1092 1.0263220174238086e-03 + + + -1.1138930171728134e-01 1.7764210700988770e-01 + + + <_> + + 0 -1 1093 3.9374440908432007e-02 + + + 1.2977429665625095e-02 -6.3669937849044800e-01 + + + <_> + + 0 -1 1094 1.8777979537844658e-02 + + + -3.9334569126367569e-02 4.5990169048309326e-01 + + + <_> + + 0 -1 1095 1.5851920470595360e-03 + + + -1.0917869955301285e-01 5.6247789412736893e-02 + + + <_> + + 0 -1 1096 -1.0857740417122841e-02 + + + -2.0176340639591217e-01 9.0685456991195679e-02 + + + <_> + + 0 -1 1097 4.4399261474609375e-02 + + + 1.9891490228474140e-03 -9.9981158971786499e-01 + + + <_> + + 0 -1 1098 -1.7311190022155643e-03 + + + 1.4699029922485352e-01 -1.4069539308547974e-01 + + + <_> + + 0 -1 1099 -1.6609770245850086e-03 + + + 1.6190530359745026e-01 -5.5535599589347839e-02 + + + <_> + + 0 -1 1100 -4.3332851491868496e-03 + + + -3.3971568942070007e-01 4.3209198862314224e-02 + + + <_> + + 0 -1 1101 -4.4786658691009507e-05 + + + 1.0217490047216415e-01 -1.0289809852838516e-01 + + + <_> + + 0 -1 1102 -1.2255939655005932e-02 + + + 4.6331259608268738e-01 -3.8829129189252853e-02 + + + <_> + + 0 -1 1103 3.1728390604257584e-02 + + + -1.0918959975242615e-02 1.9252130389213562e-01 + + + <_> + + 0 -1 1104 8.6054168641567230e-03 + + + 5.3962308913469315e-02 -3.3835870027542114e-01 + + + <_> + + 0 -1 1105 2.4249579291790724e-03 + + + -4.3876059353351593e-02 2.4977789819240570e-01 + + + <_> + + 0 -1 1106 -1.9957860931754112e-03 + + + 1.1398400366306305e-01 -1.7925310134887695e-01 + + + <_> + + 0 -1 1107 4.6042509377002716e-02 + + + 2.0680939778685570e-03 -8.7673932313919067e-01 + + + <_> + + 0 -1 1108 2.4898271076381207e-03 + + + -6.9595612585544586e-02 2.6142540574073792e-01 + + + <_> + + 0 -1 1109 1.0052820434793830e-03 + + + 4.5501660555601120e-02 -1.2399580329656601e-01 + + + <_> + + 0 -1 1110 9.0297553688287735e-03 + + + -7.1272410452365875e-02 2.2919359803199768e-01 + + + <_> + + 0 -1 1111 1.2028490193188190e-02 + + + 2.0230330526828766e-02 -3.4052988886833191e-01 + + + <_> + + 0 -1 1112 2.3313730489462614e-03 + + + 8.7259337306022644e-02 -2.3195190727710724e-01 + + + <_> + + 0 -1 1113 9.5184362726286054e-04 + + + -2.3168809711933136e-01 5.5022191256284714e-02 + + + <_> + + 0 -1 1114 9.6378661692142487e-03 + + + -4.1655559092760086e-02 4.2928260564804077e-01 + + + <_> + + 0 -1 1115 1.3566980138421059e-02 + + + 4.5669659972190857e-02 -2.2501240670681000e-01 + + + <_> + + 0 -1 1116 3.3653501421213150e-02 + + + -6.7861579358577728e-02 3.6967611312866211e-01 + + + <_> + + 0 -1 1117 -6.0395020991563797e-02 + + + -9.0887361764907837e-01 3.8193699438124895e-03 + + + <_> + + 0 -1 1118 1.3169209705665708e-03 + + + -1.5941339731216431e-01 1.4766550064086914e-01 + + + <_> + + 0 -1 1119 -9.7704064100980759e-03 + + + -1.2848410010337830e-01 4.7832399606704712e-02 + + + <_> + + 0 -1 1120 -4.5100511051714420e-03 + + + 1.2574909627437592e-01 -2.1964469552040100e-01 + + + <_> + + 0 -1 1121 -2.0346629898995161e-03 + + + -1.8574400246143341e-01 4.9177091568708420e-02 + + + <_> + + 0 -1 1122 1.3294390402734280e-02 + + + 9.1497242450714111e-02 -2.1343930065631866e-01 + + + <_> + + 0 -1 1123 -4.0054250508546829e-02 + + + 3.1770059466362000e-01 -3.1080769374966621e-02 + + + <_> + + 0 -1 1124 2.5492990389466286e-02 + + + 3.8877040147781372e-02 -4.5658990740776062e-01 + + + <_> + + 0 -1 1125 -3.8089688867330551e-02 + + + 6.6615498065948486e-01 -1.9895339384675026e-02 + + + <_> + + 0 -1 1126 -2.1308319270610809e-01 + + + -8.6534178256988525e-01 2.0898429676890373e-02 + + + <_> + + 0 -1 1127 -8.9727543294429779e-02 + + + 2.5725919008255005e-01 -4.6261668205261230e-02 + + + <_> + + 0 -1 1128 2.5075700134038925e-02 + + + 4.1259508579969406e-02 -3.7666648626327515e-01 + + + <_> + + 0 -1 1129 2.3366149514913559e-02 + + + -7.2202831506729126e-02 2.4737030267715454e-01 + + + <_> + + 0 -1 1130 2.8038409072905779e-04 + + + -7.9473547637462616e-02 2.2478230297565460e-01 + + + <_> + + 0 -1 1131 8.2364194095134735e-03 + + + 5.1211010664701462e-02 -1.3328659534454346e-01 + + + <_> + + 0 -1 1132 5.3922779858112335e-02 + + + 1.7108399420976639e-02 -8.9256042242050171e-01 + + + <_> + + 0 -1 1133 2.7015779633074999e-03 + + + -1.8405599892139435e-01 1.2830390036106110e-01 + + + <_> + + 0 -1 1134 -1.6505690291523933e-02 + + + 6.2239181995391846e-01 -2.6413690298795700e-02 + + + <_> + + 0 -1 1135 -1.8418730469420552e-03 + + + -1.2646800279617310e-01 4.8690851777791977e-02 + + + <_> + + 0 -1 1136 5.1953629590570927e-03 + + + 4.5653700828552246e-02 -3.2519981265068054e-01 + + + <_> + + 0 -1 1137 5.0785308703780174e-03 + + + 4.0703259408473969e-02 -2.0620769262313843e-01 + + + <_> + + 0 -1 1138 5.0687040202319622e-03 + + + -7.6456248760223389e-02 2.5867408514022827e-01 + + + <_> + + 0 -1 1139 -1.1892319656908512e-02 + + + -2.2366219758987427e-01 3.0855409801006317e-02 + + + <_> + + 0 -1 1140 2.4257500190287828e-03 + + + -7.1597889065742493e-02 2.6108819246292114e-01 + + + <_> + + 0 -1 1141 -1.1990379542112350e-02 + + + 2.2678479552268982e-01 -1.0305509716272354e-01 + + + <_> + + 0 -1 1142 -2.2772200405597687e-02 + + + -2.3770140111446381e-01 7.6630853116512299e-02 + + + + + <_> + 78 + -3.0664699554443359e+01 + + <_> + + 0 -1 1143 3.3625920768827200e-03 + + + -1.8268440663814545e-01 1.5935519337654114e-01 + + + <_> + + 0 -1 1144 4.4937757775187492e-03 + + + -8.9438192546367645e-02 2.8422310948371887e-01 + + + <_> + + 0 -1 1145 -8.8971032528206706e-04 + + + 9.5665588974952698e-02 -1.9407069683074951e-01 + + + <_> + + 0 -1 1146 2.6789100375026464e-03 + + + -1.0152669996023178e-01 1.7864160239696503e-01 + + + <_> + + 0 -1 1147 -4.0554129518568516e-03 + + + -2.3337660729885101e-01 1.2279739975929260e-01 + + + <_> + + 0 -1 1148 -1.7742250114679337e-02 + + + 1.9190870225429535e-01 -3.1710729002952576e-02 + + + <_> + + 0 -1 1149 3.0996970599517226e-04 + + + -1.9344709813594818e-01 9.9541679024696350e-02 + + + <_> + + 0 -1 1150 -3.7737619131803513e-03 + + + -2.0298850536346436e-01 7.9316012561321259e-02 + + + <_> + + 0 -1 1151 1.4448439469560981e-03 + + + -5.9811491519212723e-02 4.1375398635864258e-01 + + + <_> + + 0 -1 1152 4.1589159518480301e-03 + + + -9.2934109270572662e-02 7.7575348317623138e-02 + + + <_> + + 0 -1 1153 9.7764004021883011e-03 + + + 5.3027391433715820e-02 -3.6435180902481079e-01 + + + <_> + + 0 -1 1154 -2.8739850968122482e-03 + + + 1.2728120386600494e-01 -3.2182350754737854e-02 + + + <_> + + 0 -1 1155 4.3552028946578503e-03 + + + -1.4472070336341858e-01 1.4171679317951202e-01 + + + <_> + + 0 -1 1156 -1.2132039666175842e-01 + + + 1.5284240245819092e-01 -2.6948520913720131e-02 + + + <_> + + 0 -1 1157 7.5531532056629658e-03 + + + 1.0153439640998840e-01 -1.8715800344944000e-01 + + + <_> + + 0 -1 1158 4.8978552222251892e-03 + + + 2.8034990653395653e-02 -1.4224380254745483e-01 + + + <_> + + 0 -1 1159 -1.8711129669100046e-03 + + + 1.5129889547824860e-01 -1.3912929594516754e-01 + + + <_> + + 0 -1 1160 4.1867699474096298e-02 + + + 1.8230549991130829e-02 -5.6771957874298096e-01 + + + <_> + + 0 -1 1161 -8.4031058941036463e-04 + + + 1.5392039716243744e-01 -1.2112110108137131e-01 + + + <_> + + 0 -1 1162 3.6289851414039731e-04 + + + -7.9913586378097534e-02 7.0097483694553375e-02 + + + <_> + + 0 -1 1163 -4.4498889474198222e-04 + + + 1.6784679889678955e-01 -1.3805930316448212e-01 + + + <_> + + 0 -1 1164 2.2194290068000555e-03 + + + 5.8453138917684555e-02 -1.2374790012836456e-01 + + + <_> + + 0 -1 1165 -2.5759059935808182e-03 + + + 2.2619499266147614e-01 -8.6251437664031982e-02 + + + <_> + + 0 -1 1166 5.8989811688661575e-02 + + + 6.9204131141304970e-03 -7.3367577791213989e-01 + + + <_> + + 0 -1 1167 -2.7889141440391541e-01 + + + 4.6728101372718811e-01 -3.8612861186265945e-02 + + + <_> + + 0 -1 1168 -5.3824000060558319e-03 + + + -1.6939850151538849e-01 6.1394538730382919e-02 + + + <_> + + 0 -1 1169 -8.9165568351745605e-04 + + + -2.4867910146713257e-01 7.6590277254581451e-02 + + + <_> + + 0 -1 1170 1.2071889825165272e-02 + + + 8.9360373094677925e-03 -2.7028709650039673e-01 + + + <_> + + 0 -1 1171 3.8453561137430370e-04 + + + 9.9488303065299988e-02 -2.1522629261016846e-01 + + + <_> + + 0 -1 1172 -2.2118990309536457e-03 + + + 4.0786389261484146e-02 -1.1563809961080551e-01 + + + <_> + + 0 -1 1173 2.0960820838809013e-02 + + + -3.1355928629636765e-02 7.1006178855895996e-01 + + + <_> + + 0 -1 1174 -3.9021030534058809e-03 + + + -1.7460019886493683e-01 4.0775351226329803e-02 + + + <_> + + 0 -1 1175 -4.5169141230871901e-05 + + + 1.2105180323123932e-01 -1.6618220508098602e-01 + + + <_> + + 0 -1 1176 6.9195672869682312e-02 + + + 7.6447450555860996e-03 -5.9211570024490356e-01 + + + <_> + + 0 -1 1177 -1.1615910334512591e-03 + + + 2.2584970295429230e-01 -9.1772772371768951e-02 + + + <_> + + 0 -1 1178 4.5347518607741222e-05 + + + -2.0863719284534454e-01 9.0364061295986176e-02 + + + <_> + + 0 -1 1179 -1.9045149907469749e-02 + + + 4.2344009876251221e-01 -4.6018179506063461e-02 + + + <_> + + 0 -1 1180 4.1966438293457031e-03 + + + -2.8369670733809471e-02 3.0800709128379822e-01 + + + <_> + + 0 -1 1181 2.5357000413350761e-04 + + + -2.8971961140632629e-01 7.5374223291873932e-02 + + + <_> + + 0 -1 1182 1.0817909985780716e-01 + + + -1.4286429621279240e-02 7.2823339700698853e-01 + + + <_> + + 0 -1 1183 -5.5140778422355652e-03 + + + -1.8854649364948273e-01 1.1378549784421921e-01 + + + <_> + + 0 -1 1184 5.5264509283006191e-03 + + + 7.0834018290042877e-02 -1.8397599458694458e-01 + + + <_> + + 0 -1 1185 6.4198831096291542e-03 + + + -1.1449480056762695e-01 1.9120390713214874e-01 + + + <_> + + 0 -1 1186 1.9314220547676086e-01 + + + 1.4066229574382305e-02 -6.9772118330001831e-01 + + + <_> + + 0 -1 1187 4.0670208632946014e-02 + + + -2.4279089644551277e-02 7.8828179836273193e-01 + + + <_> + + 0 -1 1188 -2.1965131163597107e-03 + + + -2.0105579495429993e-01 5.1050510257482529e-02 + + + <_> + + 0 -1 1189 -4.7381771728396416e-03 + + + 2.5222310423851013e-01 -7.3429226875305176e-02 + + + <_> + + 0 -1 1190 7.1773640811443329e-02 + + + -9.0609909966588020e-03 9.2946898937225342e-01 + + + <_> + + 0 -1 1191 6.9466611603274941e-04 + + + 1.0625690221786499e-01 -1.9162459671497345e-01 + + + <_> + + 0 -1 1192 2.6388010010123253e-03 + + + 6.3330717384815216e-02 -2.0404089987277985e-01 + + + <_> + + 0 -1 1193 -3.1406691414304078e-04 + + + 1.7990510165691376e-01 -9.8495960235595703e-02 + + + <_> + + 0 -1 1194 -5.8691151207312942e-04 + + + 8.5071258246898651e-02 -7.6974540948867798e-02 + + + <_> + + 0 -1 1195 1.0376359568908811e-03 + + + -1.1096309870481491e-01 1.5985070168972015e-01 + + + <_> + + 0 -1 1196 1.6373570542782545e-03 + + + 1.1128730326890945e-01 -1.2352730333805084e-01 + + + <_> + + 0 -1 1197 -7.3773309122771025e-04 + + + 1.2890860438346863e-01 -1.4294579625129700e-01 + + + <_> + + 0 -1 1198 -1.6841450706124306e-02 + + + -2.4231070280075073e-01 2.0597470924258232e-02 + + + <_> + + 0 -1 1199 -3.0590690672397614e-02 + + + 3.3513951301574707e-01 -4.7183569520711899e-02 + + + <_> + + 0 -1 1200 1.0214540176093578e-02 + + + 5.5497199296951294e-02 -2.3405939340591431e-01 + + + <_> + + 0 -1 1201 -1.1853770120069385e-03 + + + 9.2074163258075714e-02 -1.7347140610218048e-01 + + + <_> + + 0 -1 1202 1.1729650432243943e-03 + + + -8.4075942635536194e-02 2.0689530670642853e-01 + + + <_> + + 0 -1 1203 1.0894170030951500e-02 + + + 5.6475941091775894e-02 -3.1677180528640747e-01 + + + <_> + + 0 -1 1204 -2.0437049679458141e-03 + + + 1.8796369433403015e-01 -9.8889023065567017e-02 + + + <_> + + 0 -1 1205 -5.7676038704812527e-03 + + + -2.5189259648323059e-01 7.5108267366886139e-02 + + + <_> + + 0 -1 1206 6.9624483585357666e-02 + + + -1.7661379650235176e-02 4.3390399217605591e-01 + + + <_> + + 0 -1 1207 -3.1853429391048849e-04 + + + -2.9378080368041992e-01 5.8162420988082886e-02 + + + <_> + + 0 -1 1208 1.7543470021337271e-03 + + + 2.6858489960432053e-02 -1.5225639939308167e-01 + + + <_> + + 0 -1 1209 1.2951970566064119e-03 + + + -7.1769118309020996e-02 3.8101229071617126e-01 + + + <_> + + 0 -1 1210 2.0549140870571136e-02 + + + -2.3171430453658104e-02 2.7228319644927979e-01 + + + <_> + + 0 -1 1211 2.7475480455905199e-03 + + + 6.7207306623458862e-02 -2.7162951231002808e-01 + + + <_> + + 0 -1 1212 5.2633951418101788e-03 + + + -1.3931609690189362e-01 1.1821229755878448e-01 + + + <_> + + 0 -1 1213 -5.2199261263012886e-03 + + + -3.3213511109352112e-01 4.7329191118478775e-02 + + + <_> + + 0 -1 1214 9.9096707999706268e-03 + + + -6.9706782698631287e-02 1.9954280555248260e-01 + + + <_> + + 0 -1 1215 -1.0334379971027374e-01 + + + 4.2418560385704041e-01 -3.9896268397569656e-02 + + + <_> + + 0 -1 1216 -1.3322319835424423e-02 + + + -2.5508868694305420e-01 4.1351031512022018e-02 + + + <_> + + 0 -1 1217 1.7832260346040130e-03 + + + -1.7664439976215363e-01 1.0336239635944366e-01 + + + <_> + + 0 -1 1218 6.3282333314418793e-02 + + + 1.2395679950714111e-02 -4.6355250477790833e-01 + + + <_> + + 0 -1 1219 -5.1022358238697052e-03 + + + 4.0670639276504517e-01 -5.0193451344966888e-02 + + + <_> + + 0 -1 1220 3.9891529828310013e-02 + + + 3.7219129502773285e-02 -5.5696451663970947e-01 + + + + + + + <_> + + <_> + 3 4 12 16 -1. + + <_> + 7 4 4 16 3. + + + + <_> + + <_> + 11 0 2 20 -1. + + <_> + 11 10 2 10 2. + + + + <_> + + <_> + 4 1 4 22 -1. + + <_> + 4 12 4 11 2. + + + + <_> + + <_> + 9 8 7 12 -1. + + <_> + 9 14 7 6 2. + + + + <_> + + <_> + 6 0 6 10 -1. + + <_> + 6 0 3 5 2. + + <_> + 9 5 3 5 2. + + + + <_> + + <_> + 1 18 18 5 -1. + + <_> + 1 18 9 5 2. + + + + <_> + + <_> + 4 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 6 17 10 6 -1. + + <_> + 6 20 10 3 2. + + + + <_> + + <_> + 0 0 4 20 -1. + + <_> + 0 10 4 10 2. + + + + <_> + + <_> + 3 0 16 14 -1. + + <_> + 3 7 16 7 2. + + + + <_> + + <_> + 5 1 4 13 -1. + + <_> + 7 1 2 13 2. + + + + <_> + + <_> + 1 8 18 12 -1. + + <_> + 10 8 9 6 2. + + <_> + 1 14 9 6 2. + + + + <_> + + <_> + 2 0 15 21 -1. + + <_> + 7 0 5 21 3. + + + + <_> + + <_> + 1 5 18 18 -1. + + <_> + 10 5 9 9 2. + + <_> + 1 14 9 9 2. + + + + <_> + + <_> + 2 19 15 3 -1. + + <_> + 7 19 5 3 3. + + + + <_> + + <_> + 7 20 12 3 -1. + + <_> + 7 20 6 3 2. + + + + <_> + + <_> + 1 21 14 2 -1. + + <_> + 8 21 7 2 2. + + + + <_> + + <_> + 0 16 18 6 -1. + + <_> + 6 16 6 6 3. + + + + <_> + + <_> + 8 3 4 20 -1. + + <_> + 8 13 4 10 2. + + + + <_> + + <_> + 0 19 18 3 -1. + + <_> + 9 19 9 3 2. + + + + <_> + + <_> + 5 21 14 2 -1. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 2 0 9 5 -1. + + <_> + 5 0 3 5 3. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 3 9 6 14 -1. + + <_> + 5 9 2 14 3. + + + + <_> + + <_> + 12 3 3 18 -1. + + <_> + 12 12 3 9 2. + + + + <_> + + <_> + 1 14 4 9 -1. + + <_> + 3 14 2 9 2. + + + + <_> + + <_> + 7 15 11 8 -1. + + <_> + 7 17 11 4 2. + + + + <_> + + <_> + 0 7 6 10 -1. + + <_> + 0 7 3 5 2. + + <_> + 3 12 3 5 2. + + + + <_> + + <_> + 10 6 4 13 -1. + + <_> + 10 6 2 13 2. + + + + <_> + + <_> + 5 6 4 13 -1. + + <_> + 7 6 2 13 2. + + + + <_> + + <_> + 8 2 6 8 -1. + + <_> + 8 2 6 4 2. + + + 1 + + <_> + + <_> + 0 11 19 12 -1. + + <_> + 0 17 19 6 2. + + + + <_> + + <_> + 0 18 6 5 -1. + + <_> + 3 18 3 5 2. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 0 20 15 3 -1. + + <_> + 5 20 5 3 3. + + + + <_> + + <_> + 9 19 8 4 -1. + + <_> + 9 19 4 4 2. + + + + <_> + + <_> + 0 17 9 6 -1. + + <_> + 3 17 3 6 3. + + + + <_> + + <_> + 14 17 5 6 -1. + + <_> + 14 20 5 3 2. + + + + <_> + + <_> + 2 2 15 14 -1. + + <_> + 7 2 5 14 3. + + + + <_> + + <_> + 14 17 5 6 -1. + + <_> + 14 20 5 3 2. + + + + <_> + + <_> + 0 17 5 6 -1. + + <_> + 0 20 5 3 2. + + + + <_> + + <_> + 3 0 13 8 -1. + + <_> + 3 4 13 4 2. + + + + <_> + + <_> + 0 21 14 2 -1. + + <_> + 7 21 7 2 2. + + + + <_> + + <_> + 8 4 4 15 -1. + + <_> + 9 4 2 15 2. + + + + <_> + + <_> + 1 18 8 5 -1. + + <_> + 5 18 4 5 2. + + + + <_> + + <_> + 8 4 4 15 -1. + + <_> + 9 4 2 15 2. + + + + <_> + + <_> + 7 4 4 15 -1. + + <_> + 8 4 2 15 2. + + + + <_> + + <_> + 11 11 8 8 -1. + + <_> + 15 11 4 4 2. + + <_> + 11 15 4 4 2. + + + + <_> + + <_> + 4 13 6 7 -1. + + <_> + 6 13 2 7 3. + + + + <_> + + <_> + 3 1 8 13 -1. + + <_> + 7 1 4 13 2. + + + + <_> + + <_> + 5 21 14 2 -1. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 0 21 18 2 -1. + + <_> + 9 21 9 2 2. + + + + <_> + + <_> + 7 18 8 5 -1. + + <_> + 7 18 4 5 2. + + + + <_> + + <_> + 4 17 8 6 -1. + + <_> + 8 17 4 6 2. + + + + <_> + + <_> + 10 2 7 10 -1. + + <_> + 10 2 7 5 2. + + + 1 + + <_> + + <_> + 2 9 2 14 -1. + + <_> + 3 9 1 14 2. + + + + <_> + + <_> + 15 7 2 16 -1. + + <_> + 15 7 1 16 2. + + + + <_> + + <_> + 1 8 4 15 -1. + + <_> + 3 8 2 15 2. + + + + <_> + + <_> + 14 0 3 14 -1. + + <_> + 14 0 3 7 2. + + + 1 + + <_> + + <_> + 9 6 8 9 -1. + + <_> + 9 6 4 9 2. + + + 1 + + <_> + + <_> + 8 15 11 8 -1. + + <_> + 8 17 11 4 2. + + + + <_> + + <_> + 5 7 4 10 -1. + + <_> + 7 7 2 10 2. + + + + <_> + + <_> + 10 15 9 8 -1. + + <_> + 10 17 9 4 2. + + + + <_> + + <_> + 0 15 9 8 -1. + + <_> + 0 17 9 4 2. + + + + <_> + + <_> + 2 1 17 18 -1. + + <_> + 2 10 17 9 2. + + + + <_> + + <_> + 2 0 16 2 -1. + + <_> + 2 0 8 2 2. + + + 1 + + <_> + + <_> + 8 0 9 5 -1. + + <_> + 11 0 3 5 3. + + + + <_> + + <_> + 6 0 6 10 -1. + + <_> + 6 0 3 5 2. + + <_> + 9 5 3 5 2. + + + + <_> + + <_> + 10 6 4 7 -1. + + <_> + 10 6 2 7 2. + + + + <_> + + <_> + 2 4 15 11 -1. + + <_> + 7 4 5 11 3. + + + + <_> + + <_> + 15 15 4 8 -1. + + <_> + 15 15 2 8 2. + + + + <_> + + <_> + 0 15 4 8 -1. + + <_> + 2 15 2 8 2. + + + + <_> + + <_> + 5 6 4 11 -1. + + <_> + 7 6 2 11 2. + + + + <_> + + <_> + 3 17 16 4 -1. + + <_> + 7 17 8 4 2. + + + + <_> + + <_> + 9 3 10 8 -1. + + <_> + 9 3 5 8 2. + + + 1 + + <_> + + <_> + 12 6 7 10 -1. + + <_> + 12 6 7 5 2. + + + 1 + + <_> + + <_> + 2 0 6 5 -1. + + <_> + 5 0 3 5 2. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 2 20 14 3 -1. + + <_> + 9 20 7 3 2. + + + + <_> + + <_> + 4 21 14 2 -1. + + <_> + 4 21 7 2 2. + + + + <_> + + <_> + 8 8 3 14 -1. + + <_> + 9 8 1 14 3. + + + + <_> + + <_> + 8 9 3 14 -1. + + <_> + 9 9 1 14 3. + + + + <_> + + <_> + 5 7 9 16 -1. + + <_> + 5 11 9 8 2. + + + + <_> + + <_> + 11 13 6 8 -1. + + <_> + 11 17 6 4 2. + + + + <_> + + <_> + 4 17 7 6 -1. + + <_> + 4 19 7 2 3. + + + + <_> + + <_> + 2 13 16 8 -1. + + <_> + 10 13 8 4 2. + + <_> + 2 17 8 4 2. + + + + <_> + + <_> + 2 18 15 3 -1. + + <_> + 2 19 15 1 3. + + + + <_> + + <_> + 2 13 15 3 -1. + + <_> + 7 13 5 3 3. + + + + <_> + + <_> + 8 0 11 16 -1. + + <_> + 8 4 11 8 2. + + + + <_> + + <_> + 0 0 19 18 -1. + + <_> + 0 6 19 6 3. + + + + <_> + + <_> + 8 0 11 16 -1. + + <_> + 8 4 11 8 2. + + + + <_> + + <_> + 0 1 4 20 -1. + + <_> + 0 6 4 10 2. + + + + <_> + + <_> + 3 6 15 4 -1. + + <_> + 8 6 5 4 3. + + + + <_> + + <_> + 0 9 18 6 -1. + + <_> + 0 9 9 3 2. + + <_> + 9 12 9 3 2. + + + + <_> + + <_> + 8 5 3 14 -1. + + <_> + 9 5 1 14 3. + + + + <_> + + <_> + 1 0 6 8 -1. + + <_> + 3 0 2 8 3. + + + + <_> + + <_> + 1 6 18 6 -1. + + <_> + 10 6 9 3 2. + + <_> + 1 9 9 3 2. + + + + <_> + + <_> + 7 7 4 15 -1. + + <_> + 8 7 2 15 2. + + + + <_> + + <_> + 11 5 8 10 -1. + + <_> + 11 10 8 5 2. + + + + <_> + + <_> + 0 5 8 10 -1. + + <_> + 0 10 8 5 2. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 2 16 9 5 -1. + + <_> + 5 16 3 5 3. + + + + <_> + + <_> + 13 11 6 11 -1. + + <_> + 13 11 3 11 2. + + + + <_> + + <_> + 5 8 4 11 -1. + + <_> + 7 8 2 11 2. + + + + <_> + + <_> + 5 7 12 5 -1. + + <_> + 8 7 6 5 2. + + + + <_> + + <_> + 2 11 15 3 -1. + + <_> + 7 11 5 3 3. + + + + <_> + + <_> + 1 1 18 3 -1. + + <_> + 7 1 6 3 3. + + + + <_> + + <_> + 5 1 14 4 -1. + + <_> + 5 1 7 4 2. + + + 1 + + <_> + + <_> + 1 9 18 10 -1. + + <_> + 10 9 9 5 2. + + <_> + 1 14 9 5 2. + + + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 8 7 4 14 -1. + + <_> + 9 7 2 14 2. + + + + <_> + + <_> + 0 1 19 16 -1. + + <_> + 0 9 19 8 2. + + + + <_> + + <_> + 9 7 3 14 -1. + + <_> + 10 7 1 14 3. + + + + <_> + + <_> + 2 11 14 6 -1. + + <_> + 2 11 7 3 2. + + <_> + 9 14 7 3 2. + + + + <_> + + <_> + 9 7 3 14 -1. + + <_> + 10 7 1 14 3. + + + + <_> + + <_> + 7 7 3 14 -1. + + <_> + 8 7 1 14 3. + + + + <_> + + <_> + 7 17 5 6 -1. + + <_> + 7 20 5 3 2. + + + + <_> + + <_> + 2 6 9 15 -1. + + <_> + 5 11 3 5 9. + + + + <_> + + <_> + 8 0 6 10 -1. + + <_> + 11 0 3 5 2. + + <_> + 8 5 3 5 2. + + + + <_> + + <_> + 3 2 6 21 -1. + + <_> + 5 9 2 7 9. + + + + <_> + + <_> + 9 19 10 4 -1. + + <_> + 9 19 5 4 2. + + + + <_> + + <_> + 2 8 4 8 -1. + + <_> + 4 8 2 8 2. + + + + <_> + + <_> + 11 1 2 22 -1. + + <_> + 11 12 2 11 2. + + + + <_> + + <_> + 0 20 15 3 -1. + + <_> + 5 20 5 3 3. + + + + <_> + + <_> + 10 19 8 4 -1. + + <_> + 10 19 4 4 2. + + + + <_> + + <_> + 1 19 8 4 -1. + + <_> + 5 19 4 4 2. + + + + <_> + + <_> + 9 0 6 7 -1. + + <_> + 11 0 2 7 3. + + + + <_> + + <_> + 4 0 6 7 -1. + + <_> + 6 0 2 7 3. + + + + <_> + + <_> + 13 2 3 10 -1. + + <_> + 13 2 3 5 2. + + + 1 + + <_> + + <_> + 6 4 6 9 -1. + + <_> + 9 4 3 9 2. + + + + <_> + + <_> + 10 7 2 10 -1. + + <_> + 10 7 1 10 2. + + + 1 + + <_> + + <_> + 2 1 15 9 -1. + + <_> + 7 1 5 9 3. + + + + <_> + + <_> + 8 5 6 7 -1. + + <_> + 10 5 2 7 3. + + + + <_> + + <_> + 5 5 6 7 -1. + + <_> + 7 5 2 7 3. + + + + <_> + + <_> + 10 7 2 10 -1. + + <_> + 10 7 1 10 2. + + + 1 + + <_> + + <_> + 9 7 10 2 -1. + + <_> + 9 7 10 1 2. + + + 1 + + <_> + + <_> + 13 16 4 7 -1. + + <_> + 13 16 2 7 2. + + + + <_> + + <_> + 6 9 4 10 -1. + + <_> + 8 9 2 10 2. + + + + <_> + + <_> + 5 18 14 4 -1. + + <_> + 12 18 7 2 2. + + <_> + 5 20 7 2 2. + + + + <_> + + <_> + 5 1 12 3 -1. + + <_> + 5 1 6 3 2. + + + 1 + + <_> + + <_> + 11 0 2 22 -1. + + <_> + 11 11 2 11 2. + + + + <_> + + <_> + 3 15 4 8 -1. + + <_> + 5 15 2 8 2. + + + + <_> + + <_> + 11 0 2 14 -1. + + <_> + 11 0 1 14 2. + + + + <_> + + <_> + 6 0 2 14 -1. + + <_> + 7 0 1 14 2. + + + + <_> + + <_> + 11 0 2 20 -1. + + <_> + 11 0 1 20 2. + + + + <_> + + <_> + 1 19 16 4 -1. + + <_> + 5 19 8 4 2. + + + + <_> + + <_> + 11 0 2 20 -1. + + <_> + 11 0 1 20 2. + + + + <_> + + <_> + 6 0 2 20 -1. + + <_> + 7 0 1 20 2. + + + + <_> + + <_> + 11 0 2 22 -1. + + <_> + 11 11 2 11 2. + + + + <_> + + <_> + 0 18 14 4 -1. + + <_> + 0 18 7 2 2. + + <_> + 7 20 7 2 2. + + + + <_> + + <_> + 1 1 18 8 -1. + + <_> + 10 1 9 4 2. + + <_> + 1 5 9 4 2. + + + + <_> + + <_> + 9 8 10 4 -1. + + <_> + 9 8 10 2 2. + + + 1 + + <_> + + <_> + 3 7 15 3 -1. + + <_> + 8 7 5 3 3. + + + + <_> + + <_> + 8 1 6 8 -1. + + <_> + 8 1 6 4 2. + + + 1 + + <_> + + <_> + 8 3 3 15 -1. + + <_> + 9 3 1 15 3. + + + + <_> + + <_> + 1 14 9 6 -1. + + <_> + 4 14 3 6 3. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 0 18 14 3 -1. + + <_> + 0 19 14 1 3. + + + + <_> + + <_> + 5 20 10 3 -1. + + <_> + 5 20 5 3 2. + + + + <_> + + <_> + 9 5 10 6 -1. + + <_> + 9 5 5 6 2. + + + 1 + + <_> + + <_> + 2 4 15 14 -1. + + <_> + 7 4 5 14 3. + + + + <_> + + <_> + 0 16 6 7 -1. + + <_> + 3 16 3 7 2. + + + + <_> + + <_> + 7 18 12 5 -1. + + <_> + 11 18 4 5 3. + + + + <_> + + <_> + 1 18 15 3 -1. + + <_> + 1 19 15 1 3. + + + + <_> + + <_> + 4 19 12 4 -1. + + <_> + 8 19 4 4 3. + + + + <_> + + <_> + 5 0 3 12 -1. + + <_> + 5 6 3 6 2. + + + + <_> + + <_> + 3 20 16 3 -1. + + <_> + 3 20 8 3 2. + + + + <_> + + <_> + 0 15 15 8 -1. + + <_> + 0 17 15 4 2. + + + + <_> + + <_> + 12 14 4 7 -1. + + <_> + 12 14 2 7 2. + + + + <_> + + <_> + 1 7 15 3 -1. + + <_> + 6 7 5 3 3. + + + + <_> + + <_> + 10 0 8 4 -1. + + <_> + 10 0 4 4 2. + + + + <_> + + <_> + 0 0 18 4 -1. + + <_> + 6 0 6 4 3. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 2 4 15 16 -1. + + <_> + 7 4 5 16 3. + + + + <_> + + <_> + 4 0 11 12 -1. + + <_> + 4 6 11 6 2. + + + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 4 21 14 2 -1. + + <_> + 4 21 7 2 2. + + + + <_> + + <_> + 0 21 16 2 -1. + + <_> + 8 21 8 2 2. + + + + <_> + + <_> + 8 7 4 14 -1. + + <_> + 9 7 2 14 2. + + + + <_> + + <_> + 1 0 16 12 -1. + + <_> + 5 0 8 12 2. + + + + <_> + + <_> + 3 17 16 5 -1. + + <_> + 7 17 8 5 2. + + + + <_> + + <_> + 0 13 6 5 -1. + + <_> + 3 13 3 5 2. + + + + <_> + + <_> + 13 12 6 6 -1. + + <_> + 13 12 3 6 2. + + + + <_> + + <_> + 0 12 6 6 -1. + + <_> + 3 12 3 6 2. + + + + <_> + + <_> + 8 7 4 14 -1. + + <_> + 9 7 2 14 2. + + + + <_> + + <_> + 7 3 4 20 -1. + + <_> + 7 13 4 10 2. + + + + <_> + + <_> + 8 6 4 15 -1. + + <_> + 9 6 2 15 2. + + + + <_> + + <_> + 7 6 4 15 -1. + + <_> + 8 6 2 15 2. + + + + <_> + + <_> + 13 11 6 12 -1. + + <_> + 16 11 3 6 2. + + <_> + 13 17 3 6 2. + + + + <_> + + <_> + 0 11 6 12 -1. + + <_> + 0 11 3 6 2. + + <_> + 3 17 3 6 2. + + + + <_> + + <_> + 11 2 2 14 -1. + + <_> + 11 2 1 14 2. + + + + <_> + + <_> + 6 2 2 14 -1. + + <_> + 7 2 1 14 2. + + + + <_> + + <_> + 11 5 3 14 -1. + + <_> + 12 5 1 14 3. + + + + <_> + + <_> + 2 4 15 10 -1. + + <_> + 7 4 5 10 3. + + + + <_> + + <_> + 4 0 11 22 -1. + + <_> + 4 11 11 11 2. + + + + <_> + + <_> + 0 19 14 4 -1. + + <_> + 0 19 7 2 2. + + <_> + 7 21 7 2 2. + + + + <_> + + <_> + 8 0 4 7 -1. + + <_> + 8 0 2 7 2. + + + + <_> + + <_> + 7 0 4 15 -1. + + <_> + 8 0 2 15 2. + + + + <_> + + <_> + 5 21 14 2 -1. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 12 9 2 14 -1. + + <_> + 12 9 1 14 2. + + + + <_> + + <_> + 5 9 2 14 -1. + + <_> + 6 9 1 14 2. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 5 0 3 17 -1. + + <_> + 6 0 1 17 3. + + + + <_> + + <_> + 4 20 12 3 -1. + + <_> + 4 20 6 3 2. + + + + <_> + + <_> + 5 2 3 14 -1. + + <_> + 6 2 1 14 3. + + + + <_> + + <_> + 2 3 15 18 -1. + + <_> + 7 3 5 18 3. + + + + <_> + + <_> + 7 1 4 7 -1. + + <_> + 9 1 2 7 2. + + + + <_> + + <_> + 8 0 9 5 -1. + + <_> + 11 0 3 5 3. + + + + <_> + + <_> + 7 0 4 7 -1. + + <_> + 9 0 2 7 2. + + + + <_> + + <_> + 5 3 12 19 -1. + + <_> + 8 3 6 19 2. + + + + <_> + + <_> + 2 3 12 19 -1. + + <_> + 5 3 6 19 2. + + + + <_> + + <_> + 13 8 2 14 -1. + + <_> + 13 8 1 14 2. + + + + <_> + + <_> + 1 16 12 6 -1. + + <_> + 1 18 12 2 3. + + + + <_> + + <_> + 13 8 2 14 -1. + + <_> + 13 8 1 14 2. + + + + <_> + + <_> + 4 8 2 14 -1. + + <_> + 5 8 1 14 2. + + + + <_> + + <_> + 9 0 10 4 -1. + + <_> + 9 0 5 4 2. + + + + <_> + + <_> + 6 1 7 22 -1. + + <_> + 6 12 7 11 2. + + + + <_> + + <_> + 7 17 10 6 -1. + + <_> + 12 17 5 3 2. + + <_> + 7 20 5 3 2. + + + + <_> + + <_> + 6 6 6 5 -1. + + <_> + 9 6 3 5 2. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 1 0 15 8 -1. + + <_> + 1 4 15 4 2. + + + + <_> + + <_> + 2 0 16 6 -1. + + <_> + 6 0 8 6 2. + + + + <_> + + <_> + 2 20 10 3 -1. + + <_> + 7 20 5 3 2. + + + + <_> + + <_> + 9 19 10 3 -1. + + <_> + 9 19 5 3 2. + + + + <_> + + <_> + 3 18 6 5 -1. + + <_> + 6 18 3 5 2. + + + + <_> + + <_> + 9 0 6 9 -1. + + <_> + 11 0 2 9 3. + + + + <_> + + <_> + 4 0 6 9 -1. + + <_> + 6 0 2 9 3. + + + + <_> + + <_> + 10 9 4 14 -1. + + <_> + 12 9 2 7 2. + + <_> + 10 16 2 7 2. + + + + <_> + + <_> + 2 11 4 7 -1. + + <_> + 4 11 2 7 2. + + + + <_> + + <_> + 12 13 4 9 -1. + + <_> + 12 13 2 9 2. + + + + <_> + + <_> + 3 13 4 9 -1. + + <_> + 5 13 2 9 2. + + + + <_> + + <_> + 9 13 10 6 -1. + + <_> + 14 13 5 3 2. + + <_> + 9 16 5 3 2. + + + + <_> + + <_> + 2 10 15 10 -1. + + <_> + 7 10 5 10 3. + + + + <_> + + <_> + 10 9 4 14 -1. + + <_> + 12 9 2 7 2. + + <_> + 10 16 2 7 2. + + + + <_> + + <_> + 5 9 4 14 -1. + + <_> + 5 9 2 7 2. + + <_> + 7 16 2 7 2. + + + + <_> + + <_> + 12 16 4 7 -1. + + <_> + 12 16 2 7 2. + + + + <_> + + <_> + 3 16 4 7 -1. + + <_> + 5 16 2 7 2. + + + + <_> + + <_> + 8 17 7 6 -1. + + <_> + 8 19 7 2 3. + + + + <_> + + <_> + 0 20 15 3 -1. + + <_> + 5 20 5 3 3. + + + + <_> + + <_> + 9 15 6 8 -1. + + <_> + 9 19 6 4 2. + + + + <_> + + <_> + 0 0 10 10 -1. + + <_> + 0 0 5 5 2. + + <_> + 5 5 5 5 2. + + + + <_> + + <_> + 9 0 10 3 -1. + + <_> + 9 0 5 3 2. + + + + <_> + + <_> + 0 0 10 3 -1. + + <_> + 5 0 5 3 2. + + + + <_> + + <_> + 10 4 4 10 -1. + + <_> + 10 4 2 10 2. + + + 1 + + <_> + + <_> + 9 4 10 4 -1. + + <_> + 9 4 10 2 2. + + + 1 + + <_> + + <_> + 6 4 12 12 -1. + + <_> + 10 8 4 4 9. + + + + <_> + + <_> + 1 4 12 12 -1. + + <_> + 5 8 4 4 9. + + + + <_> + + <_> + 5 6 9 8 -1. + + <_> + 5 8 9 4 2. + + + + <_> + + <_> + 2 1 15 21 -1. + + <_> + 7 8 5 7 9. + + + + <_> + + <_> + 1 16 9 7 -1. + + <_> + 4 16 3 7 3. + + + + <_> + + <_> + 4 5 12 18 -1. + + <_> + 10 5 6 9 2. + + <_> + 4 14 6 9 2. + + + + <_> + + <_> + 1 20 15 3 -1. + + <_> + 6 20 5 3 3. + + + + <_> + + <_> + 3 4 16 13 -1. + + <_> + 7 4 8 13 2. + + + + <_> + + <_> + 9 3 10 8 -1. + + <_> + 9 3 5 8 2. + + + 1 + + <_> + + <_> + 11 19 8 4 -1. + + <_> + 11 19 4 4 2. + + + + <_> + + <_> + 0 19 8 4 -1. + + <_> + 4 19 4 4 2. + + + + <_> + + <_> + 8 0 9 5 -1. + + <_> + 11 0 3 5 3. + + + + <_> + + <_> + 6 0 6 22 -1. + + <_> + 6 0 3 11 2. + + <_> + 9 11 3 11 2. + + + + <_> + + <_> + 8 7 3 14 -1. + + <_> + 9 7 1 14 3. + + + + <_> + + <_> + 5 8 2 14 -1. + + <_> + 6 8 1 14 2. + + + + <_> + + <_> + 13 11 3 10 -1. + + <_> + 13 16 3 5 2. + + + + <_> + + <_> + 1 0 16 5 -1. + + <_> + 5 0 8 5 2. + + + + <_> + + <_> + 9 0 10 7 -1. + + <_> + 9 0 5 7 2. + + + + <_> + + <_> + 0 0 18 23 -1. + + <_> + 9 0 9 23 2. + + + + <_> + + <_> + 5 8 12 15 -1. + + <_> + 9 13 4 5 9. + + + + <_> + + <_> + 3 0 6 7 -1. + + <_> + 5 0 2 7 3. + + + + <_> + + <_> + 5 8 12 15 -1. + + <_> + 9 13 4 5 9. + + + + <_> + + <_> + 5 2 4 13 -1. + + <_> + 7 2 2 13 2. + + + + <_> + + <_> + 3 11 14 2 -1. + + <_> + 3 11 7 2 2. + + + + <_> + + <_> + 2 12 15 7 -1. + + <_> + 7 12 5 7 3. + + + + <_> + + <_> + 5 8 12 15 -1. + + <_> + 9 13 4 5 9. + + + + <_> + + <_> + 0 14 15 9 -1. + + <_> + 5 14 5 9 3. + + + + <_> + + <_> + 6 15 12 8 -1. + + <_> + 9 15 6 8 2. + + + + <_> + + <_> + 1 15 12 8 -1. + + <_> + 4 15 6 8 2. + + + + <_> + + <_> + 8 6 3 14 -1. + + <_> + 9 6 1 14 3. + + + + <_> + + <_> + 4 5 4 14 -1. + + <_> + 5 5 2 14 2. + + + + <_> + + <_> + 11 5 3 14 -1. + + <_> + 12 5 1 14 3. + + + + <_> + + <_> + 1 10 6 9 -1. + + <_> + 3 10 2 9 3. + + + + <_> + + <_> + 2 8 16 10 -1. + + <_> + 6 8 8 10 2. + + + + <_> + + <_> + 6 17 6 6 -1. + + <_> + 6 20 6 3 2. + + + + <_> + + <_> + 1 10 18 10 -1. + + <_> + 10 10 9 5 2. + + <_> + 1 15 9 5 2. + + + + <_> + + <_> + 6 0 7 4 -1. + + <_> + 6 2 7 2 2. + + + + <_> + + <_> + 0 6 19 3 -1. + + <_> + 0 7 19 1 3. + + + + <_> + + <_> + 9 11 6 6 -1. + + <_> + 9 11 3 6 2. + + + 1 + + <_> + + <_> + 7 0 9 5 -1. + + <_> + 10 0 3 5 3. + + + + <_> + + <_> + 0 3 9 4 -1. + + <_> + 0 5 9 2 2. + + + + <_> + + <_> + 1 18 17 2 -1. + + <_> + 1 19 17 1 2. + + + + <_> + + <_> + 7 3 4 8 -1. + + <_> + 9 3 2 8 2. + + + + <_> + + <_> + 9 9 2 14 -1. + + <_> + 9 9 1 14 2. + + + + <_> + + <_> + 8 8 3 14 -1. + + <_> + 9 8 1 14 3. + + + + <_> + + <_> + 10 1 9 4 -1. + + <_> + 10 3 9 2 2. + + + + <_> + + <_> + 0 12 10 3 -1. + + <_> + 5 12 5 3 2. + + + + <_> + + <_> + 8 6 4 12 -1. + + <_> + 8 12 4 6 2. + + + + <_> + + <_> + 3 12 4 7 -1. + + <_> + 5 12 2 7 2. + + + + <_> + + <_> + 6 17 12 6 -1. + + <_> + 12 17 6 3 2. + + <_> + 6 20 6 3 2. + + + + <_> + + <_> + 0 16 18 6 -1. + + <_> + 9 16 9 6 2. + + + + <_> + + <_> + 12 0 4 14 -1. + + <_> + 14 0 2 7 2. + + <_> + 12 7 2 7 2. + + + + <_> + + <_> + 1 21 14 2 -1. + + <_> + 8 21 7 2 2. + + + + <_> + + <_> + 9 19 8 4 -1. + + <_> + 9 19 4 4 2. + + + + <_> + + <_> + 1 0 12 4 -1. + + <_> + 5 0 4 4 3. + + + + <_> + + <_> + 10 1 8 5 -1. + + <_> + 10 1 4 5 2. + + + + <_> + + <_> + 0 13 6 10 -1. + + <_> + 2 13 2 10 3. + + + + <_> + + <_> + 8 9 3 14 -1. + + <_> + 9 9 1 14 3. + + + + <_> + + <_> + 9 7 10 2 -1. + + <_> + 9 7 10 1 2. + + + 1 + + <_> + + <_> + 2 16 15 3 -1. + + <_> + 7 16 5 3 3. + + + + <_> + + <_> + 5 1 8 17 -1. + + <_> + 9 1 4 17 2. + + + + <_> + + <_> + 9 19 8 4 -1. + + <_> + 9 19 4 4 2. + + + + <_> + + <_> + 2 19 8 4 -1. + + <_> + 6 19 4 4 2. + + + + <_> + + <_> + 10 0 8 7 -1. + + <_> + 10 0 4 7 2. + + + + <_> + + <_> + 1 0 8 7 -1. + + <_> + 5 0 4 7 2. + + + + <_> + + <_> + 12 16 7 4 -1. + + <_> + 12 18 7 2 2. + + + + <_> + + <_> + 7 0 4 14 -1. + + <_> + 9 0 2 14 2. + + + + <_> + + <_> + 2 18 15 3 -1. + + <_> + 2 19 15 1 3. + + + + <_> + + <_> + 7 1 4 7 -1. + + <_> + 9 1 2 7 2. + + + + <_> + + <_> + 11 5 3 15 -1. + + <_> + 12 5 1 15 3. + + + + <_> + + <_> + 0 10 6 10 -1. + + <_> + 0 10 3 5 2. + + <_> + 3 15 3 5 2. + + + + <_> + + <_> + 11 5 3 15 -1. + + <_> + 12 5 1 15 3. + + + + <_> + + <_> + 5 5 3 15 -1. + + <_> + 6 5 1 15 3. + + + + <_> + + <_> + 6 5 12 12 -1. + + <_> + 6 5 6 12 2. + + + + <_> + + <_> + 1 4 12 16 -1. + + <_> + 7 4 6 16 2. + + + + <_> + + <_> + 11 4 6 7 -1. + + <_> + 13 4 2 7 3. + + + + <_> + + <_> + 1 7 4 16 -1. + + <_> + 1 7 2 8 2. + + <_> + 3 15 2 8 2. + + + + <_> + + <_> + 11 1 2 22 -1. + + <_> + 11 12 2 11 2. + + + + <_> + + <_> + 1 18 14 3 -1. + + <_> + 1 19 14 1 3. + + + + <_> + + <_> + 7 18 12 5 -1. + + <_> + 11 18 4 5 3. + + + + <_> + + <_> + 1 0 16 19 -1. + + <_> + 5 0 8 19 2. + + + + <_> + + <_> + 6 17 12 6 -1. + + <_> + 9 17 6 6 2. + + + + <_> + + <_> + 7 11 8 4 -1. + + <_> + 7 11 4 4 2. + + + 1 + + <_> + + <_> + 10 9 3 14 -1. + + <_> + 11 9 1 14 3. + + + + <_> + + <_> + 2 11 15 8 -1. + + <_> + 7 11 5 8 3. + + + + <_> + + <_> + 11 6 7 8 -1. + + <_> + 11 6 7 4 2. + + + 1 + + <_> + + <_> + 8 6 8 7 -1. + + <_> + 8 6 4 7 2. + + + 1 + + <_> + + <_> + 10 9 3 14 -1. + + <_> + 11 9 1 14 3. + + + + <_> + + <_> + 6 9 3 14 -1. + + <_> + 7 9 1 14 3. + + + + <_> + + <_> + 7 0 6 12 -1. + + <_> + 7 0 3 12 2. + + + + <_> + + <_> + 5 2 3 16 -1. + + <_> + 6 2 1 16 3. + + + + <_> + + <_> + 1 4 15 7 -1. + + <_> + 6 4 5 7 3. + + + + <_> + + <_> + 12 13 4 8 -1. + + <_> + 12 17 4 4 2. + + + + <_> + + <_> + 2 11 12 12 -1. + + <_> + 6 15 4 4 9. + + + + <_> + + <_> + 12 15 5 6 -1. + + <_> + 12 18 5 3 2. + + + + <_> + + <_> + 0 0 19 16 -1. + + <_> + 0 8 19 8 2. + + + + <_> + + <_> + 4 20 15 3 -1. + + <_> + 9 20 5 3 3. + + + + <_> + + <_> + 9 0 4 8 -1. + + <_> + 9 0 4 4 2. + + + 1 + + <_> + + <_> + 5 15 12 6 -1. + + <_> + 11 15 6 3 2. + + <_> + 5 18 6 3 2. + + + + <_> + + <_> + 2 15 12 6 -1. + + <_> + 2 15 6 3 2. + + <_> + 8 18 6 3 2. + + + + <_> + + <_> + 8 0 9 5 -1. + + <_> + 11 0 3 5 3. + + + + <_> + + <_> + 0 19 14 4 -1. + + <_> + 0 19 7 2 2. + + <_> + 7 21 7 2 2. + + + + <_> + + <_> + 1 14 18 7 -1. + + <_> + 1 14 9 7 2. + + + + <_> + + <_> + 5 1 8 8 -1. + + <_> + 5 1 4 4 2. + + <_> + 9 5 4 4 2. + + + + <_> + + <_> + 9 6 6 12 -1. + + <_> + 9 6 3 12 2. + + + + <_> + + <_> + 2 0 14 4 -1. + + <_> + 9 0 7 4 2. + + + + <_> + + <_> + 4 20 15 3 -1. + + <_> + 9 20 5 3 3. + + + + <_> + + <_> + 0 20 15 3 -1. + + <_> + 5 20 5 3 3. + + + + <_> + + <_> + 2 6 16 9 -1. + + <_> + 6 6 8 9 2. + + + + <_> + + <_> + 4 6 6 12 -1. + + <_> + 7 6 3 12 2. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 4 7 4 9 -1. + + <_> + 6 7 2 9 2. + + + + <_> + + <_> + 13 6 2 16 -1. + + <_> + 13 6 1 16 2. + + + + <_> + + <_> + 1 5 12 9 -1. + + <_> + 7 5 6 9 2. + + + + <_> + + <_> + 13 6 2 16 -1. + + <_> + 13 6 1 16 2. + + + + <_> + + <_> + 4 6 2 16 -1. + + <_> + 5 6 1 16 2. + + + + <_> + + <_> + 12 0 3 15 -1. + + <_> + 13 0 1 15 3. + + + + <_> + + <_> + 4 0 3 15 -1. + + <_> + 5 0 1 15 3. + + + + <_> + + <_> + 6 2 8 8 -1. + + <_> + 8 2 4 8 2. + + + + <_> + + <_> + 6 0 6 5 -1. + + <_> + 9 0 3 5 2. + + + + <_> + + <_> + 4 7 11 16 -1. + + <_> + 4 11 11 8 2. + + + + <_> + + <_> + 7 8 5 8 -1. + + <_> + 7 12 5 4 2. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 1 18 17 3 -1. + + <_> + 1 19 17 1 3. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 1 21 14 2 -1. + + <_> + 8 21 7 2 2. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 2 16 5 6 -1. + + <_> + 2 19 5 3 2. + + + + <_> + + <_> + 13 11 5 12 -1. + + <_> + 13 15 5 4 3. + + + + <_> + + <_> + 1 9 16 3 -1. + + <_> + 1 10 16 1 3. + + + + <_> + + <_> + 7 6 5 9 -1. + + <_> + 7 9 5 3 3. + + + + <_> + + <_> + 6 0 7 14 -1. + + <_> + 6 7 7 7 2. + + + + <_> + + <_> + 11 16 6 7 -1. + + <_> + 13 16 2 7 3. + + + + <_> + + <_> + 1 4 3 15 -1. + + <_> + 2 4 1 15 3. + + + + <_> + + <_> + 10 0 8 8 -1. + + <_> + 14 0 4 4 2. + + <_> + 10 4 4 4 2. + + + + <_> + + <_> + 1 9 3 14 -1. + + <_> + 2 9 1 14 3. + + + + <_> + + <_> + 13 13 5 9 -1. + + <_> + 13 16 5 3 3. + + + + <_> + + <_> + 1 13 5 9 -1. + + <_> + 1 16 5 3 3. + + + + <_> + + <_> + 12 14 7 6 -1. + + <_> + 12 16 7 2 3. + + + + <_> + + <_> + 4 14 9 6 -1. + + <_> + 4 17 9 3 2. + + + + <_> + + <_> + 2 13 10 3 -1. + + <_> + 7 13 5 3 2. + + + + <_> + + <_> + 9 0 10 5 -1. + + <_> + 9 0 5 5 2. + + + + <_> + + <_> + 1 8 2 15 -1. + + <_> + 2 8 1 15 2. + + + + <_> + + <_> + 13 0 6 18 -1. + + <_> + 15 0 2 18 3. + + + + <_> + + <_> + 0 21 14 2 -1. + + <_> + 7 21 7 2 2. + + + + <_> + + <_> + 9 19 8 4 -1. + + <_> + 9 19 4 4 2. + + + + <_> + + <_> + 1 21 16 2 -1. + + <_> + 9 21 8 2 2. + + + + <_> + + <_> + 2 0 16 4 -1. + + <_> + 6 0 8 4 2. + + + + <_> + + <_> + 3 0 9 5 -1. + + <_> + 6 0 3 5 3. + + + + <_> + + <_> + 10 5 8 10 -1. + + <_> + 10 5 8 5 2. + + + 1 + + <_> + + <_> + 0 1 18 8 -1. + + <_> + 0 5 18 4 2. + + + + <_> + + <_> + 10 5 8 10 -1. + + <_> + 10 5 8 5 2. + + + 1 + + <_> + + <_> + 4 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 2 16 6 7 -1. + + <_> + 4 16 2 7 3. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 6 0 6 7 -1. + + <_> + 8 0 2 7 3. + + + + <_> + + <_> + 2 2 15 12 -1. + + <_> + 7 6 5 4 9. + + + + <_> + + <_> + 5 10 4 9 -1. + + <_> + 7 10 2 9 2. + + + + <_> + + <_> + 10 7 8 7 -1. + + <_> + 12 9 4 7 2. + + + 1 + + <_> + + <_> + 0 1 18 18 -1. + + <_> + 0 1 9 9 2. + + <_> + 9 10 9 9 2. + + + + <_> + + <_> + 11 7 8 6 -1. + + <_> + 9 9 8 2 3. + + + 1 + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 11 7 8 6 -1. + + <_> + 9 9 8 2 3. + + + 1 + + <_> + + <_> + 1 0 8 4 -1. + + <_> + 5 0 4 4 2. + + + + <_> + + <_> + 11 7 8 6 -1. + + <_> + 9 9 8 2 3. + + + 1 + + <_> + + <_> + 8 7 6 8 -1. + + <_> + 10 9 2 8 3. + + + 1 + + <_> + + <_> + 13 0 6 19 -1. + + <_> + 15 0 2 19 3. + + + + <_> + + <_> + 0 0 6 19 -1. + + <_> + 2 0 2 19 3. + + + + <_> + + <_> + 13 8 2 14 -1. + + <_> + 13 8 1 14 2. + + + + <_> + + <_> + 0 4 16 3 -1. + + <_> + 0 5 16 1 3. + + + + <_> + + <_> + 8 8 4 10 -1. + + <_> + 8 13 4 5 2. + + + + <_> + + <_> + 3 17 10 6 -1. + + <_> + 3 17 5 3 2. + + <_> + 8 20 5 3 2. + + + + <_> + + <_> + 13 8 2 14 -1. + + <_> + 13 8 1 14 2. + + + + <_> + + <_> + 1 7 16 5 -1. + + <_> + 5 7 8 5 2. + + + + <_> + + <_> + 15 5 4 9 -1. + + <_> + 15 5 2 9 2. + + + 1 + + <_> + + <_> + 6 0 3 14 -1. + + <_> + 7 0 1 14 3. + + + + <_> + + <_> + 6 4 12 12 -1. + + <_> + 10 8 4 4 9. + + + + <_> + + <_> + 7 3 4 9 -1. + + <_> + 9 3 2 9 2. + + + + <_> + + <_> + 10 4 7 8 -1. + + <_> + 10 6 7 4 2. + + + + <_> + + <_> + 2 4 7 8 -1. + + <_> + 2 6 7 4 2. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 4 9 2 14 -1. + + <_> + 5 9 1 14 2. + + + + <_> + + <_> + 12 15 7 8 -1. + + <_> + 12 17 7 4 2. + + + + <_> + + <_> + 6 0 7 20 -1. + + <_> + 6 5 7 10 2. + + + + <_> + + <_> + 2 1 16 4 -1. + + <_> + 10 1 8 2 2. + + <_> + 2 3 8 2 2. + + + + <_> + + <_> + 4 7 3 10 -1. + + <_> + 4 12 3 5 2. + + + + <_> + + <_> + 10 6 8 8 -1. + + <_> + 12 8 4 8 2. + + + 1 + + <_> + + <_> + 3 10 12 8 -1. + + <_> + 3 10 6 4 2. + + <_> + 9 14 6 4 2. + + + + <_> + + <_> + 8 4 4 10 -1. + + <_> + 8 9 4 5 2. + + + + <_> + + <_> + 7 7 5 9 -1. + + <_> + 7 10 5 3 3. + + + + <_> + + <_> + 1 4 17 3 -1. + + <_> + 1 5 17 1 3. + + + + <_> + + <_> + 2 3 14 3 -1. + + <_> + 2 4 14 1 3. + + + + <_> + + <_> + 2 7 14 2 -1. + + <_> + 2 7 7 2 2. + + + 1 + + <_> + + <_> + 10 19 8 4 -1. + + <_> + 10 19 4 4 2. + + + + <_> + + <_> + 5 0 5 22 -1. + + <_> + 5 11 5 11 2. + + + + <_> + + <_> + 10 19 8 4 -1. + + <_> + 10 19 4 4 2. + + + + <_> + + <_> + 1 19 8 4 -1. + + <_> + 5 19 4 4 2. + + + + <_> + + <_> + 8 12 4 9 -1. + + <_> + 8 12 2 9 2. + + + + <_> + + <_> + 1 16 9 5 -1. + + <_> + 4 16 3 5 3. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 3 8 10 14 -1. + + <_> + 8 8 5 14 2. + + + + <_> + + <_> + 10 5 7 6 -1. + + <_> + 10 5 7 3 2. + + + 1 + + <_> + + <_> + 9 5 6 7 -1. + + <_> + 9 5 3 7 2. + + + 1 + + <_> + + <_> + 10 4 9 10 -1. + + <_> + 10 4 9 5 2. + + + 1 + + <_> + + <_> + 9 4 10 9 -1. + + <_> + 9 4 5 9 2. + + + 1 + + <_> + + <_> + 12 15 7 8 -1. + + <_> + 12 17 7 4 2. + + + + <_> + + <_> + 0 15 7 8 -1. + + <_> + 0 17 7 4 2. + + + + <_> + + <_> + 0 16 19 4 -1. + + <_> + 0 17 19 2 2. + + + + <_> + + <_> + 4 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 9 8 4 15 -1. + + <_> + 10 8 2 15 2. + + + + <_> + + <_> + 4 7 4 14 -1. + + <_> + 4 7 2 7 2. + + <_> + 6 14 2 7 2. + + + + <_> + + <_> + 12 8 2 15 -1. + + <_> + 12 8 1 15 2. + + + + <_> + + <_> + 5 8 2 15 -1. + + <_> + 6 8 1 15 2. + + + + <_> + + <_> + 8 12 4 11 -1. + + <_> + 8 12 2 11 2. + + + + <_> + + <_> + 7 12 4 11 -1. + + <_> + 9 12 2 11 2. + + + + <_> + + <_> + 10 4 3 10 -1. + + <_> + 10 4 3 5 2. + + + 1 + + <_> + + <_> + 3 16 4 7 -1. + + <_> + 5 16 2 7 2. + + + + <_> + + <_> + 3 17 16 3 -1. + + <_> + 3 18 16 1 3. + + + + <_> + + <_> + 0 12 4 10 -1. + + <_> + 2 12 2 10 2. + + + + <_> + + <_> + 7 14 12 6 -1. + + <_> + 10 14 6 6 2. + + + + <_> + + <_> + 0 14 12 6 -1. + + <_> + 3 14 6 6 2. + + + + <_> + + <_> + 7 0 12 4 -1. + + <_> + 11 0 4 4 3. + + + + <_> + + <_> + 7 0 4 10 -1. + + <_> + 9 0 2 10 2. + + + + <_> + + <_> + 9 0 10 3 -1. + + <_> + 9 0 5 3 2. + + + + <_> + + <_> + 0 0 10 3 -1. + + <_> + 5 0 5 3 2. + + + + <_> + + <_> + 6 5 8 8 -1. + + <_> + 10 5 4 4 2. + + <_> + 6 9 4 4 2. + + + + <_> + + <_> + 4 6 2 14 -1. + + <_> + 5 6 1 14 2. + + + + <_> + + <_> + 10 8 6 10 -1. + + <_> + 12 8 2 10 3. + + + + <_> + + <_> + 3 8 6 10 -1. + + <_> + 5 8 2 10 3. + + + + <_> + + <_> + 5 15 12 6 -1. + + <_> + 9 15 4 6 3. + + + + <_> + + <_> + 2 15 12 6 -1. + + <_> + 6 15 4 6 3. + + + + <_> + + <_> + 8 5 5 8 -1. + + <_> + 8 9 5 4 2. + + + + <_> + + <_> + 0 2 14 4 -1. + + <_> + 7 2 7 4 2. + + + + <_> + + <_> + 7 1 6 7 -1. + + <_> + 9 1 2 7 3. + + + + <_> + + <_> + 6 2 4 17 -1. + + <_> + 7 2 2 17 2. + + + + <_> + + <_> + 8 1 9 15 -1. + + <_> + 11 6 3 5 9. + + + + <_> + + <_> + 0 0 12 4 -1. + + <_> + 4 0 4 4 3. + + + + <_> + + <_> + 11 1 8 8 -1. + + <_> + 11 5 8 4 2. + + + + <_> + + <_> + 0 1 8 8 -1. + + <_> + 0 5 8 4 2. + + + + <_> + + <_> + 10 8 3 14 -1. + + <_> + 11 8 1 14 3. + + + + <_> + + <_> + 9 4 10 3 -1. + + <_> + 9 4 5 3 2. + + + 1 + + <_> + + <_> + 11 8 2 11 -1. + + <_> + 11 8 1 11 2. + + + 1 + + <_> + + <_> + 3 13 4 8 -1. + + <_> + 3 17 4 4 2. + + + + <_> + + <_> + 10 11 8 12 -1. + + <_> + 10 17 8 6 2. + + + + <_> + + <_> + 6 8 3 14 -1. + + <_> + 7 8 1 14 3. + + + + <_> + + <_> + 10 9 2 10 -1. + + <_> + 10 9 1 10 2. + + + 1 + + <_> + + <_> + 8 11 6 6 -1. + + <_> + 8 11 3 6 2. + + + 1 + + <_> + + <_> + 1 6 16 4 -1. + + <_> + 5 6 8 4 2. + + + + <_> + + <_> + 12 0 2 14 -1. + + <_> + 12 7 2 7 2. + + + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 11 7 2 11 -1. + + <_> + 11 7 1 11 2. + + + 1 + + <_> + + <_> + 8 7 11 2 -1. + + <_> + 8 7 11 1 2. + + + 1 + + <_> + + <_> + 7 0 6 5 -1. + + <_> + 7 0 3 5 2. + + + + <_> + + <_> + 5 0 9 5 -1. + + <_> + 8 0 3 5 3. + + + + <_> + + <_> + 7 17 10 6 -1. + + <_> + 12 17 5 3 2. + + <_> + 7 20 5 3 2. + + + + <_> + + <_> + 7 6 4 15 -1. + + <_> + 8 6 2 15 2. + + + + <_> + + <_> + 5 11 10 3 -1. + + <_> + 5 11 5 3 2. + + + + <_> + + <_> + 8 7 3 14 -1. + + <_> + 9 7 1 14 3. + + + + <_> + + <_> + 10 8 2 10 -1. + + <_> + 10 8 1 10 2. + + + 1 + + <_> + + <_> + 3 3 9 18 -1. + + <_> + 6 9 3 6 9. + + + + <_> + + <_> + 8 0 10 12 -1. + + <_> + 13 0 5 6 2. + + <_> + 8 6 5 6 2. + + + + <_> + + <_> + 1 12 12 11 -1. + + <_> + 4 12 6 11 2. + + + + <_> + + <_> + 2 4 15 9 -1. + + <_> + 7 7 5 3 9. + + + + <_> + + <_> + 3 7 10 10 -1. + + <_> + 8 7 5 10 2. + + + + <_> + + <_> + 10 8 2 10 -1. + + <_> + 10 8 1 10 2. + + + 1 + + <_> + + <_> + 2 18 6 5 -1. + + <_> + 5 18 3 5 2. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 5 0 4 14 -1. + + <_> + 5 0 2 7 2. + + <_> + 7 7 2 7 2. + + + + <_> + + <_> + 8 0 10 12 -1. + + <_> + 13 0 5 6 2. + + <_> + 8 6 5 6 2. + + + + <_> + + <_> + 2 0 8 18 -1. + + <_> + 2 0 4 9 2. + + <_> + 6 9 4 9 2. + + + + <_> + + <_> + 10 0 8 4 -1. + + <_> + 10 0 4 4 2. + + + + <_> + + <_> + 9 9 9 2 -1. + + <_> + 9 9 9 1 2. + + + 1 + + <_> + + <_> + 15 7 3 10 -1. + + <_> + 15 12 3 5 2. + + + + <_> + + <_> + 1 7 3 10 -1. + + <_> + 1 12 3 5 2. + + + + <_> + + <_> + 15 6 4 7 -1. + + <_> + 15 6 2 7 2. + + + + <_> + + <_> + 4 15 6 7 -1. + + <_> + 6 15 2 7 3. + + + + <_> + + <_> + 2 2 16 20 -1. + + <_> + 10 2 8 10 2. + + <_> + 2 12 8 10 2. + + + + <_> + + <_> + 4 17 7 6 -1. + + <_> + 4 19 7 2 3. + + + + <_> + + <_> + 3 15 15 6 -1. + + <_> + 3 18 15 3 2. + + + + <_> + + <_> + 0 18 14 3 -1. + + <_> + 0 19 14 1 3. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 2 0 4 18 -1. + + <_> + 2 0 2 9 2. + + <_> + 4 9 2 9 2. + + + + <_> + + <_> + 10 2 6 8 -1. + + <_> + 10 6 6 4 2. + + + + <_> + + <_> + 5 2 8 8 -1. + + <_> + 5 2 4 4 2. + + <_> + 9 6 4 4 2. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 0 0 18 3 -1. + + <_> + 6 0 6 3 3. + + + + <_> + + <_> + 10 0 8 4 -1. + + <_> + 10 0 4 4 2. + + + + <_> + + <_> + 1 0 8 4 -1. + + <_> + 5 0 4 4 2. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 9 9 8 2 -1. + + <_> + 9 9 8 1 2. + + + 1 + + <_> + + <_> + 4 7 15 9 -1. + + <_> + 9 7 5 9 3. + + + + <_> + + <_> + 8 8 3 14 -1. + + <_> + 9 8 1 14 3. + + + + <_> + + <_> + 6 6 12 16 -1. + + <_> + 9 6 6 16 2. + + + + <_> + + <_> + 1 6 12 16 -1. + + <_> + 4 6 6 16 2. + + + + <_> + + <_> + 10 6 4 7 -1. + + <_> + 10 6 2 7 2. + + + + <_> + + <_> + 2 15 5 6 -1. + + <_> + 2 18 5 3 2. + + + + <_> + + <_> + 7 19 12 4 -1. + + <_> + 11 19 4 4 3. + + + + <_> + + <_> + 0 19 12 4 -1. + + <_> + 4 19 4 4 3. + + + + <_> + + <_> + 10 9 4 7 -1. + + <_> + 10 9 2 7 2. + + + + <_> + + <_> + 5 9 4 9 -1. + + <_> + 7 9 2 9 2. + + + + <_> + + <_> + 5 3 4 17 -1. + + <_> + 7 3 2 17 2. + + + + <_> + + <_> + 3 21 14 2 -1. + + <_> + 3 21 7 2 2. + + + + <_> + + <_> + 0 19 12 3 -1. + + <_> + 6 19 6 3 2. + + + + <_> + + <_> + 9 0 3 22 -1. + + <_> + 9 11 3 11 2. + + + + <_> + + <_> + 5 9 2 14 -1. + + <_> + 6 9 1 14 2. + + + + <_> + + <_> + 7 7 6 16 -1. + + <_> + 7 11 6 8 2. + + + + <_> + + <_> + 1 12 4 8 -1. + + <_> + 1 16 4 4 2. + + + + <_> + + <_> + 2 12 15 3 -1. + + <_> + 7 12 5 3 3. + + + + <_> + + <_> + 1 17 12 6 -1. + + <_> + 1 17 6 3 2. + + <_> + 7 20 6 3 2. + + + + <_> + + <_> + 8 0 4 9 -1. + + <_> + 8 0 2 9 2. + + + + <_> + + <_> + 7 0 4 9 -1. + + <_> + 9 0 2 9 2. + + + + <_> + + <_> + 7 1 5 20 -1. + + <_> + 7 6 5 10 2. + + + + <_> + + <_> + 1 7 6 16 -1. + + <_> + 3 7 2 16 3. + + + + <_> + + <_> + 8 7 4 10 -1. + + <_> + 8 12 4 5 2. + + + + <_> + + <_> + 1 3 12 12 -1. + + <_> + 5 7 4 4 9. + + + + <_> + + <_> + 8 6 3 14 -1. + + <_> + 9 6 1 14 3. + + + + <_> + + <_> + 2 6 6 10 -1. + + <_> + 2 6 3 5 2. + + <_> + 5 11 3 5 2. + + + + <_> + + <_> + 8 6 4 14 -1. + + <_> + 9 6 2 14 2. + + + + <_> + + <_> + 0 10 18 12 -1. + + <_> + 0 10 9 6 2. + + <_> + 9 16 9 6 2. + + + + <_> + + <_> + 8 6 4 14 -1. + + <_> + 9 6 2 14 2. + + + + <_> + + <_> + 7 6 4 14 -1. + + <_> + 8 6 2 14 2. + + + + <_> + + <_> + 1 15 18 6 -1. + + <_> + 1 15 9 6 2. + + + + <_> + + <_> + 1 17 6 5 -1. + + <_> + 4 17 3 5 2. + + + + <_> + + <_> + 6 17 12 6 -1. + + <_> + 9 17 6 6 2. + + + + <_> + + <_> + 1 15 12 8 -1. + + <_> + 4 15 6 8 2. + + + + <_> + + <_> + 0 7 19 3 -1. + + <_> + 0 8 19 1 3. + + + + <_> + + <_> + 1 8 16 3 -1. + + <_> + 1 9 16 1 3. + + + + <_> + + <_> + 6 6 7 6 -1. + + <_> + 6 8 7 2 3. + + + + <_> + + <_> + 4 7 10 14 -1. + + <_> + 4 7 5 7 2. + + <_> + 9 14 5 7 2. + + + + <_> + + <_> + 5 0 12 10 -1. + + <_> + 5 0 6 10 2. + + + + <_> + + <_> + 2 0 15 13 -1. + + <_> + 7 0 5 13 3. + + + + <_> + + <_> + 5 6 12 6 -1. + + <_> + 8 6 6 6 2. + + + + <_> + + <_> + 2 16 6 7 -1. + + <_> + 4 16 2 7 3. + + + + <_> + + <_> + 10 4 8 8 -1. + + <_> + 12 6 4 8 2. + + + 1 + + <_> + + <_> + 9 5 7 6 -1. + + <_> + 7 7 7 2 3. + + + 1 + + <_> + + <_> + 1 7 18 3 -1. + + <_> + 1 8 18 1 3. + + + + <_> + + <_> + 5 4 9 11 -1. + + <_> + 8 4 3 11 3. + + + + <_> + + <_> + 13 0 6 7 -1. + + <_> + 15 0 2 7 3. + + + + <_> + + <_> + 3 11 12 6 -1. + + <_> + 3 11 6 3 2. + + <_> + 9 14 6 3 2. + + + + <_> + + <_> + 13 4 3 16 -1. + + <_> + 14 4 1 16 3. + + + + <_> + + <_> + 3 4 3 16 -1. + + <_> + 4 4 1 16 3. + + + + <_> + + <_> + 2 9 16 8 -1. + + <_> + 10 9 8 4 2. + + <_> + 2 13 8 4 2. + + + + <_> + + <_> + 3 0 3 19 -1. + + <_> + 4 0 1 19 3. + + + + <_> + + <_> + 6 1 8 10 -1. + + <_> + 8 1 4 10 2. + + + + <_> + + <_> + 0 14 18 6 -1. + + <_> + 6 14 6 6 3. + + + + <_> + + <_> + 4 6 15 9 -1. + + <_> + 9 9 5 3 9. + + + + <_> + + <_> + 0 14 15 8 -1. + + <_> + 5 14 5 8 3. + + + + <_> + + <_> + 3 20 15 3 -1. + + <_> + 8 20 5 3 3. + + + + <_> + + <_> + 0 15 18 2 -1. + + <_> + 0 16 18 1 2. + + + + <_> + + <_> + 2 15 17 3 -1. + + <_> + 2 16 17 1 3. + + + + <_> + + <_> + 0 0 19 4 -1. + + <_> + 0 2 19 2 2. + + + + <_> + + <_> + 4 0 12 4 -1. + + <_> + 4 2 12 2 2. + + + + <_> + + <_> + 3 0 3 21 -1. + + <_> + 4 0 1 21 3. + + + + <_> + + <_> + 6 18 8 4 -1. + + <_> + 6 20 8 2 2. + + + + <_> + + <_> + 1 18 14 3 -1. + + <_> + 1 19 14 1 3. + + + + <_> + + <_> + 9 18 9 5 -1. + + <_> + 12 18 3 5 3. + + + + <_> + + <_> + 0 18 19 3 -1. + + <_> + 0 19 19 1 3. + + + + <_> + + <_> + 13 8 3 14 -1. + + <_> + 14 8 1 14 3. + + + + <_> + + <_> + 2 6 12 7 -1. + + <_> + 5 6 6 7 2. + + + + <_> + + <_> + 2 6 16 16 -1. + + <_> + 6 6 8 16 2. + + + + <_> + + <_> + 0 1 16 20 -1. + + <_> + 4 1 8 20 2. + + + + <_> + + <_> + 12 9 4 14 -1. + + <_> + 14 9 2 7 2. + + <_> + 12 16 2 7 2. + + + + <_> + + <_> + 3 9 4 14 -1. + + <_> + 3 9 2 7 2. + + <_> + 5 16 2 7 2. + + + + <_> + + <_> + 11 11 6 10 -1. + + <_> + 14 11 3 5 2. + + <_> + 11 16 3 5 2. + + + + <_> + + <_> + 2 11 6 10 -1. + + <_> + 2 11 3 5 2. + + <_> + 5 16 3 5 2. + + + + <_> + + <_> + 2 8 16 9 -1. + + <_> + 6 8 8 9 2. + + + + <_> + + <_> + 2 17 10 6 -1. + + <_> + 2 17 5 3 2. + + <_> + 7 20 5 3 2. + + + + <_> + + <_> + 11 7 8 7 -1. + + <_> + 13 9 4 7 2. + + + 1 + + <_> + + <_> + 8 7 7 8 -1. + + <_> + 6 9 7 4 2. + + + 1 + + <_> + + <_> + 7 7 6 16 -1. + + <_> + 7 11 6 8 2. + + + + <_> + + <_> + 7 4 4 10 -1. + + <_> + 7 9 4 5 2. + + + + <_> + + <_> + 5 0 9 5 -1. + + <_> + 8 0 3 5 3. + + + + <_> + + <_> + 1 1 16 18 -1. + + <_> + 5 1 8 18 2. + + + + <_> + + <_> + 5 21 14 2 -1. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 0 20 18 3 -1. + + <_> + 6 20 6 3 3. + + + + <_> + + <_> + 8 9 3 14 -1. + + <_> + 9 9 1 14 3. + + + + <_> + + <_> + 2 4 13 2 -1. + + <_> + 2 4 13 1 2. + + + 1 + + <_> + + <_> + 6 0 10 16 -1. + + <_> + 11 0 5 8 2. + + <_> + 6 8 5 8 2. + + + + <_> + + <_> + 2 14 5 6 -1. + + <_> + 2 17 5 3 2. + + + + <_> + + <_> + 12 8 4 8 -1. + + <_> + 12 12 4 4 2. + + + + <_> + + <_> + 3 8 4 8 -1. + + <_> + 3 12 4 4 2. + + + + <_> + + <_> + 14 6 3 10 -1. + + <_> + 14 11 3 5 2. + + + + <_> + + <_> + 2 6 3 10 -1. + + <_> + 2 11 3 5 2. + + + + <_> + + <_> + 7 5 12 16 -1. + + <_> + 7 9 12 8 2. + + + + <_> + + <_> + 6 11 4 9 -1. + + <_> + 8 11 2 9 2. + + + + <_> + + <_> + 7 18 10 5 -1. + + <_> + 7 18 5 5 2. + + + + <_> + + <_> + 4 0 11 14 -1. + + <_> + 4 7 11 7 2. + + + + <_> + + <_> + 8 1 9 15 -1. + + <_> + 11 6 3 5 9. + + + + <_> + + <_> + 0 6 5 8 -1. + + <_> + 0 10 5 4 2. + + + + <_> + + <_> + 15 0 4 13 -1. + + <_> + 15 0 2 13 2. + + + 1 + + <_> + + <_> + 4 0 13 4 -1. + + <_> + 4 0 13 2 2. + + + 1 + + <_> + + <_> + 6 3 9 5 -1. + + <_> + 9 3 3 5 3. + + + + <_> + + <_> + 4 3 9 5 -1. + + <_> + 7 3 3 5 3. + + + + <_> + + <_> + 7 1 12 4 -1. + + <_> + 7 1 6 4 2. + + + + <_> + + <_> + 0 2 6 12 -1. + + <_> + 0 8 6 6 2. + + + + <_> + + <_> + 5 0 12 5 -1. + + <_> + 5 0 6 5 2. + + + + <_> + + <_> + 2 0 14 5 -1. + + <_> + 9 0 7 5 2. + + + + <_> + + <_> + 9 1 4 14 -1. + + <_> + 10 1 2 14 2. + + + + <_> + + <_> + 3 5 9 8 -1. + + <_> + 3 7 9 4 2. + + + + <_> + + <_> + 2 7 16 9 -1. + + <_> + 6 7 8 9 2. + + + + <_> + + <_> + 0 19 14 2 -1. + + <_> + 7 19 7 2 2. + + + + <_> + + <_> + 8 20 10 3 -1. + + <_> + 8 20 5 3 2. + + + + <_> + + <_> + 1 20 10 3 -1. + + <_> + 6 20 5 3 2. + + + + <_> + + <_> + 15 8 3 10 -1. + + <_> + 16 9 1 10 3. + + + 1 + + <_> + + <_> + 0 21 16 2 -1. + + <_> + 8 21 8 2 2. + + + + <_> + + <_> + 4 6 15 3 -1. + + <_> + 4 7 15 1 3. + + + + <_> + + <_> + 6 4 3 14 -1. + + <_> + 7 4 1 14 3. + + + + <_> + + <_> + 7 18 10 5 -1. + + <_> + 7 18 5 5 2. + + + + <_> + + <_> + 2 18 10 5 -1. + + <_> + 7 18 5 5 2. + + + + <_> + + <_> + 6 0 10 16 -1. + + <_> + 11 0 5 8 2. + + <_> + 6 8 5 8 2. + + + + <_> + + <_> + 3 0 10 16 -1. + + <_> + 3 0 5 8 2. + + <_> + 8 8 5 8 2. + + + + <_> + + <_> + 6 0 7 4 -1. + + <_> + 6 2 7 2 2. + + + + <_> + + <_> + 0 2 19 3 -1. + + <_> + 0 3 19 1 3. + + + + <_> + + <_> + 7 0 12 4 -1. + + <_> + 7 2 12 2 2. + + + + <_> + + <_> + 0 2 15 3 -1. + + <_> + 0 3 15 1 3. + + + + <_> + + <_> + 1 5 18 3 -1. + + <_> + 1 6 18 1 3. + + + + <_> + + <_> + 3 0 12 6 -1. + + <_> + 3 2 12 2 3. + + + + <_> + + <_> + 5 0 10 10 -1. + + <_> + 5 5 10 5 2. + + + + <_> + + <_> + 5 1 9 4 -1. + + <_> + 5 3 9 2 2. + + + + <_> + + <_> + 5 2 12 6 -1. + + <_> + 5 4 12 2 3. + + + + <_> + + <_> + 1 15 9 6 -1. + + <_> + 1 17 9 2 3. + + + + <_> + + <_> + 5 13 14 9 -1. + + <_> + 5 16 14 3 3. + + + + <_> + + <_> + 8 12 8 3 -1. + + <_> + 7 13 8 1 3. + + + 1 + + <_> + + <_> + 12 8 2 15 -1. + + <_> + 12 8 1 15 2. + + + + <_> + + <_> + 5 8 2 15 -1. + + <_> + 6 8 1 15 2. + + + + <_> + + <_> + 11 5 3 14 -1. + + <_> + 12 5 1 14 3. + + + + <_> + + <_> + 5 8 2 14 -1. + + <_> + 6 8 1 14 2. + + + + <_> + + <_> + 11 6 3 14 -1. + + <_> + 12 6 1 14 3. + + + + <_> + + <_> + 0 0 8 22 -1. + + <_> + 0 0 4 11 2. + + <_> + 4 11 4 11 2. + + + + <_> + + <_> + 13 10 4 8 -1. + + <_> + 13 10 2 8 2. + + + + <_> + + <_> + 1 13 16 7 -1. + + <_> + 5 13 8 7 2. + + + + <_> + + <_> + 13 10 4 8 -1. + + <_> + 13 10 2 8 2. + + + + <_> + + <_> + 2 10 4 8 -1. + + <_> + 4 10 2 8 2. + + + + <_> + + <_> + 5 7 10 6 -1. + + <_> + 10 7 5 3 2. + + <_> + 5 10 5 3 2. + + + + <_> + + <_> + 0 19 8 4 -1. + + <_> + 4 19 4 4 2. + + + + <_> + + <_> + 3 15 15 3 -1. + + <_> + 3 16 15 1 3. + + + + <_> + + <_> + 7 2 4 16 -1. + + <_> + 7 2 2 8 2. + + <_> + 9 10 2 8 2. + + + + <_> + + <_> + 8 6 4 12 -1. + + <_> + 8 10 4 4 3. + + + + <_> + + <_> + 7 6 4 12 -1. + + <_> + 7 10 4 4 3. + + + + <_> + + <_> + 3 15 14 2 -1. + + <_> + 3 16 14 1 2. + + + + <_> + + <_> + 0 15 17 8 -1. + + <_> + 0 17 17 4 2. + + + + <_> + + <_> + 10 3 9 10 -1. + + <_> + 10 3 9 5 2. + + + 1 + + <_> + + <_> + 7 8 4 10 -1. + + <_> + 7 13 4 5 2. + + + + <_> + + <_> + 7 8 7 15 -1. + + <_> + 7 13 7 5 3. + + + + <_> + + <_> + 1 0 16 20 -1. + + <_> + 5 0 8 20 2. + + + + <_> + + <_> + 9 18 9 5 -1. + + <_> + 12 18 3 5 3. + + + + <_> + + <_> + 1 18 9 5 -1. + + <_> + 4 18 3 5 3. + + + + <_> + + <_> + 8 7 8 12 -1. + + <_> + 12 7 4 6 2. + + <_> + 8 13 4 6 2. + + + + <_> + + <_> + 2 9 4 13 -1. + + <_> + 4 9 2 13 2. + + + + <_> + + <_> + 12 14 7 4 -1. + + <_> + 12 16 7 2 2. + + + + <_> + + <_> + 0 6 18 3 -1. + + <_> + 0 7 18 1 3. + + + + <_> + + <_> + 1 16 18 7 -1. + + <_> + 1 16 9 7 2. + + + + <_> + + <_> + 0 18 15 5 -1. + + <_> + 5 18 5 5 3. + + + + <_> + + <_> + 10 5 4 8 -1. + + <_> + 10 5 2 8 2. + + + + <_> + + <_> + 5 5 4 8 -1. + + <_> + 7 5 2 8 2. + + + + <_> + + <_> + 7 0 6 5 -1. + + <_> + 7 0 3 5 2. + + + + <_> + + <_> + 6 2 2 15 -1. + + <_> + 7 2 1 15 2. + + + + <_> + + <_> + 4 0 12 4 -1. + + <_> + 4 0 6 4 2. + + + + <_> + + <_> + 5 0 2 14 -1. + + <_> + 5 7 2 7 2. + + + + <_> + + <_> + 5 16 14 4 -1. + + <_> + 5 17 14 2 2. + + + + <_> + + <_> + 2 9 2 14 -1. + + <_> + 3 9 1 14 2. + + + + <_> + + <_> + 12 0 4 7 -1. + + <_> + 12 0 2 7 2. + + + + <_> + + <_> + 3 0 4 7 -1. + + <_> + 5 0 2 7 2. + + + + <_> + + <_> + 8 0 9 15 -1. + + <_> + 11 5 3 5 9. + + + + <_> + + <_> + 2 0 9 15 -1. + + <_> + 5 5 3 5 9. + + + + <_> + + <_> + 16 5 2 16 -1. + + <_> + 16 5 1 16 2. + + + 1 + + <_> + + <_> + 3 5 16 2 -1. + + <_> + 3 5 16 1 2. + + + 1 + + <_> + + <_> + 9 11 6 9 -1. + + <_> + 11 11 2 9 3. + + + + <_> + + <_> + 7 6 8 4 -1. + + <_> + 7 6 4 4 2. + + + 1 + + <_> + + <_> + 10 0 8 8 -1. + + <_> + 14 0 4 4 2. + + <_> + 10 4 4 4 2. + + + + <_> + + <_> + 3 0 12 4 -1. + + <_> + 7 0 4 4 3. + + + + <_> + + <_> + 9 11 6 9 -1. + + <_> + 11 11 2 9 3. + + + + <_> + + <_> + 3 10 4 10 -1. + + <_> + 5 10 2 10 2. + + + + <_> + + <_> + 11 12 6 5 -1. + + <_> + 11 12 3 5 2. + + + + <_> + + <_> + 4 11 6 9 -1. + + <_> + 6 11 2 9 3. + + + + <_> + + <_> + 12 12 7 4 -1. + + <_> + 12 12 7 2 2. + + + 1 + + <_> + + <_> + 1 0 8 8 -1. + + <_> + 1 0 4 4 2. + + <_> + 5 4 4 4 2. + + + + <_> + + <_> + 10 4 9 10 -1. + + <_> + 10 4 9 5 2. + + + 1 + + <_> + + <_> + 1 1 12 8 -1. + + <_> + 1 1 6 4 2. + + <_> + 7 5 6 4 2. + + + + <_> + + <_> + 2 14 16 2 -1. + + <_> + 2 14 8 2 2. + + + + <_> + + <_> + 7 3 4 14 -1. + + <_> + 8 3 2 14 2. + + + + <_> + + <_> + 7 1 6 7 -1. + + <_> + 9 1 2 7 3. + + + + <_> + + <_> + 3 10 4 12 -1. + + <_> + 3 14 4 4 3. + + + + <_> + + <_> + 8 4 6 7 -1. + + <_> + 10 4 2 7 3. + + + + <_> + + <_> + 5 4 6 7 -1. + + <_> + 7 4 2 7 3. + + + + <_> + + <_> + 5 7 14 8 -1. + + <_> + 5 7 7 8 2. + + + + <_> + + <_> + 2 12 6 5 -1. + + <_> + 5 12 3 5 2. + + + + <_> + + <_> + 12 9 4 7 -1. + + <_> + 12 9 2 7 2. + + + + <_> + + <_> + 3 9 4 7 -1. + + <_> + 5 9 2 7 2. + + + + <_> + + <_> + 13 2 4 12 -1. + + <_> + 13 6 4 4 3. + + + + <_> + + <_> + 2 2 4 12 -1. + + <_> + 2 6 4 4 3. + + + + <_> + + <_> + 2 2 16 8 -1. + + <_> + 10 2 8 4 2. + + <_> + 2 6 8 4 2. + + + + <_> + + <_> + 2 2 15 9 -1. + + <_> + 7 5 5 3 9. + + + + <_> + + <_> + 8 7 3 12 -1. + + <_> + 8 13 3 6 2. + + + + <_> + + <_> + 2 0 3 15 -1. + + <_> + 3 0 1 15 3. + + + + <_> + + <_> + 1 8 16 4 -1. + + <_> + 5 8 8 4 2. + + + + <_> + + <_> + 6 0 8 8 -1. + + <_> + 10 0 4 4 2. + + <_> + 6 4 4 4 2. + + + + <_> + + <_> + 8 9 2 14 -1. + + <_> + 9 9 1 14 2. + + + + <_> + + <_> + 8 5 3 10 -1. + + <_> + 8 10 3 5 2. + + + + <_> + + <_> + 8 9 3 14 -1. + + <_> + 9 9 1 14 3. + + + + <_> + + <_> + 6 7 12 16 -1. + + <_> + 6 11 12 8 2. + + + + <_> + + <_> + 4 0 3 16 -1. + + <_> + 5 0 1 16 3. + + + + <_> + + <_> + 13 9 4 11 -1. + + <_> + 13 9 2 11 2. + + + + <_> + + <_> + 0 18 14 3 -1. + + <_> + 7 18 7 3 2. + + + + <_> + + <_> + 6 9 12 11 -1. + + <_> + 9 9 6 11 2. + + + + <_> + + <_> + 1 7 16 9 -1. + + <_> + 5 7 8 9 2. + + + + <_> + + <_> + 11 6 4 7 -1. + + <_> + 11 6 2 7 2. + + + + <_> + + <_> + 3 11 12 12 -1. + + <_> + 7 15 4 4 9. + + + + <_> + + <_> + 11 6 4 7 -1. + + <_> + 11 6 2 7 2. + + + + <_> + + <_> + 4 0 6 10 -1. + + <_> + 6 0 2 10 3. + + + + <_> + + <_> + 13 9 2 14 -1. + + <_> + 13 9 1 14 2. + + + + <_> + + <_> + 4 9 2 14 -1. + + <_> + 5 9 1 14 2. + + + + <_> + + <_> + 7 7 6 16 -1. + + <_> + 7 11 6 8 2. + + + + <_> + + <_> + 2 16 4 7 -1. + + <_> + 4 16 2 7 2. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 2 16 6 7 -1. + + <_> + 4 16 2 7 3. + + + + <_> + + <_> + 14 13 5 6 -1. + + <_> + 14 16 5 3 2. + + + + <_> + + <_> + 0 0 12 6 -1. + + <_> + 6 0 6 6 2. + + + + <_> + + <_> + 4 0 14 7 -1. + + <_> + 4 0 7 7 2. + + + + <_> + + <_> + 5 0 9 22 -1. + + <_> + 5 11 9 11 2. + + + + <_> + + <_> + 11 8 8 4 -1. + + <_> + 11 10 8 2 2. + + + + <_> + + <_> + 9 0 4 8 -1. + + <_> + 9 0 2 8 2. + + + 1 + + <_> + + <_> + 5 17 14 2 -1. + + <_> + 5 18 14 1 2. + + + + <_> + + <_> + 1 17 14 3 -1. + + <_> + 1 18 14 1 3. + + + + <_> + + <_> + 6 1 12 12 -1. + + <_> + 10 5 4 4 9. + + + + <_> + + <_> + 1 1 12 12 -1. + + <_> + 5 5 4 4 9. + + + + <_> + + <_> + 6 0 7 18 -1. + + <_> + 6 9 7 9 2. + + + + <_> + + <_> + 0 0 12 9 -1. + + <_> + 3 0 6 9 2. + + + + <_> + + <_> + 9 9 3 14 -1. + + <_> + 10 9 1 14 3. + + + + <_> + + <_> + 7 5 5 9 -1. + + <_> + 7 8 5 3 3. + + + + <_> + + <_> + 9 9 3 14 -1. + + <_> + 10 9 1 14 3. + + + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 12 10 5 8 -1. + + <_> + 12 10 5 4 2. + + + 1 + + <_> + + <_> + 8 6 10 7 -1. + + <_> + 8 6 5 7 2. + + + 1 + + <_> + + <_> + 12 15 7 4 -1. + + <_> + 12 17 7 2 2. + + + + <_> + + <_> + 0 15 7 4 -1. + + <_> + 0 17 7 2 2. + + + + <_> + + <_> + 15 6 2 16 -1. + + <_> + 15 6 1 16 2. + + + + <_> + + <_> + 3 9 4 8 -1. + + <_> + 3 13 4 4 2. + + + + <_> + + <_> + 0 14 19 3 -1. + + <_> + 0 15 19 1 3. + + + + <_> + + <_> + 1 12 4 7 -1. + + <_> + 3 12 2 7 2. + + + + <_> + + <_> + 14 12 4 11 -1. + + <_> + 14 12 2 11 2. + + + + <_> + + <_> + 0 8 5 6 -1. + + <_> + 0 11 5 3 2. + + + + <_> + + <_> + 4 0 14 3 -1. + + <_> + 4 0 7 3 2. + + + + <_> + + <_> + 1 0 14 3 -1. + + <_> + 8 0 7 3 2. + + + + <_> + + <_> + 12 3 7 4 -1. + + <_> + 12 5 7 2 2. + + + + <_> + + <_> + 0 3 7 4 -1. + + <_> + 0 5 7 2 2. + + + + <_> + + <_> + 10 8 4 7 -1. + + <_> + 10 8 2 7 2. + + + + <_> + + <_> + 1 12 4 11 -1. + + <_> + 3 12 2 11 2. + + + + <_> + + <_> + 2 10 16 4 -1. + + <_> + 2 11 16 2 2. + + + + <_> + + <_> + 7 11 9 3 -1. + + <_> + 6 12 9 1 3. + + + 1 + + <_> + + <_> + 5 6 12 16 -1. + + <_> + 8 6 6 16 2. + + + + <_> + + <_> + 2 6 14 4 -1. + + <_> + 2 6 7 2 2. + + <_> + 9 8 7 2 2. + + + + <_> + + <_> + 5 6 10 6 -1. + + <_> + 10 6 5 3 2. + + <_> + 5 9 5 3 2. + + + + <_> + + <_> + 0 9 2 14 -1. + + <_> + 1 9 1 14 2. + + + + <_> + + <_> + 10 18 9 5 -1. + + <_> + 13 18 3 5 3. + + + + <_> + + <_> + 4 9 10 3 -1. + + <_> + 3 10 10 1 3. + + + 1 + + <_> + + <_> + 10 18 9 5 -1. + + <_> + 13 18 3 5 3. + + + + <_> + + <_> + 0 18 9 5 -1. + + <_> + 3 18 3 5 3. + + + + <_> + + <_> + 5 8 12 9 -1. + + <_> + 9 8 4 9 3. + + + + <_> + + <_> + 2 8 12 9 -1. + + <_> + 6 8 4 9 3. + + + + <_> + + <_> + 9 6 4 14 -1. + + <_> + 10 6 2 14 2. + + + + <_> + + <_> + 2 20 15 3 -1. + + <_> + 7 20 5 3 3. + + + + <_> + + <_> + 5 4 9 5 -1. + + <_> + 8 4 3 5 3. + + + + <_> + + <_> + 6 6 4 14 -1. + + <_> + 7 6 2 14 2. + + + + <_> + + <_> + 10 0 2 14 -1. + + <_> + 10 0 1 14 2. + + + + <_> + + <_> + 7 0 2 14 -1. + + <_> + 8 0 1 14 2. + + + + <_> + + <_> + 12 0 4 8 -1. + + <_> + 12 0 2 8 2. + + + + <_> + + <_> + 0 3 14 3 -1. + + <_> + 0 4 14 1 3. + + + + <_> + + <_> + 5 20 10 3 -1. + + <_> + 5 20 5 3 2. + + + + <_> + + <_> + 6 18 7 4 -1. + + <_> + 6 20 7 2 2. + + + + <_> + + <_> + 3 6 6 9 -1. + + <_> + 5 6 2 9 3. + + + + <_> + + <_> + 13 0 6 7 -1. + + <_> + 15 0 2 7 3. + + + + <_> + + <_> + 3 13 4 10 -1. + + <_> + 5 13 2 10 2. + + + + <_> + + <_> + 12 12 4 10 -1. + + <_> + 12 12 2 10 2. + + + + <_> + + <_> + 3 12 4 7 -1. + + <_> + 5 12 2 7 2. + + + + <_> + + <_> + 13 0 6 14 -1. + + <_> + 15 0 2 14 3. + + + + <_> + + <_> + 0 0 6 12 -1. + + <_> + 2 0 2 12 3. + + + + <_> + + <_> + 5 19 14 4 -1. + + <_> + 12 19 7 2 2. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 0 12 9 10 -1. + + <_> + 0 17 9 5 2. + + + + <_> + + <_> + 14 13 5 6 -1. + + <_> + 14 16 5 3 2. + + + + <_> + + <_> + 0 16 8 4 -1. + + <_> + 0 18 8 2 2. + + + + <_> + + <_> + 3 16 16 3 -1. + + <_> + 3 17 16 1 3. + + + + <_> + + <_> + 6 0 6 7 -1. + + <_> + 8 0 2 7 3. + + + + <_> + + <_> + 2 0 16 5 -1. + + <_> + 6 0 8 5 2. + + + + <_> + + <_> + 0 0 17 10 -1. + + <_> + 0 5 17 5 2. + + + + <_> + + <_> + 8 1 3 15 -1. + + <_> + 9 1 1 15 3. + + + + <_> + + <_> + 0 2 8 20 -1. + + <_> + 0 7 8 10 2. + + + + <_> + + <_> + 8 7 4 10 -1. + + <_> + 8 12 4 5 2. + + + + <_> + + <_> + 7 7 4 10 -1. + + <_> + 7 12 4 5 2. + + + + <_> + + <_> + 11 0 3 17 -1. + + <_> + 12 0 1 17 3. + + + + <_> + + <_> + 5 0 3 17 -1. + + <_> + 6 0 1 17 3. + + + + <_> + + <_> + 12 9 3 14 -1. + + <_> + 13 9 1 14 3. + + + + <_> + + <_> + 6 2 6 10 -1. + + <_> + 9 2 3 10 2. + + + + <_> + + <_> + 4 21 14 2 -1. + + <_> + 4 21 7 2 2. + + + + <_> + + <_> + 5 0 8 4 -1. + + <_> + 9 0 4 4 2. + + + + <_> + + <_> + 10 0 4 8 -1. + + <_> + 10 0 4 4 2. + + + 1 + + <_> + + <_> + 3 0 12 6 -1. + + <_> + 3 0 6 3 2. + + <_> + 9 3 6 3 2. + + + + <_> + + <_> + 8 8 6 8 -1. + + <_> + 10 8 2 8 3. + + + + <_> + + <_> + 1 13 12 8 -1. + + <_> + 4 13 6 8 2. + + + + <_> + + <_> + 8 8 6 8 -1. + + <_> + 10 8 2 8 3. + + + + <_> + + <_> + 5 8 6 8 -1. + + <_> + 7 8 2 8 3. + + + + <_> + + <_> + 7 13 8 10 -1. + + <_> + 9 13 4 10 2. + + + + <_> + + <_> + 4 14 8 9 -1. + + <_> + 6 14 4 9 2. + + + + <_> + + <_> + 9 15 9 5 -1. + + <_> + 12 15 3 5 3. + + + + <_> + + <_> + 7 15 4 7 -1. + + <_> + 9 15 2 7 2. + + + + <_> + + <_> + 4 19 12 4 -1. + + <_> + 4 19 6 4 2. + + + + <_> + + <_> + 6 15 6 8 -1. + + <_> + 8 15 2 8 3. + + + + <_> + + <_> + 8 5 8 8 -1. + + <_> + 12 5 4 4 2. + + <_> + 8 9 4 4 2. + + + + <_> + + <_> + 0 14 7 4 -1. + + <_> + 0 16 7 2 2. + + + + <_> + + <_> + 10 2 4 8 -1. + + <_> + 11 3 2 8 2. + + + 1 + + <_> + + <_> + 1 12 17 3 -1. + + <_> + 1 13 17 1 3. + + + + <_> + + <_> + 13 8 4 15 -1. + + <_> + 14 8 2 15 2. + + + + <_> + + <_> + 2 12 14 3 -1. + + <_> + 2 13 14 1 3. + + + + <_> + + <_> + 6 12 7 6 -1. + + <_> + 6 14 7 2 3. + + + + <_> + + <_> + 2 2 12 6 -1. + + <_> + 2 2 6 3 2. + + <_> + 8 5 6 3 2. + + + + <_> + + <_> + 11 0 8 5 -1. + + <_> + 11 0 4 5 2. + + + + <_> + + <_> + 0 0 8 5 -1. + + <_> + 4 0 4 5 2. + + + + <_> + + <_> + 1 2 18 20 -1. + + <_> + 1 2 9 20 2. + + + + <_> + + <_> + 9 5 10 8 -1. + + <_> + 9 5 5 8 2. + + + 1 + + <_> + + <_> + 7 8 7 10 -1. + + <_> + 7 13 7 5 2. + + + + <_> + + <_> + 7 7 4 14 -1. + + <_> + 8 7 2 14 2. + + + + <_> + + <_> + 15 7 4 16 -1. + + <_> + 15 7 2 16 2. + + + + <_> + + <_> + 0 0 12 7 -1. + + <_> + 4 0 4 7 3. + + + + <_> + + <_> + 11 7 4 7 -1. + + <_> + 11 7 2 7 2. + + + 1 + + <_> + + <_> + 4 4 6 15 -1. + + <_> + 7 4 3 15 2. + + + + <_> + + <_> + 6 10 9 13 -1. + + <_> + 9 10 3 13 3. + + + + <_> + + <_> + 1 14 4 7 -1. + + <_> + 3 14 2 7 2. + + + + <_> + + <_> + 11 1 3 14 -1. + + <_> + 12 1 1 14 3. + + + + <_> + + <_> + 5 11 4 8 -1. + + <_> + 7 11 2 8 2. + + + + <_> + + <_> + 11 6 4 7 -1. + + <_> + 11 6 2 7 2. + + + + <_> + + <_> + 4 6 4 7 -1. + + <_> + 6 6 2 7 2. + + + + <_> + + <_> + 7 5 9 9 -1. + + <_> + 10 5 3 9 3. + + + + <_> + + <_> + 2 1 12 12 -1. + + <_> + 6 5 4 4 9. + + + + <_> + + <_> + 4 19 14 4 -1. + + <_> + 11 19 7 2 2. + + <_> + 4 21 7 2 2. + + + + <_> + + <_> + 1 19 14 4 -1. + + <_> + 1 19 7 2 2. + + <_> + 8 21 7 2 2. + + + + <_> + + <_> + 9 18 9 5 -1. + + <_> + 12 18 3 5 3. + + + + <_> + + <_> + 1 18 9 5 -1. + + <_> + 4 18 3 5 3. + + + + <_> + + <_> + 11 4 8 6 -1. + + <_> + 11 4 4 6 2. + + + 1 + + <_> + + <_> + 6 8 7 6 -1. + + <_> + 6 10 7 2 3. + + + + <_> + + <_> + 5 17 14 2 -1. + + <_> + 5 18 14 1 2. + + + + <_> + + <_> + 6 6 9 3 -1. + + <_> + 5 7 9 1 3. + + + 1 + + <_> + + <_> + 13 9 4 11 -1. + + <_> + 13 9 2 11 2. + + + + <_> + + <_> + 2 9 4 11 -1. + + <_> + 4 9 2 11 2. + + + + <_> + + <_> + 12 0 3 14 -1. + + <_> + 13 0 1 14 3. + + + + <_> + + <_> + 4 0 3 14 -1. + + <_> + 5 0 1 14 3. + + + + <_> + + <_> + 7 10 5 6 -1. + + <_> + 7 13 5 3 2. + + + + <_> + + <_> + 0 12 17 4 -1. + + <_> + 0 14 17 2 2. + + + + <_> + + <_> + 10 5 6 10 -1. + + <_> + 12 7 2 10 3. + + + 1 + + <_> + + <_> + 2 9 12 12 -1. + + <_> + 6 13 4 4 9. + + + + <_> + + <_> + 1 15 12 8 -1. + + <_> + 7 15 6 8 2. + + + + <_> + + <_> + 6 0 8 8 -1. + + <_> + 10 0 4 4 2. + + <_> + 6 4 4 4 2. + + + + <_> + + <_> + 0 15 7 8 -1. + + <_> + 0 17 7 4 2. + + + + <_> + + <_> + 8 7 4 8 -1. + + <_> + 8 11 4 4 2. + + + + <_> + + <_> + 5 8 2 14 -1. + + <_> + 6 8 1 14 2. + + + + <_> + + <_> + 12 8 7 4 -1. + + <_> + 12 10 7 2 2. + + + + <_> + + <_> + 0 13 14 4 -1. + + <_> + 0 13 7 2 2. + + <_> + 7 15 7 2 2. + + + + <_> + + <_> + 6 13 7 8 -1. + + <_> + 6 15 7 4 2. + + + + <_> + + <_> + 7 7 4 15 -1. + + <_> + 8 7 2 15 2. + + + + <_> + + <_> + 11 16 5 6 -1. + + <_> + 11 19 5 3 2. + + + + <_> + + <_> + 4 0 6 10 -1. + + <_> + 4 0 3 5 2. + + <_> + 7 5 3 5 2. + + + + <_> + + <_> + 11 10 7 6 -1. + + <_> + 9 12 7 2 3. + + + 1 + + <_> + + <_> + 2 0 14 2 -1. + + <_> + 9 0 7 2 2. + + + + <_> + + <_> + 1 10 18 8 -1. + + <_> + 10 10 9 4 2. + + <_> + 1 14 9 4 2. + + + + <_> + + <_> + 1 18 15 3 -1. + + <_> + 1 19 15 1 3. + + + + <_> + + <_> + 4 18 14 3 -1. + + <_> + 4 19 14 1 3. + + + + <_> + + <_> + 0 3 19 18 -1. + + <_> + 0 9 19 6 3. + + + + <_> + + <_> + 4 0 11 20 -1. + + <_> + 4 10 11 10 2. + + + + <_> + + <_> + 5 0 9 18 -1. + + <_> + 5 9 9 9 2. + + + + <_> + + <_> + 9 0 4 20 -1. + + <_> + 9 10 4 10 2. + + + + <_> + + <_> + 1 11 6 6 -1. + + <_> + 1 14 6 3 2. + + + + <_> + + <_> + 12 16 6 6 -1. + + <_> + 12 19 6 3 2. + + + + <_> + + <_> + 3 8 2 14 -1. + + <_> + 4 8 1 14 2. + + + + <_> + + <_> + 7 11 5 12 -1. + + <_> + 7 15 5 4 3. + + + + <_> + + <_> + 5 11 5 12 -1. + + <_> + 5 14 5 6 2. + + + + <_> + + <_> + 13 0 4 16 -1. + + <_> + 15 0 2 8 2. + + <_> + 13 8 2 8 2. + + + + <_> + + <_> + 1 0 12 8 -1. + + <_> + 7 0 6 8 2. + + + + <_> + + <_> + 13 11 6 7 -1. + + <_> + 15 11 2 7 3. + + + + <_> + + <_> + 0 8 7 8 -1. + + <_> + 0 10 7 4 2. + + + + <_> + + <_> + 6 6 7 6 -1. + + <_> + 6 8 7 2 3. + + + + <_> + + <_> + 7 1 4 14 -1. + + <_> + 7 8 4 7 2. + + + + <_> + + <_> + 13 17 6 6 -1. + + <_> + 13 17 3 6 2. + + + + <_> + + <_> + 5 11 4 12 -1. + + <_> + 5 17 4 6 2. + + + + <_> + + <_> + 13 17 6 6 -1. + + <_> + 13 17 3 6 2. + + + + <_> + + <_> + 0 8 2 14 -1. + + <_> + 0 15 2 7 2. + + + + <_> + + <_> + 13 18 6 5 -1. + + <_> + 13 18 3 5 2. + + + + <_> + + <_> + 4 0 2 14 -1. + + <_> + 5 0 1 14 2. + + + + <_> + + <_> + 13 11 6 8 -1. + + <_> + 15 11 2 8 3. + + + + <_> + + <_> + 1 11 3 12 -1. + + <_> + 1 17 3 6 2. + + + + <_> + + <_> + 12 18 6 5 -1. + + <_> + 12 18 3 5 2. + + + + <_> + + <_> + 0 15 4 8 -1. + + <_> + 0 19 4 4 2. + + + + <_> + + <_> + 13 11 6 8 -1. + + <_> + 15 11 2 8 3. + + + + <_> + + <_> + 0 11 6 8 -1. + + <_> + 2 11 2 8 3. + + + + <_> + + <_> + 5 17 14 3 -1. + + <_> + 5 18 14 1 3. + + + + <_> + + <_> + 0 15 7 6 -1. + + <_> + 0 17 7 2 3. + + + + <_> + + <_> + 10 8 4 10 -1. + + <_> + 10 8 2 10 2. + + + 1 + + <_> + + <_> + 1 11 16 7 -1. + + <_> + 5 11 8 7 2. + + + + <_> + + <_> + 5 0 9 16 -1. + + <_> + 8 0 3 16 3. + + + + <_> + + <_> + 6 6 2 14 -1. + + <_> + 7 6 1 14 2. + + + + <_> + + <_> + 11 5 4 15 -1. + + <_> + 12 5 2 15 2. + + + + <_> + + <_> + 9 8 10 4 -1. + + <_> + 9 8 10 2 2. + + + 1 + + <_> + + <_> + 8 1 4 14 -1. + + <_> + 8 1 2 14 2. + + + + <_> + + <_> + 7 1 4 14 -1. + + <_> + 9 1 2 14 2. + + + + <_> + + <_> + 1 14 18 9 -1. + + <_> + 7 17 6 3 9. + + + + <_> + + <_> + 6 9 7 9 -1. + + <_> + 6 12 7 3 3. + + + + <_> + + <_> + 1 11 18 2 -1. + + <_> + 1 12 18 1 2. + + + + <_> + + <_> + 7 7 4 16 -1. + + <_> + 7 11 4 8 2. + + + + <_> + + <_> + 2 10 15 3 -1. + + <_> + 2 11 15 1 3. + + + + <_> + + <_> + 6 12 7 9 -1. + + <_> + 6 15 7 3 3. + + + + <_> + + <_> + 4 10 15 3 -1. + + <_> + 4 11 15 1 3. + + + + <_> + + <_> + 0 19 14 4 -1. + + <_> + 0 19 7 2 2. + + <_> + 7 21 7 2 2. + + + + <_> + + <_> + 5 17 14 3 -1. + + <_> + 5 18 14 1 3. + + + + <_> + + <_> + 1 7 3 14 -1. + + <_> + 2 7 1 14 3. + + + + <_> + + <_> + 9 0 6 7 -1. + + <_> + 11 0 2 7 3. + + + + <_> + + <_> + 4 0 6 7 -1. + + <_> + 6 0 2 7 3. + + + + <_> + + <_> + 6 5 8 6 -1. + + <_> + 6 5 4 6 2. + + + + <_> + + <_> + 5 2 3 16 -1. + + <_> + 6 2 1 16 3. + + + + <_> + + <_> + 15 4 4 15 -1. + + <_> + 16 4 2 15 2. + + + + <_> + + <_> + 6 12 6 5 -1. + + <_> + 6 12 3 5 2. + + + 1 + + <_> + + <_> + 8 9 3 14 -1. + + <_> + 9 9 1 14 3. + + + + <_> + + <_> + 0 16 7 4 -1. + + <_> + 0 18 7 2 2. + + + + <_> + + <_> + 5 16 14 3 -1. + + <_> + 5 17 14 1 3. + + + + <_> + + <_> + 0 4 4 15 -1. + + <_> + 1 4 2 15 2. + + + + <_> + + <_> + 10 2 8 6 -1. + + <_> + 10 4 8 2 3. + + + + <_> + + <_> + 1 2 8 6 -1. + + <_> + 1 4 8 2 3. + + + + <_> + + <_> + 10 6 4 16 -1. + + <_> + 12 6 2 8 2. + + <_> + 10 14 2 8 2. + + + + <_> + + <_> + 7 1 4 18 -1. + + <_> + 7 1 2 9 2. + + <_> + 9 10 2 9 2. + + + + <_> + + <_> + 8 4 4 7 -1. + + <_> + 8 4 2 7 2. + + + + <_> + + <_> + 7 4 4 7 -1. + + <_> + 9 4 2 7 2. + + + + <_> + + <_> + 7 0 12 14 -1. + + <_> + 7 0 6 14 2. + + + + <_> + + <_> + 2 1 2 14 -1. + + <_> + 3 1 1 14 2. + + + + <_> + + <_> + 0 18 14 4 -1. + + <_> + 0 18 7 2 2. + + <_> + 7 20 7 2 2. + + + + <_> + + <_> + 6 0 8 8 -1. + + <_> + 10 0 4 4 2. + + <_> + 6 4 4 4 2. + + + + <_> + + <_> + 4 9 6 10 -1. + + <_> + 4 9 3 5 2. + + <_> + 7 14 3 5 2. + + + + <_> + + <_> + 1 17 18 6 -1. + + <_> + 10 17 9 3 2. + + <_> + 1 20 9 3 2. + + + + <_> + + <_> + 5 0 6 21 -1. + + <_> + 7 7 2 7 9. + + + + <_> + + <_> + 6 7 12 7 -1. + + <_> + 6 7 6 7 2. + + + + <_> + + <_> + 7 0 12 3 -1. + + <_> + 7 0 6 3 2. + + + 1 + + <_> + + <_> + 5 0 9 5 -1. + + <_> + 8 0 3 5 3. + + + + <_> + + <_> + 7 9 3 14 -1. + + <_> + 8 9 1 14 3. + + + + <_> + + <_> + 3 14 16 9 -1. + + <_> + 3 17 16 3 3. + + + + <_> + + <_> + 1 17 6 6 -1. + + <_> + 4 17 3 6 2. + + + + <_> + + <_> + 5 1 10 20 -1. + + <_> + 5 6 10 10 2. + + + + <_> + + <_> + 1 16 12 7 -1. + + <_> + 4 16 6 7 2. + + + + <_> + + <_> + 5 0 9 4 -1. + + <_> + 5 2 9 2 2. + + + + <_> + + <_> + 3 0 13 6 -1. + + <_> + 3 2 13 2 3. + + + + <_> + + <_> + 11 13 7 8 -1. + + <_> + 11 15 7 4 2. + + + + <_> + + <_> + 3 0 4 8 -1. + + <_> + 3 4 4 4 2. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 6 5 7 6 -1. + + <_> + 6 7 7 2 3. + + + + <_> + + <_> + 8 17 7 6 -1. + + <_> + 8 19 7 2 3. + + + + <_> + + <_> + 5 12 5 8 -1. + + <_> + 5 16 5 4 2. + + + + <_> + + <_> + 0 15 19 2 -1. + + <_> + 0 16 19 1 2. + + + + <_> + + <_> + 6 7 7 4 -1. + + <_> + 6 9 7 2 2. + + + + <_> + + <_> + 9 0 2 21 -1. + + <_> + 9 7 2 7 3. + + + + <_> + + <_> + 0 19 15 4 -1. + + <_> + 5 19 5 4 3. + + + + <_> + + <_> + 9 20 10 3 -1. + + <_> + 9 20 5 3 2. + + + + <_> + + <_> + 0 17 15 3 -1. + + <_> + 0 18 15 1 3. + + + + <_> + + <_> + 12 13 6 5 -1. + + <_> + 12 13 3 5 2. + + + + <_> + + <_> + 6 7 7 6 -1. + + <_> + 6 9 7 2 3. + + + + <_> + + <_> + 3 15 14 3 -1. + + <_> + 3 16 14 1 3. + + + + <_> + + <_> + 0 20 10 3 -1. + + <_> + 5 20 5 3 2. + + + + <_> + + <_> + 6 7 8 4 -1. + + <_> + 6 7 4 4 2. + + + + <_> + + <_> + 1 17 7 6 -1. + + <_> + 1 19 7 2 3. + + + + <_> + + <_> + 7 17 12 4 -1. + + <_> + 11 17 4 4 3. + + + + <_> + + <_> + 3 15 6 7 -1. + + <_> + 5 15 2 7 3. + + + + <_> + + <_> + 6 7 12 7 -1. + + <_> + 6 7 6 7 2. + + + + <_> + + <_> + 1 9 12 12 -1. + + <_> + 1 13 12 4 3. + + + + <_> + + <_> + 12 6 5 9 -1. + + <_> + 12 9 5 3 3. + + + + <_> + + <_> + 2 6 5 9 -1. + + <_> + 2 9 5 3 3. + + + + <_> + + <_> + 12 6 6 7 -1. + + <_> + 14 8 2 7 3. + + + 1 + + <_> + + <_> + 5 9 8 10 -1. + + <_> + 5 9 4 5 2. + + <_> + 9 14 4 5 2. + + + + <_> + + <_> + 2 11 16 6 -1. + + <_> + 10 11 8 3 2. + + <_> + 2 14 8 3 2. + + + + <_> + + <_> + 8 4 3 16 -1. + + <_> + 9 4 1 16 3. + + + + <_> + + <_> + 8 9 4 14 -1. + + <_> + 9 9 2 14 2. + + + + <_> + + <_> + 7 9 4 14 -1. + + <_> + 8 9 2 14 2. + + + + <_> + + <_> + 7 17 12 4 -1. + + <_> + 11 17 4 4 3. + + + + <_> + + <_> + 0 17 12 4 -1. + + <_> + 4 17 4 4 3. + + + + <_> + + <_> + 13 12 6 10 -1. + + <_> + 16 12 3 5 2. + + <_> + 13 17 3 5 2. + + + + <_> + + <_> + 0 17 6 6 -1. + + <_> + 3 17 3 6 2. + + + + <_> + + <_> + 12 4 6 8 -1. + + <_> + 12 4 3 8 2. + + + 1 + + <_> + + <_> + 3 6 10 15 -1. + + <_> + 8 6 5 15 2. + + + + <_> + + <_> + 10 10 7 4 -1. + + <_> + 10 10 7 2 2. + + + 1 + + <_> + + <_> + 1 9 9 7 -1. + + <_> + 4 9 3 7 3. + + + + <_> + + <_> + 1 17 18 6 -1. + + <_> + 10 17 9 3 2. + + <_> + 1 20 9 3 2. + + + + <_> + + <_> + 6 0 13 3 -1. + + <_> + 5 1 13 1 3. + + + 1 + + <_> + + <_> + 10 0 3 9 -1. + + <_> + 11 1 1 9 3. + + + 1 + + <_> + + <_> + 9 0 9 3 -1. + + <_> + 8 1 9 1 3. + + + 1 + + <_> + + <_> + 7 1 12 12 -1. + + <_> + 13 1 6 6 2. + + <_> + 7 7 6 6 2. + + + + <_> + + <_> + 7 4 8 6 -1. + + <_> + 7 4 8 3 2. + + + 1 + + <_> + + <_> + 11 11 8 4 -1. + + <_> + 11 11 8 2 2. + + + 1 + + <_> + + <_> + 8 11 4 8 -1. + + <_> + 8 11 2 8 2. + + + 1 + + <_> + + <_> + 10 10 7 4 -1. + + <_> + 10 10 7 2 2. + + + 1 + + <_> + + <_> + 9 10 4 7 -1. + + <_> + 9 10 2 7 2. + + + 1 + + <_> + + <_> + 8 7 3 14 -1. + + <_> + 9 7 1 14 3. + + + + <_> + + <_> + 8 6 10 7 -1. + + <_> + 8 6 5 7 2. + + + 1 + + <_> + + <_> + 3 6 16 3 -1. + + <_> + 3 7 16 1 3. + + + + <_> + + <_> + 4 5 2 17 -1. + + <_> + 5 5 1 17 2. + + + + <_> + + <_> + 12 0 6 18 -1. + + <_> + 15 0 3 9 2. + + <_> + 12 9 3 9 2. + + + + <_> + + <_> + 3 4 6 16 -1. + + <_> + 3 4 3 8 2. + + <_> + 6 12 3 8 2. + + + + <_> + + <_> + 12 0 6 18 -1. + + <_> + 15 0 3 9 2. + + <_> + 12 9 3 9 2. + + + + <_> + + <_> + 0 1 16 4 -1. + + <_> + 0 1 8 2 2. + + <_> + 8 3 8 2 2. + + + + <_> + + <_> + 6 12 12 5 -1. + + <_> + 6 12 6 5 2. + + + + <_> + + <_> + 3 7 3 10 -1. + + <_> + 3 12 3 5 2. + + + + <_> + + <_> + 11 3 7 12 -1. + + <_> + 11 7 7 4 3. + + + + <_> + + <_> + 0 6 8 6 -1. + + <_> + 0 8 8 2 3. + + + + <_> + + <_> + 12 3 7 6 -1. + + <_> + 12 5 7 2 3. + + + + <_> + + <_> + 0 3 7 6 -1. + + <_> + 0 5 7 2 3. + + + + <_> + + <_> + 13 10 6 8 -1. + + <_> + 15 10 2 8 3. + + + + <_> + + <_> + 0 17 14 2 -1. + + <_> + 0 18 14 1 2. + + + + <_> + + <_> + 13 10 6 8 -1. + + <_> + 15 10 2 8 3. + + + + <_> + + <_> + 0 17 14 2 -1. + + <_> + 0 18 14 1 2. + + + + <_> + + <_> + 6 0 8 8 -1. + + <_> + 10 0 4 4 2. + + <_> + 6 4 4 4 2. + + + + <_> + + <_> + 0 10 6 8 -1. + + <_> + 2 10 2 8 3. + + + + <_> + + <_> + 13 0 3 14 -1. + + <_> + 14 0 1 14 3. + + + + <_> + + <_> + 6 0 6 7 -1. + + <_> + 8 0 2 7 3. + + + + <_> + + <_> + 6 0 8 8 -1. + + <_> + 10 0 4 4 2. + + <_> + 6 4 4 4 2. + + + + <_> + + <_> + 5 0 8 8 -1. + + <_> + 5 0 4 4 2. + + <_> + 9 4 4 4 2. + + + + <_> + + <_> + 3 7 16 7 -1. + + <_> + 3 7 8 7 2. + + + + <_> + + <_> + 0 7 16 7 -1. + + <_> + 8 7 8 7 2. + + + + <_> + + <_> + 2 11 10 8 -1. + + <_> + 7 11 5 8 2. + + + + <_> + + <_> + 12 8 6 9 -1. + + <_> + 14 8 2 9 3. + + + + <_> + + <_> + 1 8 6 9 -1. + + <_> + 3 8 2 9 3. + + + + <_> + + <_> + 4 3 14 11 -1. + + <_> + 4 3 7 11 2. + + + + <_> + + <_> + 5 5 13 3 -1. + + <_> + 4 6 13 1 3. + + + 1 + + <_> + + <_> + 7 0 6 9 -1. + + <_> + 9 0 2 9 3. + + + + <_> + + <_> + 1 0 14 12 -1. + + <_> + 1 0 7 6 2. + + <_> + 8 6 7 6 2. + + + + <_> + + <_> + 10 0 8 4 -1. + + <_> + 10 0 4 4 2. + + + + <_> + + <_> + 3 10 4 12 -1. + + <_> + 5 10 2 12 2. + + + + <_> + + <_> + 11 0 2 22 -1. + + <_> + 11 11 2 11 2. + + + + <_> + + <_> + 0 19 14 4 -1. + + <_> + 0 19 7 2 2. + + <_> + 7 21 7 2 2. + + + + <_> + + <_> + 10 8 2 8 -1. + + <_> + 10 8 1 8 2. + + + 1 + + <_> + + <_> + 5 0 4 14 -1. + + <_> + 5 0 2 7 2. + + <_> + 7 7 2 7 2. + + + + <_> + + <_> + 8 4 4 10 -1. + + <_> + 8 9 4 5 2. + + + + <_> + + <_> + 9 8 8 2 -1. + + <_> + 9 8 8 1 2. + + + 1 + + <_> + + <_> + 0 7 19 3 -1. + + <_> + 0 8 19 1 3. + + + + <_> + + <_> + 0 8 19 2 -1. + + <_> + 0 9 19 1 2. + + + + <_> + + <_> + 1 6 18 4 -1. + + <_> + 10 6 9 2 2. + + <_> + 1 8 9 2 2. + + + + <_> + + <_> + 2 1 8 18 -1. + + <_> + 6 1 4 18 2. + + + + <_> + + <_> + 6 11 10 12 -1. + + <_> + 11 11 5 6 2. + + <_> + 6 17 5 6 2. + + + + <_> + + <_> + 3 7 9 11 -1. + + <_> + 6 7 3 11 3. + + + + <_> + + <_> + 9 0 6 14 -1. + + <_> + 11 0 2 14 3. + + + + <_> + + <_> + 2 16 12 7 -1. + + <_> + 6 16 4 7 3. + + + + <_> + + <_> + 2 15 15 6 -1. + + <_> + 7 15 5 6 3. + + + + <_> + + <_> + 5 2 8 7 -1. + + <_> + 7 2 4 7 2. + + + + <_> + + <_> + 8 0 4 14 -1. + + <_> + 9 0 2 14 2. + + + + <_> + + <_> + 7 0 4 14 -1. + + <_> + 8 0 2 14 2. + + + + <_> + + <_> + 7 18 12 5 -1. + + <_> + 11 18 4 5 3. + + + + <_> + + <_> + 1 18 15 3 -1. + + <_> + 1 19 15 1 3. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 7 8 9 6 -1. + + <_> + 5 10 9 2 3. + + + 1 + + <_> + + <_> + 11 10 4 9 -1. + + <_> + 12 11 2 9 2. + + + 1 + + <_> + + <_> + 8 10 9 4 -1. + + <_> + 7 11 9 2 2. + + + 1 + + <_> + + <_> + 15 3 2 16 -1. + + <_> + 15 11 2 8 2. + + + + <_> + + <_> + 1 17 5 6 -1. + + <_> + 1 20 5 3 2. + + + + <_> + + <_> + 12 16 5 6 -1. + + <_> + 12 19 5 3 2. + + + + <_> + + <_> + 5 2 3 14 -1. + + <_> + 6 2 1 14 3. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 6 1 6 9 -1. + + <_> + 8 1 2 9 3. + + + + <_> + + <_> + 7 7 10 5 -1. + + <_> + 7 7 5 5 2. + + + + <_> + + <_> + 6 0 4 20 -1. + + <_> + 6 0 2 10 2. + + <_> + 8 10 2 10 2. + + + + <_> + + <_> + 13 10 3 9 -1. + + <_> + 14 11 1 9 3. + + + 1 + + <_> + + <_> + 6 10 9 3 -1. + + <_> + 5 11 9 1 3. + + + 1 + + <_> + + <_> + 5 21 14 2 -1. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 8 6 3 14 -1. + + <_> + 9 6 1 14 3. + + + + <_> + + <_> + 8 1 4 9 -1. + + <_> + 8 1 2 9 2. + + + + <_> + + <_> + 7 1 4 9 -1. + + <_> + 9 1 2 9 2. + + + + <_> + + <_> + 7 17 12 6 -1. + + <_> + 13 17 6 3 2. + + <_> + 7 20 6 3 2. + + + + <_> + + <_> + 3 4 10 6 -1. + + <_> + 8 4 5 6 2. + + + + <_> + + <_> + 15 0 4 8 -1. + + <_> + 15 4 4 4 2. + + + + <_> + + <_> + 3 5 6 8 -1. + + <_> + 5 5 2 8 3. + + + + <_> + + <_> + 15 0 4 8 -1. + + <_> + 15 4 4 4 2. + + + + <_> + + <_> + 0 0 4 8 -1. + + <_> + 0 4 4 4 2. + + + + <_> + + <_> + 7 0 9 5 -1. + + <_> + 10 0 3 5 3. + + + + <_> + + <_> + 3 0 6 5 -1. + + <_> + 6 0 3 5 2. + + + + <_> + + <_> + 5 21 14 2 -1. + + <_> + 5 21 7 2 2. + + + + <_> + + <_> + 9 3 8 9 -1. + + <_> + 9 3 4 9 2. + + + 1 + + <_> + + <_> + 6 1 12 8 -1. + + <_> + 12 1 6 4 2. + + <_> + 6 5 6 4 2. + + + + <_> + + <_> + 4 10 10 11 -1. + + <_> + 9 10 5 11 2. + + + + <_> + + <_> + 12 1 3 15 -1. + + <_> + 13 1 1 15 3. + + + + <_> + + <_> + 4 3 8 12 -1. + + <_> + 8 3 4 12 2. + + + + <_> + + <_> + 8 2 10 8 -1. + + <_> + 8 2 5 8 2. + + + + <_> + + <_> + 0 4 19 6 -1. + + <_> + 0 6 19 2 3. + + + + <_> + + <_> + 4 0 11 16 -1. + + <_> + 4 4 11 8 2. + + + + <_> + + <_> + 4 1 6 5 -1. + + <_> + 7 1 3 5 2. + + + + <_> + + <_> + 3 5 14 18 -1. + + <_> + 10 5 7 9 2. + + <_> + 3 14 7 9 2. + + + + <_> + + <_> + 1 17 5 6 -1. + + <_> + 1 20 5 3 2. + + + + <_> + + <_> + 13 0 4 14 -1. + + <_> + 15 0 2 7 2. + + <_> + 13 7 2 7 2. + + + + <_> + + <_> + 2 0 4 14 -1. + + <_> + 2 0 2 7 2. + + <_> + 4 7 2 7 2. + + + + <_> + + <_> + 10 2 2 10 -1. + + <_> + 10 2 1 10 2. + + + 1 + + <_> + + <_> + 9 1 9 3 -1. + + <_> + 8 2 9 1 3. + + + 1 + + <_> + + <_> + 6 2 10 6 -1. + + <_> + 11 2 5 3 2. + + <_> + 6 5 5 3 2. + + + + <_> + + <_> + 1 12 9 6 -1. + + <_> + 1 14 9 2 3. + + + + <_> + + <_> + 6 2 10 6 -1. + + <_> + 11 2 5 3 2. + + <_> + 6 5 5 3 2. + + + + <_> + + <_> + 3 2 10 6 -1. + + <_> + 3 2 5 3 2. + + <_> + 8 5 5 3 2. + + + + <_> + + <_> + 7 0 5 20 -1. + + <_> + 7 5 5 10 2. + + + + <_> + + <_> + 2 10 12 7 -1. + + <_> + 5 10 6 7 2. + + + + <_> + + <_> + 0 18 14 4 -1. + + <_> + 0 18 7 2 2. + + <_> + 7 20 7 2 2. + + + + <_> + + <_> + 9 7 3 15 -1. + + <_> + 10 7 1 15 3. + + + + <_> + + <_> + 6 8 6 5 -1. + + <_> + 9 8 3 5 2. + + + + <_> + + <_> + 9 4 2 17 -1. + + <_> + 9 4 1 17 2. + + + + <_> + + <_> + 8 4 2 17 -1. + + <_> + 9 4 1 17 2. + + + + <_> + + <_> + 8 18 9 5 -1. + + <_> + 11 18 3 5 3. + + + + <_> + + <_> + 2 18 9 5 -1. + + <_> + 5 18 3 5 3. + + + + <_> + + <_> + 12 18 6 5 -1. + + <_> + 12 18 3 5 2. + + + + <_> + + <_> + 5 15 6 5 -1. + + <_> + 8 15 3 5 2. + + + + <_> + + <_> + 13 0 6 10 -1. + + <_> + 15 0 2 10 3. + + + + <_> + + <_> + 2 14 10 9 -1. + + <_> + 2 17 10 3 3. + + + + <_> + + <_> + 13 0 6 10 -1. + + <_> + 15 0 2 10 3. + + + + <_> + + <_> + 0 0 6 10 -1. + + <_> + 2 0 2 10 3. + + + + <_> + + <_> + 12 5 3 12 -1. + + <_> + 12 5 3 6 2. + + + 1 + + <_> + + <_> + 6 18 7 4 -1. + + <_> + 6 20 7 2 2. + + + + <_> + + <_> + 14 7 4 12 -1. + + <_> + 15 8 2 12 2. + + + 1 + + <_> + + <_> + 5 7 12 4 -1. + + <_> + 4 8 12 2 2. + + + 1 + + <_> + + <_> + 14 13 5 9 -1. + + <_> + 14 16 5 3 3. + + + + <_> + + <_> + 0 13 5 9 -1. + + <_> + 0 16 5 3 3. + + + + <_> + + <_> + 12 14 7 6 -1. + + <_> + 12 16 7 2 3. + + + + <_> + + <_> + 1 16 6 6 -1. + + <_> + 1 19 6 3 2. + + + + <_> + + <_> + 7 0 9 4 -1. + + <_> + 7 2 9 2 2. + + + + <_> + + <_> + 0 9 18 3 -1. + + <_> + 0 10 18 1 3. + + + + <_> + + <_> + 9 17 9 6 -1. + + <_> + 12 17 3 6 3. + + + + <_> + + <_> + 2 14 15 9 -1. + + <_> + 7 17 5 3 9. + + + + <_> + + <_> + 9 13 8 8 -1. + + <_> + 9 17 8 4 2. + + + + <_> + + <_> + 4 9 2 14 -1. + + <_> + 5 9 1 14 2. + + + + <_> + + <_> + 12 10 4 13 -1. + + <_> + 12 10 2 13 2. + + + + <_> + + <_> + 3 10 4 13 -1. + + <_> + 5 10 2 13 2. + + + + <_> + + <_> + 5 5 14 2 -1. + + <_> + 5 5 7 2 2. + + + + <_> + + <_> + 0 5 14 2 -1. + + <_> + 7 5 7 2 2. + + + + <_> + + <_> + 13 12 6 10 -1. + + <_> + 16 12 3 5 2. + + <_> + 13 17 3 5 2. + + + + <_> + + <_> + 0 12 6 10 -1. + + <_> + 0 12 3 5 2. + + <_> + 3 17 3 5 2. + + + + <_> + + <_> + 12 8 5 12 -1. + + <_> + 12 11 5 6 2. + + + + <_> + + <_> + 2 8 5 12 -1. + + <_> + 2 11 5 6 2. + + + + <_> + + <_> + 6 8 7 4 -1. + + <_> + 6 10 7 2 2. + + + + <_> + + <_> + 0 17 14 3 -1. + + <_> + 0 18 14 1 3. + + + + <_> + + <_> + 12 7 2 15 -1. + + <_> + 12 7 1 15 2. + + + + <_> + + <_> + 1 17 9 6 -1. + + <_> + 4 17 3 6 3. + + + + <_> + + <_> + 10 6 9 7 -1. + + <_> + 13 9 3 7 3. + + + 1 + + <_> + + <_> + 9 6 7 9 -1. + + <_> + 6 9 7 3 3. + + + 1 + + <_> + + <_> + 5 8 10 4 -1. + + <_> + 5 10 10 2 2. + + + + <_> + + <_> + 0 6 6 14 -1. + + <_> + 0 13 6 7 2. + + + + <_> + + <_> + 1 1 18 22 -1. + + <_> + 10 1 9 11 2. + + <_> + 1 12 9 11 2. + + + + <_> + + <_> + 1 5 17 3 -1. + + <_> + 1 6 17 1 3. + + + + <_> + + <_> + 13 12 6 5 -1. + + <_> + 13 12 3 5 2. + + + + <_> + + <_> + 0 5 16 3 -1. + + <_> + 0 6 16 1 3. + + + + <_> + + <_> + 12 6 6 17 -1. + + <_> + 12 6 3 17 2. + + + + <_> + + <_> + 1 6 6 17 -1. + + <_> + 4 6 3 17 2. + + + + <_> + + <_> + 1 15 18 2 -1. + + <_> + 1 15 9 2 2. + + + + <_> + + <_> + 0 5 2 16 -1. + + <_> + 1 5 1 16 2. + + + + <_> + + <_> + 15 12 4 10 -1. + + <_> + 15 17 4 5 2. + + + + <_> + + <_> + 1 5 16 3 -1. + + <_> + 1 6 16 1 3. + + + + <_> + + <_> + 6 9 9 12 -1. + + <_> + 6 12 9 6 2. + + + + <_> + + <_> + 3 13 4 8 -1. + + <_> + 3 17 4 4 2. + + + + <_> + + <_> + 9 13 8 8 -1. + + <_> + 9 17 8 4 2. + + + + <_> + + <_> + 5 0 8 10 -1. + + <_> + 5 0 4 5 2. + + <_> + 9 5 4 5 2. + + + + <_> + + <_> + 1 4 18 6 -1. + + <_> + 10 4 9 3 2. + + <_> + 1 7 9 3 2. + + + + <_> + + <_> + 3 16 9 6 -1. + + <_> + 3 18 9 2 3. + + + + <_> + + <_> + 3 17 14 4 -1. + + <_> + 3 18 14 2 2. + + + + <_> + + <_> + 2 3 9 6 -1. + + <_> + 2 5 9 2 3. + + + + <_> + + <_> + 0 3 19 3 -1. + + <_> + 0 4 19 1 3. + + + + <_> + + <_> + 1 3 16 4 -1. + + <_> + 1 4 16 2 2. + + + + <_> + + <_> + 11 0 6 14 -1. + + <_> + 14 0 3 7 2. + + <_> + 11 7 3 7 2. + + + + <_> + + <_> + 0 17 9 6 -1. + + <_> + 3 17 3 6 3. + + + + <_> + + <_> + 7 16 8 7 -1. + + <_> + 9 16 4 7 2. + + + + <_> + + <_> + 3 14 10 5 -1. + + <_> + 8 14 5 5 2. + + + + <_> + + <_> + 12 9 3 14 -1. + + <_> + 13 9 1 14 3. + + + + <_> + + <_> + 4 9 3 14 -1. + + <_> + 5 9 1 14 3. + + + + <_> + + <_> + 10 9 6 14 -1. + + <_> + 13 9 3 7 2. + + <_> + 10 16 3 7 2. + + + + <_> + + <_> + 6 0 6 5 -1. + + <_> + 9 0 3 5 2. + + + + <_> + + <_> + 7 0 6 8 -1. + + <_> + 7 4 6 4 2. + + + + <_> + + <_> + 2 0 11 21 -1. + + <_> + 2 7 11 7 3. + + + + <_> + + <_> + 8 8 4 12 -1. + + <_> + 8 12 4 4 3. + + + + <_> + + <_> + 3 9 6 14 -1. + + <_> + 3 9 3 7 2. + + <_> + 6 16 3 7 2. + + + + <_> + + <_> + 10 7 8 7 -1. + + <_> + 12 7 4 7 2. + + + + <_> + + <_> + 1 7 8 7 -1. + + <_> + 3 7 4 7 2. + + + + <_> + + <_> + 5 2 9 20 -1. + + <_> + 8 2 3 20 3. + + + + + + \ No newline at end of file diff --git a/squirrowse.web/StaticFiles/haarcascade_upperbody.xml b/squirrowse.web/StaticFiles/haarcascade_upperbody.xml new file mode 100644 index 0000000..230e51f --- /dev/null +++ b/squirrowse.web/StaticFiles/haarcascade_upperbody.xml @@ -0,0 +1,45530 @@ + + + + + + BOOST + HAAR + 18 + 22 + + 152 + + + 0 + + 30 + + <_> + 20 + -1.1264339685440063e+00 + + <_> + + 0 -1 0 -1.3696029782295227e-02 + + + 4.5076468586921692e-01 -4.2179030179977417e-01 + + + <_> + + 0 -1 1 1.2441449798643589e-02 + + + 1.6493250429630280e-01 -7.4793487787246704e-01 + + + <_> + + 0 -1 2 -2.7094660326838493e-03 + + + 3.1004700064659119e-01 -3.7617141008377075e-01 + + + <_> + + 0 -1 3 -1.0008010268211365e-01 + + + 7.6182198524475098e-01 -7.4556976556777954e-02 + + + <_> + + 0 -1 4 -2.5114119052886963e-01 + + + -6.4154028892517090e-01 1.5139220654964447e-01 + + + <_> + + 0 -1 5 -1.0510650277137756e-01 + + + 7.1459370851516724e-01 -1.4498579502105713e-01 + + + <_> + + 0 -1 6 -8.8448017835617065e-02 + + + 7.5773179531097412e-01 -6.8586893379688263e-02 + + + <_> + + 0 -1 7 1.0874910280108452e-02 + + + 1.4610609412193298e-01 -5.4263710975646973e-01 + + + <_> + + 0 -1 8 1.2690570205450058e-02 + + + 1.1674589663743973e-01 -4.9649459123611450e-01 + + + <_> + + 0 -1 9 -3.2198399305343628e-02 + + + -3.8529390096664429e-01 9.8437972366809845e-02 + + + <_> + + 0 -1 10 -3.4077179152518511e-03 + + + 2.5200870633125305e-01 -2.2382549941539764e-01 + + + <_> + + 0 -1 11 3.0324390158057213e-02 + + + -1.0534449666738510e-01 6.5735417604446411e-01 + + + <_> + + 0 -1 12 4.1930507868528366e-03 + + + 1.2872399389743805e-01 -5.3160661458969116e-01 + + + <_> + + 0 -1 13 8.0501407384872437e-02 + + + 4.1696660220623016e-02 -7.2123032808303833e-01 + + + <_> + + 0 -1 14 -3.4822080284357071e-02 + + + -4.9751108884811401e-01 1.3959939777851105e-01 + + + <_> + + 0 -1 15 7.5519368983805180e-03 + + + -9.2147678136825562e-02 1.1294340342283249e-01 + + + <_> + + 0 -1 16 -1.7572140321135521e-02 + + + -5.6784427165985107e-01 9.3572810292243958e-02 + + + <_> + + 0 -1 17 5.2012042142450809e-03 + + + -7.9238079488277435e-02 6.1878960579633713e-02 + + + <_> + + 0 -1 18 -3.0798919498920441e-02 + + + -5.6658512353897095e-01 9.5271490514278412e-02 + + + <_> + + 0 -1 19 -1.3465429656207561e-03 + + + 2.4011470377445221e-01 -2.6026639342308044e-01 + + + + + <_> + 33 + -1.1226719617843628e+00 + + <_> + + 0 -1 20 1.9108939450234175e-03 + + + -4.6240958571434021e-01 3.0612170696258545e-01 + + + <_> + + 0 -1 21 9.5464065670967102e-03 + + + 9.1956138610839844e-02 -5.3501170873641968e-01 + + + <_> + + 0 -1 22 -4.3402809649705887e-02 + + + 5.6817841529846191e-01 -1.1284930258989334e-01 + + + <_> + + 0 -1 23 5.0386030226945877e-02 + + + -8.0316931009292603e-02 7.3521858453750610e-01 + + + <_> + + 0 -1 24 -6.8480317713692784e-04 + + + 2.5798648595809937e-01 -2.8049409389495850e-01 + + + <_> + + 0 -1 25 1.1548049747943878e-01 + + + 9.2065572738647461e-02 -7.5556892156600952e-01 + + + <_> + + 0 -1 26 -1.9348369678482413e-03 + + + 2.9440790414810181e-01 -2.4102710187435150e-01 + + + <_> + + 0 -1 27 -4.3528810143470764e-02 + + + 4.9202969670295715e-01 -3.9650101214647293e-02 + + + <_> + + 0 -1 28 -3.0218150466680527e-02 + + + 7.7227920293807983e-01 -8.6786523461341858e-02 + + + <_> + + 0 -1 29 2.4536589160561562e-02 + + + 9.5944821834564209e-02 -4.8642969131469727e-01 + + + <_> + + 0 -1 30 2.3958990350365639e-02 + + + 1.0437840223312378e-01 -5.1219838857650757e-01 + + + <_> + + 0 -1 31 -2.5370830669999123e-02 + + + -3.1981548666954041e-01 9.1486573219299316e-02 + + + <_> + + 0 -1 32 -1.8606419907882810e-03 + + + 2.2783969342708588e-01 -2.4307970702648163e-01 + + + <_> + + 0 -1 33 2.2550800815224648e-02 + + + 6.9207556545734406e-02 -3.0054280161857605e-01 + + + <_> + + 0 -1 34 -4.9752090126276016e-02 + + + -6.1078047752380371e-01 9.4472773373126984e-02 + + + <_> + + 0 -1 35 -2.6602389290928841e-02 + + + 5.9581768512725830e-01 -9.2046052217483521e-02 + + + <_> + + 0 -1 36 1.0760000348091125e-01 + + + 1.0278519988059998e-01 -5.4303371906280518e-01 + + + <_> + + 0 -1 37 1.7690699547529221e-02 + + + 6.6057138144969940e-02 -6.3213908672332764e-01 + + + <_> + + 0 -1 38 -6.2409918755292892e-02 + + + 6.8724197149276733e-01 -6.7070558667182922e-02 + + + <_> + + 0 -1 39 -1.9801619928330183e-03 + + + 9.4411551952362061e-02 -8.7819486856460571e-02 + + + <_> + + 0 -1 40 6.3668429851531982e-02 + + + 1.1531739681959152e-01 -4.8129761219024658e-01 + + + <_> + + 0 -1 41 -3.0797829851508141e-02 + + + 3.5854768753051758e-01 -1.2593799829483032e-01 + + + <_> + + 0 -1 42 -1.8353419727645814e-04 + + + 1.4788399636745453e-01 -2.8546810150146484e-01 + + + <_> + + 0 -1 43 1.7074620118364692e-03 + + + 7.9929657280445099e-02 -2.5233370065689087e-01 + + + <_> + + 0 -1 44 -1.5325199812650681e-02 + + + -5.7711857557296753e-01 9.8908327519893646e-02 + + + <_> + + 0 -1 45 4.1389189660549164e-02 + + + -6.5550796687602997e-02 5.7363802194595337e-01 + + + <_> + + 0 -1 46 -4.5577771379612386e-04 + + + 2.2593089938163757e-01 -1.9105580449104309e-01 + + + <_> + + 0 -1 47 -1.3455689884722233e-02 + + + -4.0233930945396423e-01 8.6477622389793396e-02 + + + <_> + + 0 -1 48 -3.7978399544954300e-02 + + + 5.5257588624954224e-01 -8.1541016697883606e-02 + + + <_> + + 0 -1 49 -1.7197500914335251e-02 + + + -1.8363009393215179e-01 5.1999870687723160e-02 + + + <_> + + 0 -1 50 -1.2581580085679889e-03 + + + 1.8830040097236633e-01 -2.5726661086082458e-01 + + + <_> + + 0 -1 51 6.7725107073783875e-02 + + + -8.0956451594829559e-02 7.1803241968154907e-01 + + + <_> + + 0 -1 52 3.5489428788423538e-02 + + + 1.0068070143461227e-01 -5.3774142265319824e-01 + + + + + <_> + 29 + -1.0127470493316650e+00 + + <_> + + 0 -1 53 -5.3695798851549625e-03 + + + 2.7479499578475952e-01 -3.4178960323333740e-01 + + + <_> + + 0 -1 54 6.2695867381989956e-04 + + + -9.8646633327007294e-02 1.0728420317173004e-01 + + + <_> + + 0 -1 55 -1.6484269872307777e-02 + + + -6.4972907304763794e-01 9.6037752926349640e-02 + + + <_> + + 0 -1 56 -2.2104099392890930e-02 + + + -4.5984488725662231e-01 1.6304630041122437e-01 + + + <_> + + 0 -1 57 1.1904139816761017e-01 + + + -9.9600397050380707e-02 7.3729759454727173e-01 + + + <_> + + 0 -1 58 -2.0222070161253214e-03 + + + 2.1029269695281982e-01 -2.4577130377292633e-01 + + + <_> + + 0 -1 59 6.7500352859497070e-02 + + + -1.2467789649963379e-01 5.7654231786727905e-01 + + + <_> + + 0 -1 60 -1.9655939936637878e-01 + + + -6.0891747474670410e-01 9.9672056734561920e-02 + + + <_> + + 0 -1 61 4.9431171268224716e-02 + + + 1.3752749562263489e-01 -4.5580869913101196e-01 + + + <_> + + 0 -1 62 2.3380089551210403e-02 + + + 4.7141890972852707e-02 -3.5027709603309631e-01 + + + <_> + + 0 -1 63 1.3998650247231126e-03 + + + -2.0643049478530884e-01 2.4322299659252167e-01 + + + <_> + + 0 -1 64 1.1432689614593983e-02 + + + 5.5187370628118515e-02 -3.2619899511337280e-01 + + + <_> + + 0 -1 65 4.8775069415569305e-02 + + + -6.8992510437965393e-02 7.1171808242797852e-01 + + + <_> + + 0 -1 66 6.5284021198749542e-02 + + + 3.7155740428715944e-03 5.9318971633911133e-01 + + + <_> + + 0 -1 67 6.1603228095918894e-04 + + + -2.3272520303726196e-01 2.0441530644893646e-01 + + + <_> + + 0 -1 68 -1.0527499951422215e-02 + + + -3.1773790717124939e-01 1.0171309858560562e-01 + + + <_> + + 0 -1 69 1.6231339424848557e-02 + + + 9.1734193265438080e-02 -4.7143009305000305e-01 + + + <_> + + 0 -1 70 3.8958500954322517e-04 + + + -1.2997549772262573e-01 1.3475489616394043e-01 + + + <_> + + 0 -1 71 -4.4165689498186111e-02 + + + -6.0331028699874878e-01 6.4766876399517059e-02 + + + <_> + + 0 -1 72 -1.3663209974765778e-02 + + + -5.2762842178344727e-01 6.3485741615295410e-02 + + + <_> + + 0 -1 73 -8.8231859263032675e-04 + + + 1.4510250091552734e-01 -2.7845200896263123e-01 + + + <_> + + 0 -1 74 -2.7819190174341202e-02 + + + 4.3640869855880737e-01 -8.5191860795021057e-02 + + + <_> + + 0 -1 75 6.2560990452766418e-02 + + + 1.0027889907360077e-01 -4.2235919833183289e-01 + + + <_> + + 0 -1 76 -4.4808178790844977e-04 + + + 1.4851489663124084e-01 -1.7731289565563202e-01 + + + <_> + + 0 -1 77 -2.1363180130720139e-02 + + + -6.1334460973739624e-01 6.0539398342370987e-02 + + + <_> + + 0 -1 78 -6.9122329354286194e-02 + + + -8.6845761537551880e-01 3.9347749203443527e-02 + + + <_> + + 0 -1 79 -3.0542839318513870e-02 + + + -6.4021718502044678e-01 4.9593821167945862e-02 + + + <_> + + 0 -1 80 -1.0101160034537315e-02 + + + -1.6199150681495667e-01 5.7256899774074554e-02 + + + <_> + + 0 -1 81 -2.2010109387338161e-04 + + + 2.1350930631160736e-01 -2.0198999345302582e-01 + + + + + <_> + 42 + -1.0684469938278198e+00 + + <_> + + 0 -1 82 5.7967850007116795e-03 + + + -3.3844178915023804e-01 2.5066271424293518e-01 + + + <_> + + 0 -1 83 6.3795179128646851e-02 + + + -4.2111620306968689e-02 3.5746571421623230e-01 + + + <_> + + 0 -1 84 -6.4332038164138794e-02 + + + -5.0660789012908936e-01 1.1717739701271057e-01 + + + <_> + + 0 -1 85 -1.1574289947748184e-01 + + + -5.6678497791290283e-01 9.5880903303623199e-02 + + + <_> + + 0 -1 86 -3.9005130529403687e-03 + + + -4.1498228907585144e-01 1.4858320355415344e-01 + + + <_> + + 0 -1 87 1.2512929737567902e-02 + + + 5.3696669638156891e-02 -1.4163960516452789e-01 + + + <_> + + 0 -1 88 1.5871099894866347e-03 + + + -2.5962340831756592e-01 1.9418330490589142e-01 + + + <_> + + 0 -1 89 1.6291120648384094e-01 + + + -6.1243768781423569e-02 7.8567212820053101e-01 + + + <_> + + 0 -1 90 -3.3258220553398132e-01 + + + 7.8020131587982178e-01 -4.4036459177732468e-02 + + + <_> + + 0 -1 91 -1.0288899764418602e-02 + + + -1.5289680659770966e-01 6.2096230685710907e-02 + + + <_> + + 0 -1 92 2.8956029564142227e-02 + + + 8.4707796573638916e-02 -4.7820711135864258e-01 + + + <_> + + 0 -1 93 -3.2221511355601251e-04 + + + 1.3951259851455688e-01 -1.8819390237331390e-01 + + + <_> + + 0 -1 94 1.5835289657115936e-01 + + + 6.6667810082435608e-02 -5.4572361707687378e-01 + + + <_> + + 0 -1 95 -4.2584311217069626e-02 + + + 2.7040338516235352e-01 -5.6654509156942368e-02 + + + <_> + + 0 -1 96 2.7505140751600266e-02 + + + 4.9271158874034882e-02 -7.3157638311386108e-01 + + + <_> + + 0 -1 97 8.6879700422286987e-02 + + + -1.7532400786876678e-02 8.6782652139663696e-01 + + + <_> + + 0 -1 98 -2.0130439661443233e-03 + + + 1.6593940556049347e-01 -2.5266230106353760e-01 + + + <_> + + 0 -1 99 4.2330170981585979e-04 + + + 9.4223551452159882e-02 -2.4629700183868408e-01 + + + <_> + + 0 -1 100 1.5194499865174294e-02 + + + 7.3695637285709381e-02 -5.0068622827529907e-01 + + + <_> + + 0 -1 101 -6.1203669756650925e-03 + + + 2.1381899714469910e-01 -1.6738100349903107e-01 + + + <_> + + 0 -1 102 2.0660240203142166e-02 + + + -8.0636158585548401e-02 5.7828348875045776e-01 + + + <_> + + 0 -1 103 -6.0398250818252563e-02 + + + -6.3411772251129150e-01 5.0899010151624680e-02 + + + <_> + + 0 -1 104 3.5386480391025543e-02 + + + 7.3191151022911072e-02 -5.6426662206649780e-01 + + + <_> + + 0 -1 105 -6.5997838973999023e-02 + + + 3.2833808660507202e-01 -2.6310259476304054e-02 + + + <_> + + 0 -1 106 1.1004590196534991e-03 + + + -2.3114609718322754e-01 2.0206519961357117e-01 + + + <_> + + 0 -1 107 8.4488153457641602e-02 + + + 7.4589841067790985e-02 -4.3710339069366455e-01 + + + <_> + + 0 -1 108 -2.9235990718007088e-02 + + + 6.5064769983291626e-01 -5.4531838744878769e-02 + + + <_> + + 0 -1 109 -3.3916950225830078e-02 + + + -2.8804349899291992e-01 3.2172881066799164e-02 + + + <_> + + 0 -1 110 -7.9108700156211853e-03 + + + -3.3660379052162170e-01 1.0100690275430679e-01 + + + <_> + + 0 -1 111 5.1930431276559830e-02 + + + 3.2920960336923599e-02 -1.3176530599594116e-01 + + + <_> + + 0 -1 112 -6.8586103618144989e-02 + + + 5.2153557538986206e-01 -6.6718578338623047e-02 + + + <_> + + 0 -1 113 -1.9451669650152326e-03 + + + 1.5396790206432343e-01 -1.9895760715007782e-01 + + + <_> + + 0 -1 114 7.1366228163242340e-02 + + + -8.2927159965038300e-02 4.5292338728904724e-01 + + + <_> + + 0 -1 115 -2.6624239981174469e-02 + + + -4.4009739160537720e-01 1.0267119854688644e-01 + + + <_> + + 0 -1 116 2.5266060605645180e-02 + + + 5.5799201130867004e-02 -5.5569338798522949e-01 + + + <_> + + 0 -1 117 5.5255689658224583e-03 + + + -1.3640299439430237e-01 2.8255200386047363e-01 + + + <_> + + 0 -1 118 -2.9929999727755785e-03 + + + -3.2421571016311646e-01 1.2122060358524323e-01 + + + <_> + + 0 -1 119 2.2192109376192093e-02 + + + -6.0741018503904343e-02 4.3473160266876221e-01 + + + <_> + + 0 -1 120 -9.4268741086125374e-03 + + + -3.3458408713340759e-01 1.0029699653387070e-01 + + + <_> + + 0 -1 121 3.4395330585539341e-03 + + + -8.3829909563064575e-02 1.7925940454006195e-01 + + + <_> + + 0 -1 122 -3.2996390946209431e-03 + + + 1.9990429282188416e-01 -2.1068470180034637e-01 + + + <_> + + 0 -1 123 2.6152150705456734e-02 + + + -8.0667406320571899e-02 3.5581269860267639e-01 + + + + + <_> + 45 + -1.1520069837570190e+00 + + <_> + + 0 -1 124 -2.2792650386691093e-02 + + + 4.0725260972976685e-01 -3.3609920740127563e-01 + + + <_> + + 0 -1 125 -5.7334620505571365e-03 + + + 2.6882189512252808e-01 -2.2775350511074066e-01 + + + <_> + + 0 -1 126 9.6941202878952026e-02 + + + -8.0905012786388397e-02 7.4328738451004028e-01 + + + <_> + + 0 -1 127 -2.8288999572396278e-02 + + + 4.5610108971595764e-01 -6.1096340417861938e-02 + + + <_> + + 0 -1 128 3.8522849790751934e-03 + + + -2.5241801142692566e-01 2.0907109975814819e-01 + + + <_> + + 0 -1 129 2.3100129328668118e-03 + + + -1.4713400602340698e-01 1.5460389852523804e-01 + + + <_> + + 0 -1 130 1.1361920041963458e-03 + + + 1.7680479586124420e-01 -3.0537289381027222e-01 + + + <_> + + 0 -1 131 2.4962890893220901e-02 + + + -1.2652909755706787e-01 3.7442651391029358e-01 + + + <_> + + 0 -1 132 -5.8984099887311459e-03 + + + 2.6738989353179932e-01 -1.7762570083141327e-01 + + + <_> + + 0 -1 133 1.1804900132119656e-02 + + + 6.6077977418899536e-02 -3.3482131361961365e-01 + + + <_> + + 0 -1 134 6.4400159753859043e-03 + + + 1.0994800180196762e-01 -3.6303481459617615e-01 + + + <_> + + 0 -1 135 -8.9407369494438171e-02 + + + -4.3580460548400879e-01 1.4944310300052166e-02 + + + <_> + + 0 -1 136 -3.1404230743646622e-02 + + + 6.9523447751998901e-01 -5.4854288697242737e-02 + + + <_> + + 0 -1 137 -1.4607949554920197e-01 + + + -2.5650060176849365e-01 5.6956540793180466e-02 + + + <_> + + 0 -1 138 2.1142649929970503e-03 + + + -2.4987550079822540e-01 1.6792559623718262e-01 + + + <_> + + 0 -1 139 -1.5119359828531742e-02 + + + -3.0179870128631592e-01 1.0393589735031128e-01 + + + <_> + + 0 -1 140 2.5620959699153900e-02 + + + -7.4821300804615021e-02 5.3600782155990601e-01 + + + <_> + + 0 -1 141 -1.4417800307273865e-01 + + + -2.0490899682044983e-01 7.4457786977291107e-02 + + + <_> + + 0 -1 142 2.5954779237508774e-02 + + + -9.0574868023395538e-02 4.8442208766937256e-01 + + + <_> + + 0 -1 143 -2.1130720153450966e-02 + + + -2.2689810395240784e-01 6.4876057207584381e-02 + + + <_> + + 0 -1 144 1.6474459320306778e-02 + + + 1.0768000036478043e-01 -3.6570599675178528e-01 + + + <_> + + 0 -1 145 1.0922150313854218e-01 + + + 5.6827351450920105e-02 -3.4728559851646423e-01 + + + <_> + + 0 -1 146 -7.4581061198841780e-05 + + + 1.3904270529747009e-01 -2.5942608714103699e-01 + + + <_> + + 0 -1 147 -2.7753600850701332e-02 + + + 3.8111299276351929e-01 -4.2896129190921783e-02 + + + <_> + + 0 -1 148 3.2721430063247681e-02 + + + -9.0872153639793396e-02 3.9289179444313049e-01 + + + <_> + + 0 -1 149 5.5606258101761341e-03 + + + 8.4002248942852020e-02 -1.9396039843559265e-01 + + + <_> + + 0 -1 150 -1.0710290074348450e-01 + + + -5.8981472253799438e-01 5.6862760335206985e-02 + + + <_> + + 0 -1 151 -8.0517623573541641e-03 + + + 1.1790599673986435e-01 -1.1595659703016281e-01 + + + <_> + + 0 -1 152 -1.3850019872188568e-01 + + + -9.0805321931838989e-01 4.1411358863115311e-02 + + + <_> + + 0 -1 153 2.8620919212698936e-02 + + + 1.9928589463233948e-02 -7.3697662353515625e-01 + + + <_> + + 0 -1 154 2.6208970695734024e-02 + + + -6.1577551066875458e-02 6.0899931192398071e-01 + + + <_> + + 0 -1 155 2.6527039706707001e-02 + + + 5.7193860411643982e-02 -6.2992326915264130e-02 + + + <_> + + 0 -1 156 -4.4622488319873810e-02 + + + -3.3318150043487549e-01 9.3214571475982666e-02 + + + <_> + + 0 -1 157 -1.4283119700849056e-02 + + + 1.9125230610370636e-01 -1.1530569940805435e-01 + + + <_> + + 0 -1 158 -1.9681209232658148e-03 + + + -3.1295120716094971e-01 9.9682807922363281e-02 + + + <_> + + 0 -1 159 5.2851080894470215e-02 + + + -5.8919548988342285e-02 5.7887911796569824e-01 + + + <_> + + 0 -1 160 -6.3711861148476601e-03 + + + 1.9182190299034119e-01 -1.9094540178775787e-01 + + + <_> + + 0 -1 161 -6.4727910794317722e-03 + + + -2.4721039831638336e-01 1.2252929806709290e-01 + + + <_> + + 0 -1 162 -1.6690989956259727e-02 + + + -4.9174660444259644e-01 5.0315100699663162e-02 + + + <_> + + 0 -1 163 -1.4882409945130348e-02 + + + 1.9646610319614410e-01 -5.8250389993190765e-02 + + + <_> + + 0 -1 164 1.7529709264636040e-02 + + + 7.6357498764991760e-02 -3.6559268832206726e-01 + + + <_> + + 0 -1 165 4.2221389710903168e-02 + + + -3.1560491770505905e-02 3.6011269688606262e-01 + + + <_> + + 0 -1 166 -6.5581746399402618e-02 + + + 3.4334710240364075e-01 -8.8556960225105286e-02 + + + <_> + + 0 -1 167 1.6703210771083832e-02 + + + 4.8210039734840393e-02 -1.5273620188236237e-01 + + + <_> + + 0 -1 168 -6.9328742101788521e-03 + + + -3.0573639273643494e-01 1.1821140348911285e-01 + + + + + <_> + 46 + -1.0648390054702759e+00 + + <_> + + 0 -1 169 -6.3434438779950142e-03 + + + 3.3840280771255493e-01 -3.3474850654602051e-01 + + + <_> + + 0 -1 170 5.2472548559308052e-03 + + + -9.3596532940864563e-02 1.6791179776191711e-01 + + + <_> + + 0 -1 171 -3.6585088819265366e-02 + + + 5.3676098585128784e-01 -8.5433527827262878e-02 + + + <_> + + 0 -1 172 5.3153699263930321e-03 + + + -1.2804119288921356e-01 1.4443910121917725e-01 + + + <_> + + 0 -1 173 -3.9569609798491001e-03 + + + 1.8605449795722961e-01 -2.2311410307884216e-01 + + + <_> + + 0 -1 174 3.3965419977903366e-02 + + + 2.7835709974169731e-02 -5.1203387975692749e-01 + + + <_> + + 0 -1 175 -1.4852879568934441e-02 + + + -4.6814951300621033e-01 1.1351560056209564e-01 + + + <_> + + 0 -1 176 -2.9641329310834408e-03 + + + 2.6591798663139343e-01 -2.8183770179748535e-01 + + + <_> + + 0 -1 177 -1.0795590281486511e-01 + + + -5.7527697086334229e-01 1.0991639643907547e-01 + + + <_> + + 0 -1 178 2.1237600594758987e-02 + + + -1.0451590269804001e-01 4.6613770723342896e-01 + + + <_> + + 0 -1 179 -2.6189640164375305e-02 + + + 4.2544820904731750e-01 -9.2278912663459778e-02 + + + <_> + + 0 -1 180 -3.5010561347007751e-02 + + + -7.1801197528839111e-01 7.2877250611782074e-02 + + + <_> + + 0 -1 181 1.5026619621494319e-05 + + + -2.7199760079383850e-01 1.0682159662246704e-01 + + + <_> + + 0 -1 182 -2.7760250493884087e-02 + + + -5.0185692310333252e-01 1.0118210315704346e-01 + + + <_> + + 0 -1 183 -3.7439178675413132e-02 + + + -3.7141519784927368e-01 8.3709038794040680e-02 + + + <_> + + 0 -1 184 -1.4152259565889835e-02 + + + 3.0982801318168640e-01 -7.3767662048339844e-02 + + + <_> + + 0 -1 185 -1.2331079691648483e-02 + + + -3.9507681131362915e-01 8.3215177059173584e-02 + + + <_> + + 0 -1 186 2.6666349731385708e-03 + + + -1.3776129484176636e-01 2.4245689809322357e-01 + + + <_> + + 0 -1 187 -2.9443199746310711e-03 + + + 2.4460780620574951e-01 -1.3937890529632568e-01 + + + <_> + + 0 -1 188 -1.5788920223712921e-01 + + + -5.6832242012023926e-01 3.6140721291303635e-02 + + + <_> + + 0 -1 189 2.1553030237555504e-03 + + + 8.3660557866096497e-02 -4.1380259394645691e-01 + + + <_> + + 0 -1 190 -8.5367091000080109e-02 + + + -5.7053291797637939e-01 5.2995659410953522e-02 + + + <_> + + 0 -1 191 3.4761740826070309e-03 + + + -1.2189819663763046e-01 2.6553291082382202e-01 + + + <_> + + 0 -1 192 -2.4104220792651176e-02 + + + -5.2315437793731689e-01 2.5505660101771355e-02 + + + <_> + + 0 -1 193 -3.0729150399565697e-02 + + + -4.6735408902168274e-01 7.0844426751136780e-02 + + + <_> + + 0 -1 194 -1.1937420349568129e-03 + + + 1.4596860110759735e-01 -2.3086270689964294e-01 + + + <_> + + 0 -1 195 3.2304100692272186e-02 + + + -6.5350927412509918e-02 5.5091381072998047e-01 + + + <_> + + 0 -1 196 1.4955499768257141e-01 + + + 1.5002089552581310e-02 -8.9400452375411987e-01 + + + <_> + + 0 -1 197 -4.7254669480025768e-03 + + + 1.4857460558414459e-01 -2.1019940078258514e-01 + + + <_> + + 0 -1 198 3.6360718309879303e-02 + + + 2.8547950088977814e-02 -6.3668930530548096e-01 + + + <_> + + 0 -1 199 -2.7109999209642410e-02 + + + 4.9661910533905029e-01 -7.3661573231220245e-02 + + + <_> + + 0 -1 200 -9.5398407429456711e-03 + + + -1.9384680688381195e-01 5.8507081121206284e-02 + + + <_> + + 0 -1 201 1.0541989654302597e-01 + + + -7.4785731732845306e-02 4.3781110644340515e-01 + + + <_> + + 0 -1 202 6.3801761716604233e-03 + + + 5.3971529006958008e-02 -3.3829790353775024e-01 + + + <_> + + 0 -1 203 -2.2759849205613136e-02 + + + -5.9374898672103882e-01 4.8046529293060303e-02 + + + <_> + + 0 -1 204 -1.7323749139904976e-02 + + + -1.6034699976444244e-01 1.5187160111963749e-02 + + + <_> + + 0 -1 205 2.9854409396648407e-02 + + + -6.5698243677616119e-02 4.5057341456413269e-01 + + + <_> + + 0 -1 206 2.3269839584827423e-02 + + + 3.8805499672889709e-02 -3.5354879498481750e-01 + + + <_> + + 0 -1 207 4.0833871811628342e-02 + + + 4.9404840916395187e-02 -5.6222450733184814e-01 + + + <_> + + 0 -1 208 -1.2498889863491058e-01 + + + 6.7763668298721313e-01 -1.5484940260648727e-02 + + + <_> + + 0 -1 209 -6.5579377114772797e-02 + + + 6.7363232374191284e-01 -4.5269690454006195e-02 + + + <_> + + 0 -1 210 -3.7901759147644043e-01 + + + -4.9853721261024475e-01 2.3955229669809341e-02 + + + <_> + + 0 -1 211 2.9792459681630135e-03 + + + -1.8436419963836670e-01 1.6265830397605896e-01 + + + <_> + + 0 -1 212 1.3803659938275814e-02 + + + 6.3698217272758484e-02 -4.3389800190925598e-01 + + + <_> + + 0 -1 213 3.5606899764388800e-03 + + + -1.1455070227384567e-01 2.3618610203266144e-01 + + + <_> + + 0 -1 214 8.8772783055901527e-03 + + + 8.6416840553283691e-02 -1.7590980231761932e-01 + + + + + <_> + 45 + -9.5069932937622070e-01 + + <_> + + 0 -1 215 -6.7344820126891136e-03 + + + 3.0758589506149292e-01 -2.9761791229248047e-01 + + + <_> + + 0 -1 216 -1.3902880251407623e-02 + + + 2.0400699973106384e-01 -2.2967250645160675e-01 + + + <_> + + 0 -1 217 -4.1963551193475723e-02 + + + -5.6575411558151245e-01 8.6745493113994598e-02 + + + <_> + + 0 -1 218 -5.9794791013700888e-05 + + + 1.5832610428333282e-01 -2.3109050095081329e-01 + + + <_> + + 0 -1 219 8.4739532321691513e-03 + + + -1.1501230299472809e-01 3.9758589863777161e-01 + + + <_> + + 0 -1 220 -6.5317057073116302e-02 + + + -2.3887279629707336e-01 1.1391709744930267e-01 + + + <_> + + 0 -1 221 -4.2358501814305782e-03 + + + 2.2337220609188080e-01 -2.4218839406967163e-01 + + + <_> + + 0 -1 222 4.6229299157857895e-02 + + + 9.6837401390075684e-02 -5.3427702188491821e-01 + + + <_> + + 0 -1 223 5.2246701670810580e-05 + + + -2.4189360439777374e-01 1.5932360291481018e-01 + + + <_> + + 0 -1 224 -4.1420090943574905e-02 + + + -3.4044981002807617e-01 4.3712481856346130e-02 + + + <_> + + 0 -1 225 -1.0224279947578907e-02 + + + -2.4752390384674072e-01 1.5512530505657196e-01 + + + <_> + + 0 -1 226 6.8581208586692810e-02 + + + 9.7173796966671944e-03 -6.1821222305297852e-01 + + + <_> + + 0 -1 227 -4.0700301527976990e-02 + + + -6.0284787416458130e-01 7.0963069796562195e-02 + + + <_> + + 0 -1 228 -8.9998699724674225e-02 + + + 4.6664720773696899e-01 -4.8549890518188477e-02 + + + <_> + + 0 -1 229 1.5307360328733921e-02 + + + 1.4783670008182526e-01 -2.7114608883857727e-01 + + + <_> + + 0 -1 230 3.7016849964857101e-03 + + + -1.5153409540653229e-01 2.0931409299373627e-01 + + + <_> + + 0 -1 231 -3.1937099993228912e-02 + + + -7.2332257032394409e-01 3.7420161068439484e-02 + + + <_> + + 0 -1 232 4.7493908554315567e-02 + + + 4.9000091850757599e-02 -4.8303189873695374e-01 + + + <_> + + 0 -1 233 4.4620381668210030e-03 + + + -1.7698319256305695e-01 1.9820910692214966e-01 + + + <_> + + 0 -1 234 -8.1284176558256149e-03 + + + 1.1222189664840698e-01 -5.0805520266294479e-02 + + + <_> + + 0 -1 235 -1.2596019543707371e-02 + + + 4.3889060616493225e-01 -8.2898952066898346e-02 + + + <_> + + 0 -1 236 -1.0689930059015751e-03 + + + 6.8766087293624878e-02 -8.2667008042335510e-02 + + + <_> + + 0 -1 237 -4.8213090747594833e-02 + + + -4.6671348810195923e-01 7.4310712516307831e-02 + + + <_> + + 0 -1 238 -2.3418650380335748e-04 + + + 8.8725142180919647e-02 -1.0919640213251114e-01 + + + <_> + + 0 -1 239 1.0095000267028809e-01 + + + 5.5444270372390747e-02 -5.5205368995666504e-01 + + + <_> + + 0 -1 240 3.2340411096811295e-02 + + + 4.9762740731239319e-02 -3.6636400222778320e-01 + + + <_> + + 0 -1 241 1.7699210345745087e-01 + + + -7.3765642940998077e-02 5.4300791025161743e-01 + + + <_> + + 0 -1 242 -1.8634319712873548e-04 + + + 9.5718666911125183e-02 -1.8214109539985657e-01 + + + <_> + + 0 -1 243 6.6473139449954033e-03 + + + -1.2173130363225937e-01 3.0331039428710938e-01 + + + <_> + + 0 -1 244 -9.9276658147573471e-03 + + + 3.2638520002365112e-01 -8.8533706963062286e-02 + + + <_> + + 0 -1 245 5.2587099373340607e-02 + + + 1.1303950101137161e-01 -3.3436870574951172e-01 + + + <_> + + 0 -1 246 4.9553681164979935e-03 + + + -1.3183289766311646e-01 9.7614809870719910e-02 + + + <_> + + 0 -1 247 -2.3817660287022591e-02 + + + -4.1027650237083435e-01 8.4849812090396881e-02 + + + <_> + + 0 -1 248 -1.1363780125975609e-02 + + + 1.8874420225620270e-01 -8.3536416292190552e-02 + + + <_> + + 0 -1 249 -1.9515539752319455e-03 + + + 1.8985089659690857e-01 -1.7776779830455780e-01 + + + <_> + + 0 -1 250 -1.3576669618487358e-02 + + + 2.0975759625434875e-01 -3.7115450948476791e-02 + + + <_> + + 0 -1 251 1.6466820612549782e-02 + + + -8.2349412143230438e-02 3.8047221302986145e-01 + + + <_> + + 0 -1 252 -1.0136260092258453e-01 + + + -1.1633230000734329e-01 6.7804910242557526e-02 + + + <_> + + 0 -1 253 -1.0248430073261261e-01 + + + -2.8850209712982178e-01 1.2139680236577988e-01 + + + <_> + + 0 -1 254 -2.8717568516731262e-01 + + + 4.6935141086578369e-01 -8.2954309880733490e-02 + + + <_> + + 0 -1 255 5.0812978297472000e-02 + + + 5.5393878370523453e-02 -6.2383282184600830e-01 + + + <_> + + 0 -1 256 9.1063417494297028e-02 + + + -2.3379560559988022e-02 4.7155299782752991e-01 + + + <_> + + 0 -1 257 -5.1845338195562363e-02 + + + -6.9031542539596558e-01 4.5454118400812149e-02 + + + <_> + + 0 -1 258 1.5031239390373230e-01 + + + 4.5906711369752884e-02 -5.2067738771438599e-01 + + + <_> + + 0 -1 259 4.1596319526433945e-02 + + + 5.3706299513578415e-02 -4.8782169818878174e-01 + + + + + <_> + 43 + -8.5045951604843140e-01 + + <_> + + 0 -1 260 -5.9847710654139519e-03 + + + 2.7858960628509521e-01 -3.0923390388488770e-01 + + + <_> + + 0 -1 261 -3.9032639469951391e-03 + + + 2.2257049381732941e-01 -2.8928229212760925e-01 + + + <_> + + 0 -1 262 -2.2362179151969030e-05 + + + 1.4084370434284210e-01 -3.0143168568611145e-01 + + + <_> + + 0 -1 263 -9.1167002916336060e-02 + + + -6.7608010768890381e-01 5.6040819734334946e-02 + + + <_> + + 0 -1 264 5.2755638957023621e-02 + + + 7.4688747525215149e-02 -6.3256257772445679e-01 + + + <_> + + 0 -1 265 6.9458536803722382e-02 + + + -1.1754920333623886e-01 6.3863641023635864e-01 + + + <_> + + 0 -1 266 -4.8209438100457191e-03 + + + 2.9225930571556091e-01 -1.3872410356998444e-01 + + + <_> + + 0 -1 267 3.2156750559806824e-02 + + + 7.5575239956378937e-02 -5.7927912473678589e-01 + + + <_> + + 0 -1 268 -4.4298470020294189e-02 + + + 4.0226811170578003e-01 -1.0264609754085541e-01 + + + <_> + + 0 -1 269 -7.0452108047902584e-03 + + + 1.5128499269485474e-01 -5.6725870817899704e-02 + + + <_> + + 0 -1 270 5.1606830675154924e-04 + + + -2.3022100329399109e-01 1.6343879699707031e-01 + + + <_> + + 0 -1 271 -6.1528358608484268e-02 + + + 2.5559040904045105e-01 -4.6751510351896286e-02 + + + <_> + + 0 -1 272 -5.1367811858654022e-02 + + + -2.4755829572677612e-01 1.4305450022220612e-01 + + + <_> + + 0 -1 273 9.0107098221778870e-03 + + + -1.0648769885301590e-01 3.1271860003471375e-01 + + + <_> + + 0 -1 274 2.2352259606122971e-02 + + + 1.5494219958782196e-01 -3.1736290454864502e-01 + + + <_> + + 0 -1 275 3.1493891030550003e-02 + + + 7.2037532925605774e-02 -2.8946670889854431e-01 + + + <_> + + 0 -1 276 -5.2064459770917892e-02 + + + -2.7082020044326782e-01 1.2260189652442932e-01 + + + <_> + + 0 -1 277 -6.1549381352961063e-03 + + + 1.6442950069904327e-01 -1.0657779872417450e-01 + + + <_> + + 0 -1 278 3.0305041000247002e-03 + + + -1.5234139561653137e-01 2.0446379482746124e-01 + + + <_> + + 0 -1 279 -6.8027540110051632e-03 + + + 7.1448147296905518e-02 -4.1458301246166229e-02 + + + <_> + + 0 -1 280 6.8647533655166626e-02 + + + -5.2833538502454758e-02 5.7638901472091675e-01 + + + <_> + + 0 -1 281 -9.2883080244064331e-02 + + + -2.6236709952354431e-01 8.2425810396671295e-02 + + + <_> + + 0 -1 282 -5.2907038480043411e-03 + + + 1.4090450108051300e-01 -2.2050650417804718e-01 + + + <_> + + 0 -1 283 1.5640209894627333e-03 + + + -1.0143549740314484e-01 1.3026970624923706e-01 + + + <_> + + 0 -1 284 1.0752620175480843e-02 + + + 9.1515362262725830e-02 -3.2133978605270386e-01 + + + <_> + + 0 -1 285 -2.1106360480189323e-02 + + + -2.7410230040550232e-01 9.1773197054862976e-03 + + + <_> + + 0 -1 286 4.8663117922842503e-03 + + + -1.5258720517158508e-01 1.9711069762706757e-01 + + + <_> + + 0 -1 287 6.5396472811698914e-02 + + + 6.5921088680624962e-03 -6.4343088865280151e-01 + + + <_> + + 0 -1 288 4.4902609661221504e-03 + + + -1.0377249866724014e-01 2.8005209565162659e-01 + + + <_> + + 0 -1 289 4.6614840626716614e-02 + + + 5.4715849459171295e-02 -5.2179151773452759e-01 + + + <_> + + 0 -1 290 1.1597450077533722e-01 + + + 3.9613999426364899e-02 -6.4784902334213257e-01 + + + <_> + + 0 -1 291 5.7222661562263966e-03 + + + -5.4838169366121292e-02 1.2828019261360168e-01 + + + <_> + + 0 -1 292 -4.1633259505033493e-02 + + + -8.0665838718414307e-01 3.5942289978265762e-02 + + + <_> + + 0 -1 293 -4.7252390533685684e-02 + + + -7.9193192720413208e-01 1.2737370096147060e-02 + + + <_> + + 0 -1 294 -1.6451090341433883e-03 + + + 2.0376729965209961e-01 -1.3230639696121216e-01 + + + <_> + + 0 -1 295 2.5758889969438314e-03 + + + -6.3503406941890717e-02 1.3530080020427704e-01 + + + <_> + + 0 -1 296 2.0758589729666710e-02 + + + 4.7286979854106903e-02 -5.8212000131607056e-01 + + + <_> + + 0 -1 297 -2.8601480647921562e-02 + + + -4.1221970319747925e-01 2.4210980162024498e-02 + + + <_> + + 0 -1 298 -2.8691580519080162e-02 + + + -5.5404680967330933e-01 4.5068629086017609e-02 + + + <_> + + 0 -1 299 -2.6637869887053967e-03 + + + 1.2570230662822723e-01 -1.6319499909877777e-01 + + + <_> + + 0 -1 300 -4.4750720262527466e-03 + + + -2.7138069272041321e-01 1.0293100029230118e-01 + + + <_> + + 0 -1 301 4.0937099605798721e-02 + + + -3.2065469771623611e-02 1.3092640042304993e-01 + + + <_> + + 0 -1 302 7.5827181339263916e-02 + + + -5.1221519708633423e-02 5.6596297025680542e-01 + + + + + <_> + 58 + -9.1252201795578003e-01 + + <_> + + 0 -1 303 -4.2669968679547310e-03 + + + 1.7704419791698456e-01 -2.8265419602394104e-01 + + + <_> + + 0 -1 304 -2.2577939555048943e-02 + + + 2.3657959699630737e-01 -4.2326368391513824e-02 + + + <_> + + 0 -1 305 -9.8107997328042984e-03 + + + -3.8568308949470520e-01 9.0982303023338318e-02 + + + <_> + + 0 -1 306 3.8510379381477833e-03 + + + -1.0270400345325470e-01 1.9267590343952179e-01 + + + <_> + + 0 -1 307 -2.0688450895249844e-03 + + + 1.6656570136547089e-01 -2.1394389867782593e-01 + + + <_> + + 0 -1 308 -5.8368500322103500e-02 + + + 3.4833571314811707e-01 -8.0605462193489075e-02 + + + <_> + + 0 -1 309 5.6290920823812485e-02 + + + -6.1617989093065262e-02 6.9421827793121338e-01 + + + <_> + + 0 -1 310 5.5776340886950493e-03 + + + 7.8374862670898438e-02 -4.0764930844306946e-01 + + + <_> + + 0 -1 311 5.0974669866263866e-03 + + + 1.5001790225505829e-01 -2.7620849013328552e-01 + + + <_> + + 0 -1 312 2.4134019389748573e-02 + + + -3.7685971707105637e-02 4.0111309289932251e-01 + + + <_> + + 0 -1 313 2.6251180097460747e-03 + + + -1.8986889719963074e-01 1.6666570305824280e-01 + + + <_> + + 0 -1 314 -2.3179719224572182e-02 + + + -6.0807460546493530e-01 3.3016931265592575e-02 + + + <_> + + 0 -1 315 -1.7960369586944580e-03 + + + 1.8328389525413513e-01 -1.6300560534000397e-01 + + + <_> + + 0 -1 316 1.1327250301837921e-01 + + + 1.6392359510064125e-02 -3.8521450757980347e-01 + + + <_> + + 0 -1 317 -1.1120930314064026e-02 + + + -2.6789391040802002e-01 1.2030880153179169e-01 + + + <_> + + 0 -1 318 8.9298561215400696e-03 + + + -6.4766243100166321e-02 5.2446700632572174e-02 + + + <_> + + 0 -1 319 3.0264519155025482e-02 + + + -5.3343709558248520e-02 4.9170601367950439e-01 + + + <_> + + 0 -1 320 1.3036240637302399e-01 + + + 9.9123492836952209e-03 -8.0775249004364014e-01 + + + <_> + + 0 -1 321 -4.8941900022327900e-03 + + + 1.4153289794921875e-01 -2.4222679436206818e-01 + + + <_> + + 0 -1 322 -1.8009349703788757e-02 + + + -1.8352709710597992e-01 5.3784269839525223e-02 + + + <_> + + 0 -1 323 6.3028637669049203e-05 + + + -2.0836220681667328e-01 1.3861179351806641e-01 + + + <_> + + 0 -1 324 -3.8127291202545166e-01 + + + -7.6527822017669678e-01 3.4578099846839905e-02 + + + <_> + + 0 -1 325 1.6168570145964622e-02 + + + -7.8577049076557159e-02 3.6086350679397583e-01 + + + <_> + + 0 -1 326 -2.0725380629301071e-02 + + + -3.2905191183090210e-01 8.1693336367607117e-02 + + + <_> + + 0 -1 327 -1.4763489889446646e-04 + + + 1.0449170321226120e-01 -2.7624139189720154e-01 + + + <_> + + 0 -1 328 -1.6959169879555702e-02 + + + -2.4150790274143219e-01 5.4569680243730545e-02 + + + <_> + + 0 -1 329 -1.5221100300550461e-02 + + + 4.1033148765563965e-01 -6.8333253264427185e-02 + + + <_> + + 0 -1 330 -9.6041243523359299e-03 + + + -3.3569648861885071e-01 8.6250491440296173e-02 + + + <_> + + 0 -1 331 -1.6476860037073493e-03 + + + 1.6236330568790436e-01 -1.9044490158557892e-01 + + + <_> + + 0 -1 332 -1.0705839842557907e-01 + + + -8.6767107248306274e-01 7.3941340669989586e-03 + + + <_> + + 0 -1 333 -1.8818160519003868e-02 + + + -3.6879110336303711e-01 6.8846642971038818e-02 + + + <_> + + 0 -1 334 -5.6142187677323818e-03 + + + 1.7322039604187012e-01 -1.2514470517635345e-01 + + + <_> + + 0 -1 335 7.3969298973679543e-03 + + + -8.5467368364334106e-02 3.2027161121368408e-01 + + + <_> + + 0 -1 336 9.4870915636420250e-03 + + + 6.3168406486511230e-02 -2.0918910205364227e-01 + + + <_> + + 0 -1 337 1.8458140548318624e-03 + + + -1.5436279773712158e-01 1.8517020344734192e-01 + + + <_> + + 0 -1 338 -1.9747359678149223e-02 + + + 3.3071118593215942e-01 -7.6775848865509033e-02 + + + <_> + + 0 -1 339 3.2421160489320755e-02 + + + 8.2021132111549377e-02 -4.0147501230239868e-01 + + + <_> + + 0 -1 340 2.9075390193611383e-03 + + + -7.7174037694931030e-02 1.0620699822902679e-01 + + + <_> + + 0 -1 341 1.5189359895884991e-02 + + + 6.0363899916410446e-02 -4.1365239024162292e-01 + + + <_> + + 0 -1 342 -3.0683739110827446e-02 + + + 4.3470621109008789e-01 -5.9381321072578430e-02 + + + <_> + + 0 -1 343 -1.0973449796438217e-02 + + + -2.9535230994224548e-01 8.5516467690467834e-02 + + + <_> + + 0 -1 344 -3.9540361613035202e-02 + + + -2.8765881061553955e-01 3.4472968429327011e-02 + + + <_> + + 0 -1 345 -3.7935871630907059e-02 + + + 3.8199868798255920e-01 -8.5364766418933868e-02 + + + <_> + + 0 -1 346 3.0669810250401497e-02 + + + 4.4738098978996277e-02 -1.7703640460968018e-01 + + + <_> + + 0 -1 347 1.7194509506225586e-01 + + + -5.9214178472757339e-02 4.9291038513183594e-01 + + + <_> + + 0 -1 348 -6.7055500112473965e-03 + + + 1.6410259902477264e-01 -2.1826469898223877e-01 + + + <_> + + 0 -1 349 -3.8577869534492493e-01 + + + -6.7176771163940430e-01 4.2349591851234436e-02 + + + <_> + + 0 -1 350 2.7213040739297867e-02 + + + 1.2266149744391441e-02 -2.2954210638999939e-01 + + + <_> + + 0 -1 351 -1.9294980913400650e-02 + + + -5.8373439311981201e-01 3.8380999118089676e-02 + + + <_> + + 0 -1 352 7.6792249456048012e-03 + + + -4.7490350902080536e-02 1.5964460372924805e-01 + + + <_> + + 0 -1 353 6.0242269682930782e-05 + + + -1.1734239757061005e-01 1.8236650526523590e-01 + + + <_> + + 0 -1 354 -6.6498141677584499e-05 + + + 7.4745140969753265e-02 -1.6989439725875854e-01 + + + <_> + + 0 -1 355 4.3275849893689156e-03 + + + 7.3789797723293304e-02 -2.8444349765777588e-01 + + + <_> + + 0 -1 356 -3.3140469342470169e-02 + + + -4.0606608986854553e-01 1.0028730146586895e-02 + + + <_> + + 0 -1 357 9.9181402474641800e-03 + + + -7.9339787364006042e-02 2.8190010786056519e-01 + + + <_> + + 0 -1 358 -2.3577339015901089e-03 + + + 1.5301220118999481e-01 -1.0475979745388031e-01 + + + <_> + + 0 -1 359 -2.6200819760560989e-02 + + + -5.4185032844543457e-01 4.4369250535964966e-02 + + + <_> + + 0 -1 360 4.7328658401966095e-02 + + + 1.8897749483585358e-02 -8.2665932178497314e-01 + + + + + <_> + 44 + -1.1653599739074707e+00 + + <_> + + 0 -1 361 2.9921719804406166e-02 + + + -3.2315000891685486e-01 5.1092821359634399e-01 + + + <_> + + 0 -1 362 5.6147608906030655e-02 + + + -1.2574400007724762e-01 6.6749179363250732e-01 + + + <_> + + 0 -1 363 -1.3759849593043327e-02 + + + 4.0691190958023071e-01 -2.1075299382209778e-01 + + + <_> + + 0 -1 364 -4.3788701295852661e-03 + + + 2.7940139174461365e-01 -2.0955459773540497e-01 + + + <_> + + 0 -1 365 1.9208889454603195e-02 + + + -8.9800693094730377e-02 5.0936561822891235e-01 + + + <_> + + 0 -1 366 -8.9393591042608023e-04 + + + 1.0703620314598083e-01 -1.2294200062751770e-01 + + + <_> + + 0 -1 367 -6.2918022740632296e-04 + + + -3.7847930192947388e-01 1.3008819520473480e-01 + + + <_> + + 0 -1 368 -1.6248769825324416e-03 + + + 1.7750020325183868e-01 -2.7811211347579956e-01 + + + <_> + + 0 -1 369 -4.6151960268616676e-03 + + + 2.4071510136127472e-01 -1.4269010722637177e-01 + + + <_> + + 0 -1 370 5.7162828743457794e-02 + + + -1.8474869430065155e-02 4.5086058974266052e-01 + + + <_> + + 0 -1 371 -3.8265369366854429e-03 + + + 2.5951761007308960e-01 -1.1455159634351730e-01 + + + <_> + + 0 -1 372 -4.5235190540552139e-02 + + + -3.3849009871482849e-01 3.4538950771093369e-02 + + + <_> + + 0 -1 373 3.8135750219225883e-03 + + + 1.1333999782800674e-01 -2.7620390057563782e-01 + + + <_> + + 0 -1 374 4.5108258724212646e-02 + + + 2.8602050617337227e-02 -1.5837669372558594e-01 + + + <_> + + 0 -1 375 -2.7794970665127039e-03 + + + 2.8897428512573242e-01 -1.0822720080614090e-01 + + + <_> + + 0 -1 376 5.6366869248449802e-03 + + + -1.0184790194034576e-01 7.8787103295326233e-02 + + + <_> + + 0 -1 377 -5.2986819297075272e-02 + + + 5.2964997291564941e-01 -6.5543353557586670e-02 + + + <_> + + 0 -1 378 7.4737891554832458e-02 + + + 2.6320660486817360e-02 -3.0487209558486938e-01 + + + <_> + + 0 -1 379 4.1559520177543163e-03 + + + -2.2977170348167419e-01 1.5662179887294769e-01 + + + <_> + + 0 -1 380 -2.9388200491666794e-03 + + + -1.6916410624980927e-01 9.6996672451496124e-02 + + + <_> + + 0 -1 381 -1.3065510429441929e-02 + + + 4.0258568525314331e-01 -7.1614369750022888e-02 + + + <_> + + 0 -1 382 -3.4928251057863235e-02 + + + -4.9449989199638367e-01 2.2547820582985878e-02 + + + <_> + + 0 -1 383 2.1728971041738987e-03 + + + -1.5552569925785065e-01 2.0136219263076782e-01 + + + <_> + + 0 -1 384 1.4387349598109722e-02 + + + 3.6348100751638412e-02 -2.9468619823455811e-01 + + + <_> + + 0 -1 385 6.7830132320523262e-03 + + + -8.2248352468013763e-02 3.3857500553131104e-01 + + + <_> + + 0 -1 386 -7.2883836925029755e-02 + + + -3.4577670693397522e-01 1.9601320847868919e-02 + + + <_> + + 0 -1 387 -4.5158518478274345e-03 + + + 1.7059490084648132e-01 -1.9742819666862488e-01 + + + <_> + + 0 -1 388 -1.3742079958319664e-02 + + + -2.1214349567890167e-01 3.3953689038753510e-02 + + + <_> + + 0 -1 389 7.8056701458990574e-03 + + + 7.1426697075366974e-02 -3.4223988652229309e-01 + + + <_> + + 0 -1 390 2.1649990230798721e-02 + + + -6.1925049871206284e-02 3.7267661094665527e-01 + + + <_> + + 0 -1 391 -6.7706637084484100e-02 + + + -3.0304160714149475e-01 9.4357587397098541e-02 + + + <_> + + 0 -1 392 -2.1855749655514956e-03 + + + 1.0831770300865173e-01 -1.5530540049076080e-01 + + + <_> + + 0 -1 393 -2.5483060162514448e-03 + + + -2.4103440344333649e-01 9.2916287481784821e-02 + + + <_> + + 0 -1 394 -6.7207813262939453e-02 + + + -6.6259348392486572e-01 1.6074649989604950e-02 + + + <_> + + 0 -1 395 4.7799371182918549e-02 + + + -4.4412638992071152e-02 6.0569787025451660e-01 + + + <_> + + 0 -1 396 -9.1178417205810547e-02 + + + 2.4761490523815155e-01 -3.4762401133775711e-02 + + + <_> + + 0 -1 397 -3.8592480123043060e-03 + + + -2.5366741418838501e-01 1.0194999724626541e-01 + + + <_> + + 0 -1 398 2.4100970476865768e-03 + + + -1.2133970111608505e-01 1.9767910242080688e-01 + + + <_> + + 0 -1 399 -5.3831469267606735e-03 + + + 1.7103940248489380e-01 -1.6189830005168915e-01 + + + <_> + + 0 -1 400 9.1004222631454468e-03 + + + -6.0921549797058105e-02 1.7695249617099762e-01 + + + <_> + + 0 -1 401 2.2724110167473555e-03 + + + -9.0476967394351959e-02 2.7440631389617920e-01 + + + <_> + + 0 -1 402 -8.0621562898159027e-02 + + + -8.8045567274093628e-01 1.7193239182233810e-02 + + + <_> + + 0 -1 403 3.8965709973126650e-03 + + + -1.7037920653820038e-01 1.7979580163955688e-01 + + + <_> + + 0 -1 404 -4.3093641288578510e-03 + + + -2.9382050037384033e-01 8.6317472159862518e-02 + + + + + <_> + 44 + -9.4284927845001221e-01 + + <_> + + 0 -1 405 -6.3116192817687988e-02 + + + 5.5512517690658569e-01 -3.5997709631919861e-01 + + + <_> + + 0 -1 406 8.4350287914276123e-02 + + + -1.2531270086765289e-01 5.3567689657211304e-01 + + + <_> + + 0 -1 407 -2.1390730142593384e-01 + + + 7.5156861543655396e-01 -8.8270872831344604e-02 + + + <_> + + 0 -1 408 -2.9744980856776237e-02 + + + 2.0106209814548492e-01 -1.2106689810752869e-01 + + + <_> + + 0 -1 409 -1.1987680196762085e-01 + + + 6.4692199230194092e-01 -7.7747613191604614e-02 + + + <_> + + 0 -1 410 3.0843529384583235e-03 + + + -6.3067637383937836e-02 7.7889077365398407e-02 + + + <_> + + 0 -1 411 -4.5560211874544621e-03 + + + 1.8972270190715790e-01 -1.9929079711437225e-01 + + + <_> + + 0 -1 412 4.4629329931922257e-04 + + + 1.4051589369773865e-01 -3.0292418599128723e-01 + + + <_> + + 0 -1 413 -6.4954371191561222e-03 + + + 3.1942290067672729e-01 -1.1072000116109848e-01 + + + <_> + + 0 -1 414 -2.1751760505139828e-03 + + + 1.6477259993553162e-01 -8.0424778163433075e-02 + + + <_> + + 0 -1 415 6.5875840373337269e-03 + + + 1.4716550707817078e-01 -3.0198150873184204e-01 + + + <_> + + 0 -1 416 2.0701209083199501e-02 + + + -4.2996689677238464e-02 4.0123820304870605e-01 + + + <_> + + 0 -1 417 2.5877119041979313e-03 + + + 1.2630540132522583e-01 -2.7518120408058167e-01 + + + <_> + + 0 -1 418 -1.0545079596340656e-02 + + + 1.9637629389762878e-01 -3.9772778749465942e-02 + + + <_> + + 0 -1 419 6.2396968714892864e-03 + + + -8.3563409745693207e-02 3.6655488610267639e-01 + + + <_> + + 0 -1 420 1.4458670280873775e-02 + + + 6.3301697373390198e-02 -5.8498907089233398e-01 + + + <_> + + 0 -1 421 3.1263440847396851e-02 + + + -1.0675270110368729e-01 3.4852859377861023e-01 + + + <_> + + 0 -1 422 1.4865349512547255e-03 + + + 1.3709670305252075e-01 -1.3731659948825836e-01 + + + <_> + + 0 -1 423 -1.7898039368446916e-04 + + + 1.7839649319648743e-01 -2.5751718878746033e-01 + + + <_> + + 0 -1 424 7.7714473009109497e-02 + + + 5.7081848382949829e-02 -2.4273400008678436e-01 + + + <_> + + 0 -1 425 2.2228270769119263e-02 + + + 1.4593790471553802e-01 -2.0994609594345093e-01 + + + <_> + + 0 -1 426 1.6969949938356876e-03 + + + -1.4418889582157135e-01 2.7375409007072449e-01 + + + <_> + + 0 -1 427 -2.0023470744490623e-02 + + + -3.7556248903274536e-01 8.1627696752548218e-02 + + + <_> + + 0 -1 428 3.8644319865852594e-03 + + + -6.4490430057048798e-02 1.5921689569950104e-01 + + + <_> + + 0 -1 429 -3.0527650378644466e-03 + + + 2.6751521229743958e-01 -1.0531850159168243e-01 + + + <_> + + 0 -1 430 5.6112320162355900e-03 + + + -6.8567730486392975e-02 2.1234990656375885e-01 + + + <_> + + 0 -1 431 4.6622268855571747e-03 + + + 1.4254149794578552e-01 -2.0892719924449921e-01 + + + <_> + + 0 -1 432 2.4710448924452066e-03 + + + 7.2614386677742004e-02 -1.8833909928798676e-01 + + + <_> + + 0 -1 433 1.2655000202357769e-02 + + + -8.3605259656906128e-02 4.3262240290641785e-01 + + + <_> + + 0 -1 434 -1.7724519595503807e-02 + + + 1.7432230710983276e-01 -2.8479820117354393e-02 + + + <_> + + 0 -1 435 -7.2321272455155849e-04 + + + 1.5343970060348511e-01 -2.4012179672718048e-01 + + + <_> + + 0 -1 436 -6.2155709601938725e-03 + + + 2.5166681408882141e-01 -8.5519887506961823e-02 + + + <_> + + 0 -1 437 4.1632771492004395e-02 + + + 5.0593800842761993e-02 -6.0965442657470703e-01 + + + <_> + + 0 -1 438 2.3918300867080688e-02 + + + -3.6809660494327545e-02 3.9055478572845459e-01 + + + <_> + + 0 -1 439 -7.4353138916194439e-03 + + + 1.5018579363822937e-01 -1.8627819418907166e-01 + + + <_> + + 0 -1 440 -2.0571449771523476e-02 + + + -2.8574559092521667e-01 4.8302378505468369e-02 + + + <_> + + 0 -1 441 -7.3831980116665363e-03 + + + 3.6680561304092407e-01 -9.6067756414413452e-02 + + + <_> + + 0 -1 442 9.7222924232482910e-03 + + + 6.3898019492626190e-02 -1.7262579500675201e-01 + + + <_> + + 0 -1 443 -2.1807629615068436e-02 + + + 1.8027269840240479e-01 -1.9109119474887848e-01 + + + <_> + + 0 -1 444 5.8147668838500977e-02 + + + 8.5709961131215096e-03 -4.6250829100608826e-01 + + + <_> + + 0 -1 445 -9.4539504498243332e-03 + + + -2.8908729553222656e-01 1.1421570181846619e-01 + + + <_> + + 0 -1 446 -2.1080709993839264e-02 + + + 3.7570050358772278e-01 -2.5591030716896057e-02 + + + <_> + + 0 -1 447 -4.0629571303725243e-03 + + + 2.7146670222282410e-01 -1.0845380276441574e-01 + + + <_> + + 0 -1 448 -1.2826620042324066e-01 + + + 1. -1.0962430387735367e-03 + + + + + <_> + 61 + -9.5620310306549072e-01 + + <_> + + 0 -1 449 -1.2662290036678314e-01 + + + 6.2268221378326416e-01 -1.4810459315776825e-01 + + + <_> + + 0 -1 450 -7.0846290327608585e-03 + + + 2.0133779942989349e-01 -1.7728950083255768e-01 + + + <_> + + 0 -1 451 1.1459200084209442e-01 + + + -8.8975846767425537e-02 5.7395541667938232e-01 + + + <_> + + 0 -1 452 3.3472150098532438e-03 + + + 7.5708203017711639e-02 -2.8222179412841797e-01 + + + <_> + + 0 -1 453 5.1924228668212891e-02 + + + -1.3948489725589752e-01 2.5681090354919434e-01 + + + <_> + + 0 -1 454 -4.1343908756971359e-02 + + + 2.2414180636405945e-01 -4.3653670698404312e-02 + + + <_> + + 0 -1 455 -3.2056469470262527e-02 + + + -5.9409761428833008e-01 5.1891159266233444e-02 + + + <_> + + 0 -1 456 -4.0590870194137096e-03 + + + 1.6402080655097961e-01 -1.5528389811515808e-01 + + + <_> + + 0 -1 457 -9.1876718215644360e-05 + + + 1.0587870329618454e-01 -2.8261598944664001e-01 + + + <_> + + 0 -1 458 2.8358219191431999e-02 + + + 5.7384029030799866e-02 -6.7094147205352783e-02 + + + <_> + + 0 -1 459 -7.4662521481513977e-02 + + + 5.6916707754135132e-01 -4.8785641789436340e-02 + + + <_> + + 0 -1 460 -3.6556490231305361e-03 + + + 2.2369490563869476e-01 -1.2202149629592896e-01 + + + <_> + + 0 -1 461 3.1778779812157154e-03 + + + 1.2240319699048996e-01 -2.7681729197502136e-01 + + + <_> + + 0 -1 462 3.8044340908527374e-02 + + + 2.3216400295495987e-02 -5.3732901811599731e-01 + + + <_> + + 0 -1 463 8.7831392884254456e-03 + + + -7.4337556958198547e-02 3.2851231098175049e-01 + + + <_> + + 0 -1 464 -5.9818099252879620e-03 + + + -1.9504779577255249e-01 6.6976852715015411e-02 + + + <_> + + 0 -1 465 -1.6369449440389872e-03 + + + 1.4674800634384155e-01 -1.8024149537086487e-01 + + + <_> + + 0 -1 466 -9.9193133413791656e-02 + + + 6.8363517522811890e-01 -2.9652720317244530e-02 + + + <_> + + 0 -1 467 -1.0352009907364845e-02 + + + 3.4225308895111084e-01 -8.1141538918018341e-02 + + + <_> + + 0 -1 468 2.5637909770011902e-02 + + + 5.1416900008916855e-02 -1.6697999835014343e-01 + + + <_> + + 0 -1 469 -1.2416959507390857e-03 + + + 1.2488900125026703e-01 -2.1346220374107361e-01 + + + <_> + + 0 -1 470 1.5018839621916413e-03 + + + 9.7934387624263763e-02 -2.6385021209716797e-01 + + + <_> + + 0 -1 471 -3.2703679054975510e-02 + + + 5.7504880428314209e-01 -4.5875400304794312e-02 + + + <_> + + 0 -1 472 2.1297169849276543e-02 + + + 6.1069380491971970e-02 -2.2480219602584839e-01 + + + <_> + + 0 -1 473 -8.8358018547296524e-04 + + + 9.5625787973403931e-02 -2.7564591169357300e-01 + + + <_> + + 0 -1 474 -3.6556860432028770e-03 + + + 2.4107089638710022e-01 -1.0359519720077515e-01 + + + <_> + + 0 -1 475 3.4300461411476135e-02 + + + 3.9062701165676117e-02 -6.2445348501205444e-01 + + + <_> + + 0 -1 476 1.1492350138723850e-02 + + + -6.9246053695678711e-02 3.8258171081542969e-01 + + + <_> + + 0 -1 477 -3.1294790096580982e-03 + + + 1.1273369938135147e-01 -2.3122510313987732e-01 + + + <_> + + 0 -1 478 -4.0945871733129025e-03 + + + -1.7195980250835419e-01 1.3112659752368927e-01 + + + <_> + + 0 -1 479 -3.0921408906579018e-03 + + + -2.5460389256477356e-01 9.6659161150455475e-02 + + + <_> + + 0 -1 480 -4.1672129184007645e-02 + + + 2.7327769994735718e-01 -6.3094623386859894e-02 + + + <_> + + 0 -1 481 1.1384460143744946e-02 + + + -7.1872517466545105e-02 4.1160398721694946e-01 + + + <_> + + 0 -1 482 -2.3934150114655495e-02 + + + 1.3192340731620789e-01 -1.7954839766025543e-01 + + + <_> + + 0 -1 483 -3.1554169952869415e-02 + + + -5.8792132139205933e-01 4.1782889515161514e-02 + + + <_> + + 0 -1 484 -2.4033859372138977e-02 + + + -1.5534760057926178e-01 2.7700260281562805e-02 + + + <_> + + 0 -1 485 3.1589470803737640e-02 + + + -3.9150279015302658e-02 6.0951721668243408e-01 + + + <_> + + 0 -1 486 -2.4214860051870346e-02 + + + -2.4587619304656982e-01 9.1133296489715576e-02 + + + <_> + + 0 -1 487 1.9322870066389441e-03 + + + -1.1647839844226837e-01 1.8819290399551392e-01 + + + <_> + + 0 -1 488 -3.6017759703099728e-03 + + + 9.7600512206554413e-02 -4.8918090760707855e-02 + + + <_> + + 0 -1 489 3.1516118906438351e-03 + + + 6.5808869898319244e-02 -3.1577658653259277e-01 + + + <_> + + 0 -1 490 -6.3677072525024414e-02 + + + -8.6415481567382812e-01 -9.9097320344299078e-04 + + + <_> + + 0 -1 491 -3.9085028693079948e-03 + + + 2.0826210081577301e-01 -1.0560230165719986e-01 + + + <_> + + 0 -1 492 -2.6837719604372978e-02 + + + -1.8375129997730255e-01 2.9545329511165619e-02 + + + <_> + + 0 -1 493 3.1312298960983753e-03 + + + -1.2626689672470093e-01 1.6888590157032013e-01 + + + <_> + + 0 -1 494 -7.3491871356964111e-02 + + + -1. 5.6774187833070755e-03 + + + <_> + + 0 -1 495 1.8034819513559341e-02 + + + -6.8617410957813263e-02 3.3438131213188171e-01 + + + <_> + + 0 -1 496 6.8655997514724731e-02 + + + 4.6462309546768665e-03 -8.0664628744125366e-01 + + + <_> + + 0 -1 497 -4.6970890834927559e-03 + + + -2.0121769607067108e-01 1.1580040305852890e-01 + + + <_> + + 0 -1 498 4.6783890575170517e-02 + + + -3.5802699625492096e-02 4.1625639796257019e-01 + + + <_> + + 0 -1 499 4.5946058817207813e-03 + + + 8.8457576930522919e-02 -2.6894488930702209e-01 + + + <_> + + 0 -1 500 -1.3852829579263926e-03 + + + 8.1391222774982452e-02 -1.4880420267581940e-01 + + + <_> + + 0 -1 501 2.1788759157061577e-02 + + + -9.1640457510948181e-02 2.1261249482631683e-01 + + + <_> + + 0 -1 502 -1.3380090240389109e-04 + + + 9.6424743533134460e-02 -1.4717370271682739e-01 + + + <_> + + 0 -1 503 -4.7990411520004272e-02 + + + -6.1987131834030151e-01 3.8760710507631302e-02 + + + <_> + + 0 -1 504 2.0026009529829025e-02 + + + -3.5972420126199722e-02 1.9393420219421387e-01 + + + <_> + + 0 -1 505 1.0723130544647574e-03 + + + -1.9447499513626099e-01 1.2064950168132782e-01 + + + <_> + + 0 -1 506 2.2665090858936310e-02 + + + 4.8719439655542374e-02 -2.3640799522399902e-01 + + + <_> + + 0 -1 507 -1.1042109690606594e-02 + + + -2.6107341051101685e-01 1.0075490176677704e-01 + + + <_> + + 0 -1 508 -1.2811049818992615e-02 + + + 1.5199629962444305e-01 -8.8552959263324738e-02 + + + <_> + + 0 -1 509 -3.6628648638725281e-02 + + + 3.8858860731124878e-01 -7.7304549515247345e-02 + + + + + <_> + 72 + -8.7708407640457153e-01 + + <_> + + 0 -1 510 -5.4606638848781586e-02 + + + 5.5801349878311157e-01 -1.4168889820575714e-01 + + + <_> + + 0 -1 511 3.3533740788698196e-02 + + + -2.7386279776692390e-02 4.4381770491600037e-01 + + + <_> + + 0 -1 512 -9.9635301157832146e-03 + + + 2.5193908810615540e-01 -1.4647540450096130e-01 + + + <_> + + 0 -1 513 1.8188880058005452e-03 + + + -1.1264120042324066e-01 1.1523260176181793e-01 + + + <_> + + 0 -1 514 -4.8793829977512360e-02 + + + 5.1317107677459717e-01 -7.8665018081665039e-02 + + + <_> + + 0 -1 515 -1.3357769697904587e-02 + + + -1.4197979867458344e-01 1.1862599849700928e-01 + + + <_> + + 0 -1 516 1.1562240542843938e-03 + + + -2.0949220657348633e-01 1.5693040192127228e-01 + + + <_> + + 0 -1 517 -6.2384512275457382e-03 + + + -1.4336450397968292e-01 1.1303550004959106e-01 + + + <_> + + 0 -1 518 4.4234818778932095e-03 + + + -1.0358580201864243e-01 2.4589489400386810e-01 + + + <_> + + 0 -1 519 5.2964448928833008e-02 + + + 1.2561550363898277e-02 -6.2551808357238770e-01 + + + <_> + + 0 -1 520 5.5844681337475777e-03 + + + 8.3967886865139008e-02 -2.4653799831867218e-01 + + + <_> + + 0 -1 521 -4.1809541289694607e-04 + + + 6.9588072597980499e-02 -1.3558819890022278e-01 + + + <_> + + 0 -1 522 -8.9637134224176407e-03 + + + -3.0442738533020020e-01 6.9894723594188690e-02 + + + <_> + + 0 -1 523 2.4479050189256668e-02 + + + -3.1651828438043594e-02 2.0308789610862732e-01 + + + <_> + + 0 -1 524 -2.5842329487204552e-02 + + + 5.0401061773300171e-01 -6.3922062516212463e-02 + + + <_> + + 0 -1 525 -2.0785620436072350e-03 + + + 1.0980220139026642e-01 -1.1839559674263000e-01 + + + <_> + + 0 -1 526 6.8030342459678650e-02 + + + 4.2290739715099335e-02 -5.1855510473251343e-01 + + + <_> + + 0 -1 527 -7.0639760233461857e-03 + + + -2.0031100511550903e-01 2.4955609813332558e-02 + + + <_> + + 0 -1 528 -3.4848200157284737e-03 + + + 2.3135329782962799e-01 -9.6989557147026062e-02 + + + <_> + + 0 -1 529 1.3147160410881042e-02 + + + -3.7450950592756271e-02 2.5842788815498352e-01 + + + <_> + + 0 -1 530 -1.4271659776568413e-02 + + + -3.0110171437263489e-01 7.9672336578369141e-02 + + + <_> + + 0 -1 531 1.2653480283915997e-02 + + + 4.9039140343666077e-02 -1.4988109469413757e-01 + + + <_> + + 0 -1 532 -4.4893440790474415e-03 + + + 1.7208859324455261e-01 -1.5355649590492249e-01 + + + <_> + + 0 -1 533 3.2365400344133377e-02 + + + -9.0493112802505493e-02 3.5779160261154175e-01 + + + <_> + + 0 -1 534 4.6125808730721474e-03 + + + 1.1445190012454987e-01 -2.6519489288330078e-01 + + + <_> + + 0 -1 535 2.8645930811762810e-02 + + + -3.5988539457321167e-02 3.0025520920753479e-01 + + + <_> + + 0 -1 536 -2.3571979254484177e-02 + + + -2.4872820079326630e-01 9.1967120766639709e-02 + + + <_> + + 0 -1 537 -1.0739799588918686e-02 + + + -2.1367760002613068e-01 9.6477411687374115e-02 + + + <_> + + 0 -1 538 2.3728659376502037e-02 + + + -7.0916198194026947e-02 4.3828758597373962e-01 + + + <_> + + 0 -1 539 -3.2800701260566711e-01 + + + 5.8840030431747437e-01 -3.1756788492202759e-02 + + + <_> + + 0 -1 540 7.5008560997957829e-06 + + + -1.8288560211658478e-01 1.2022940069437027e-01 + + + <_> + + 0 -1 541 3.0071409419178963e-02 + + + 2.7802020311355591e-02 -4.3224281072616577e-01 + + + <_> + + 0 -1 542 -2.1936609409749508e-03 + + + 1.3592420518398285e-01 -1.4038629829883575e-01 + + + <_> + + 0 -1 543 2.0174339413642883e-02 + + + -6.1628919094800949e-02 3.1579768657684326e-01 + + + <_> + + 0 -1 544 9.7460206598043442e-03 + + + 8.8958032429218292e-02 -2.2594009339809418e-01 + + + <_> + + 0 -1 545 -1.2958340346813202e-02 + + + -1.2200850248336792e-01 8.6518086493015289e-02 + + + <_> + + 0 -1 546 1.1445499956607819e-02 + + + -6.4182333648204803e-02 3.0279749631881714e-01 + + + <_> + + 0 -1 547 -3.3802569378167391e-03 + + + 1.1177670210599899e-01 -1.2922379374504089e-01 + + + <_> + + 0 -1 548 2.0366210490465164e-02 + + + 1.0104539990425110e-01 -2.5991159677505493e-01 + + + <_> + + 0 -1 549 3.8058649748563766e-02 + + + 1.3168349862098694e-02 -7.5580632686614990e-01 + + + <_> + + 0 -1 550 2.3050000891089439e-03 + + + -1.0766649991273880e-01 1.8757669627666473e-01 + + + <_> + + 0 -1 551 5.1847118884325027e-02 + + + -2.2320529446005821e-02 1.8795830011367798e-01 + + + <_> + + 0 -1 552 1.1383029632270336e-02 + + + 6.0226161032915115e-02 -3.5961788892745972e-01 + + + <_> + + 0 -1 553 8.2553178071975708e-03 + + + -8.5131391882896423e-02 2.3493440449237823e-01 + + + <_> + + 0 -1 554 -2.6984339579939842e-02 + + + -2.1479399502277374e-01 9.3656733632087708e-02 + + + <_> + + 0 -1 555 -1.0289980098605156e-02 + + + 5.8254890143871307e-02 -8.3950929343700409e-02 + + + <_> + + 0 -1 556 -1.4419780200114474e-05 + + + 1.0392870008945465e-01 -1.7317299544811249e-01 + + + <_> + + 0 -1 557 1.0065140202641487e-02 + + + -4.1311118751764297e-02 1.7616020143032074e-01 + + + <_> + + 0 -1 558 -1.4870229642838240e-04 + + + 1.5657539665699005e-01 -1.2030059844255447e-01 + + + <_> + + 0 -1 559 -3.1059589236974716e-03 + + + 1.1674880236387253e-01 -9.1372460126876831e-02 + + + <_> + + 0 -1 560 1.0708030313253403e-02 + + + -7.7608227729797363e-02 2.7916100621223450e-01 + + + <_> + + 0 -1 561 -9.7792129963636398e-03 + + + -2.9060921072959900e-01 7.1562640368938446e-02 + + + <_> + + 0 -1 562 2.0121980458498001e-02 + + + 4.3994959443807602e-02 -4.2539501190185547e-01 + + + <_> + + 0 -1 563 -6.3295163214206696e-02 + + + 3.7034231424331665e-01 -5.2549809217453003e-02 + + + <_> + + 0 -1 564 -8.7289556860923767e-02 + + + -6.4299279451370239e-01 3.1952869147062302e-02 + + + <_> + + 0 -1 565 2.0398540422320366e-02 + + + -4.5955598354339600e-02 4.6266159415245056e-01 + + + <_> + + 0 -1 566 -4.0313000790774822e-03 + + + 1.3840849697589874e-01 -1.7980839312076569e-01 + + + <_> + + 0 -1 567 -1.5734519809484482e-02 + + + -1.8477180600166321e-01 6.9983080029487610e-02 + + + <_> + + 0 -1 568 3.3332880120724440e-03 + + + 1.1277650296688080e-01 -1.9513790309429169e-01 + + + <_> + + 0 -1 569 4.3689161539077759e-02 + + + 5.9510939754545689e-03 -5.5423438549041748e-01 + + + <_> + + 0 -1 570 -2.0920610986649990e-03 + + + 1.9163469970226288e-01 -9.7136110067367554e-02 + + + <_> + + 0 -1 571 2.0574270747601986e-03 + + + -1.0197430104017258e-01 1.4083810150623322e-01 + + + <_> + + 0 -1 572 8.8018123060464859e-03 + + + 1.1987809836864471e-01 -1.5638549625873566e-01 + + + <_> + + 0 -1 573 -1.6882529482245445e-02 + + + -1.8438099324703217e-01 1.9492870196700096e-02 + + + <_> + + 0 -1 574 -6.1647890834137797e-04 + + + 1.0665109753608704e-01 -2.2164009511470795e-01 + + + <_> + + 0 -1 575 1.0317339911125600e-04 + + + -1.1228899657726288e-01 1.3858650624752045e-01 + + + <_> + + 0 -1 576 1.5316329896450043e-02 + + + -5.0639409571886063e-02 4.1119828820228577e-01 + + + <_> + + 0 -1 577 1.0660690255463123e-02 + + + 5.8820810168981552e-02 -1.6454669833183289e-01 + + + <_> + + 0 -1 578 -1.9296869635581970e-02 + + + 3.9260959625244141e-01 -5.2761189639568329e-02 + + + <_> + + 0 -1 579 1.0018110275268555e-02 + + + 1.0068470239639282e-01 -1.9756269454956055e-01 + + + <_> + + 0 -1 580 -2.7263790369033813e-02 + + + 3.5332089662551880e-01 -5.5305551737546921e-02 + + + <_> + + 0 -1 581 5.4494310170412064e-03 + + + 6.7253768444061279e-02 -1.8384470045566559e-01 + + + + + <_> + 75 + -8.5267168283462524e-01 + + <_> + + 0 -1 582 -5.7434860616922379e-02 + + + 5.0582551956176758e-01 -1.2274570018053055e-01 + + + <_> + + 0 -1 583 -1.2750659883022308e-01 + + + 5.7605969905853271e-01 -4.3710928410291672e-02 + + + <_> + + 0 -1 584 -6.3675642013549805e-02 + + + 5.7122522592544556e-01 -4.9968320876359940e-02 + + + <_> + + 0 -1 585 -1.1928480118513107e-02 + + + 2.1641939878463745e-01 -1.8480269610881805e-01 + + + <_> + + 0 -1 586 1.3247699826024473e-04 + + + -2.2685679793357849e-01 1.0648279637098312e-01 + + + <_> + + 0 -1 587 6.4140267204493284e-04 + + + 9.4751678407192230e-02 -2.6892009377479553e-01 + + + <_> + + 0 -1 588 -2.9463530518114567e-03 + + + 1.3910910487174988e-01 -1.7091070115566254e-01 + + + <_> + + 0 -1 589 5.3384741768240929e-03 + + + 8.3969242870807648e-02 -9.5441989600658417e-02 + + + <_> + + 0 -1 590 5.8703150600194931e-02 + + + -6.9647520780563354e-02 3.3629441261291504e-01 + + + <_> + + 0 -1 591 -2.5406300555914640e-03 + + + 9.6176013350486755e-02 -1.5758140385150909e-01 + + + <_> + + 0 -1 592 -3.1899519264698029e-02 + + + -2.7956488728523254e-01 7.0359513163566589e-02 + + + <_> + + 0 -1 593 -3.2022708654403687e-01 + + + -9.0805047750473022e-01 7.5922380201518536e-03 + + + <_> + + 0 -1 594 3.5796251147985458e-02 + + + -5.0070770084857941e-02 4.2101579904556274e-01 + + + <_> + + 0 -1 595 -1.9079160690307617e-01 + + + -2.2061030566692352e-01 6.5184786915779114e-02 + + + <_> + + 0 -1 596 -1.2181829661130905e-02 + + + 1.3479439914226532e-01 -1.6667750477790833e-01 + + + <_> + + 0 -1 597 -3.2165799289941788e-02 + + + -2.5105410814285278e-01 1.9344560801982880e-02 + + + <_> + + 0 -1 598 3.6299630999565125e-02 + + + -5.9490781277418137e-02 4.0007731318473816e-01 + + + <_> + + 0 -1 599 2.0224580541253090e-02 + + + 5.6489799171686172e-02 -1.3418239355087280e-01 + + + <_> + + 0 -1 600 -2.5393130257725716e-02 + + + 3.6507838964462280e-01 -6.6002182662487030e-02 + + + <_> + + 0 -1 601 -1.2022369541227818e-02 + + + -1.7655059695243835e-01 7.3997639119625092e-02 + + + <_> + + 0 -1 602 4.7965139150619507e-02 + + + 4.4668558984994888e-02 -4.4584980607032776e-01 + + + <_> + + 0 -1 603 -2.0564019680023193e-01 + + + -7.3254501819610596e-01 1.9955230876803398e-02 + + + <_> + + 0 -1 604 -1.6601709648966789e-03 + + + 1.1633270233869553e-01 -1.5488509833812714e-01 + + + <_> + + 0 -1 605 8.6899623274803162e-02 + + + -5.4107550531625748e-02 2.6952400803565979e-01 + + + <_> + + 0 -1 606 -1.1374129680916667e-03 + + + -1.4314429461956024e-01 1.2444330006837845e-01 + + + <_> + + 0 -1 607 3.0976340174674988e-02 + + + 2.9864860698580742e-02 -3.2607930898666382e-01 + + + <_> + + 0 -1 608 2.6978010311722755e-02 + + + -4.5098248869180679e-02 3.6128848791122437e-01 + + + <_> + + 0 -1 609 1.9421820342540741e-01 + + + 3.2255191355943680e-02 -6.8981701135635376e-01 + + + <_> + + 0 -1 610 -2.0443359389901161e-02 + + + 2.9300108551979065e-01 -6.4483217895030975e-02 + + + <_> + + 0 -1 611 -4.0420450270175934e-02 + + + -7.6823359727859497e-01 1.2281980365514755e-02 + + + <_> + + 0 -1 612 -1.2641429901123047e-02 + + + -2.7573791146278381e-01 6.1901118606328964e-02 + + + <_> + + 0 -1 613 -3.9670299738645554e-02 + + + 3.2828390598297119e-01 -2.0364999771118164e-02 + + + <_> + + 0 -1 614 2.0246729254722595e-02 + + + -5.8393601328134537e-02 3.3060538768768311e-01 + + + <_> + + 0 -1 615 8.9611168950796127e-03 + + + 9.0096317231655121e-02 -2.2343009710311890e-01 + + + <_> + + 0 -1 616 -8.3055719733238220e-03 + + + 1.4175349473953247e-01 -1.2607260048389435e-01 + + + <_> + + 0 -1 617 -2.8248139642528258e-05 + + + 9.4516962766647339e-02 -2.1810370683670044e-01 + + + <_> + + 0 -1 618 -5.1939398981630802e-03 + + + 1.3304319977760315e-01 -1.3341580331325531e-01 + + + <_> + + 0 -1 619 1.1773110181093216e-01 + + + 2.9586199671030045e-02 -2.4020829796791077e-01 + + + <_> + + 0 -1 620 6.7896701395511627e-02 + + + 8.0913707613945007e-02 -2.3454460501670837e-01 + + + <_> + + 0 -1 621 -2.6683699339628220e-02 + + + 3.0590981245040894e-01 -6.4152047038078308e-02 + + + <_> + + 0 -1 622 3.5058211069554090e-03 + + + 8.9341968297958374e-02 -2.2773680090904236e-01 + + + <_> + + 0 -1 623 -6.5844372147694230e-04 + + + 1.2458139657974243e-01 -9.1352440416812897e-02 + + + <_> + + 0 -1 624 7.2530400939285755e-03 + + + -6.9285176694393158e-02 2.5482881069183350e-01 + + + <_> + + 0 -1 625 -2.8056129813194275e-02 + + + -2.0867039263248444e-01 3.3539578318595886e-02 + + + <_> + + 0 -1 626 -5.1205180585384369e-02 + + + -2.4107429385185242e-01 6.4439408481121063e-02 + + + <_> + + 0 -1 627 2.9234649613499641e-02 + + + -5.0803840160369873e-02 3.6485049128532410e-01 + + + <_> + + 0 -1 628 -1.0219520330429077e-01 + + + 4.0123480558395386e-01 -4.2902119457721710e-02 + + + <_> + + 0 -1 629 1.5104969963431358e-02 + + + 1.0481490194797516e-01 -1.8472430109977722e-01 + + + <_> + + 0 -1 630 -1.2570650316774845e-02 + + + -2.0540939271450043e-01 9.3013197183609009e-02 + + + <_> + + 0 -1 631 1.2253070250153542e-02 + + + -5.9285100549459457e-02 2.3927310109138489e-01 + + + <_> + + 0 -1 632 -2.6166990399360657e-02 + + + -6.9966787099838257e-01 2.4906709790229797e-02 + + + <_> + + 0 -1 633 7.0817661471664906e-03 + + + 2.4173120036721230e-02 -5.5144792795181274e-01 + + + <_> + + 0 -1 634 2.1426850929856300e-02 + + + 6.4168840646743774e-02 -2.5997900962829590e-01 + + + <_> + + 0 -1 635 1.8189709633588791e-02 + + + 3.5838250070810318e-02 -1.8020580708980560e-01 + + + <_> + + 0 -1 636 1.7415799200534821e-02 + + + -8.3862036466598511e-02 3.3338528871536255e-01 + + + <_> + + 0 -1 637 -1.4878029469400644e-03 + + + 1.2078859657049179e-01 -1.2769320607185364e-01 + + + <_> + + 0 -1 638 7.5296638533473015e-03 + + + -7.0014707744121552e-02 3.2181090116500854e-01 + + + <_> + + 0 -1 639 -6.1499018222093582e-02 + + + 4.6469798684120178e-01 -1.0073710232973099e-02 + + + <_> + + 0 -1 640 -1.9133290334139019e-04 + + + -1.4094290137290955e-01 1.3830110430717468e-01 + + + <_> + + 0 -1 641 -2.4422289803624153e-02 + + + -2.5292310118675232e-01 6.7684173583984375e-02 + + + <_> + + 0 -1 642 -2.6136320829391479e-01 + + + 3.4003540873527527e-01 -5.8462549000978470e-02 + + + <_> + + 0 -1 643 -7.6046779751777649e-02 + + + -7.8514158725738525e-01 5.2708541043102741e-03 + + + <_> + + 0 -1 644 -3.0279329512268305e-03 + + + 1.8527059257030487e-01 -9.0691961348056793e-02 + + + <_> + + 0 -1 645 -8.0219199880957603e-03 + + + -1.2540580332279205e-01 3.0594889074563980e-02 + + + <_> + + 0 -1 646 -2.0705960690975189e-01 + + + -7.5411921739578247e-01 2.1201130002737045e-02 + + + <_> + + 0 -1 647 -9.5322817564010620e-02 + + + -2.9623070359230042e-01 1.3138709589838982e-02 + + + <_> + + 0 -1 648 9.5921624451875687e-03 + + + 8.4324322640895844e-02 -2.1746580302715302e-01 + + + <_> + + 0 -1 649 -1.3089469633996487e-02 + + + 9.3607500195503235e-02 -6.5754130482673645e-02 + + + <_> + + 0 -1 650 1.1732880026102066e-02 + + + -8.0039046704769135e-02 2.3291939496994019e-01 + + + <_> + + 0 -1 651 1.5239049494266510e-01 + + + 9.9299130961298943e-03 -6.5196067094802856e-01 + + + <_> + + 0 -1 652 -6.4591512084007263e-02 + + + 2.8372219204902649e-01 -6.0058828443288803e-02 + + + <_> + + 0 -1 653 -5.5493030697107315e-02 + + + 2.6659101247787476e-01 -1.0336419567465782e-02 + + + <_> + + 0 -1 654 -5.0287410616874695e-02 + + + -6.9501471519470215e-01 2.7849879115819931e-02 + + + <_> + + 0 -1 655 -4.7794249653816223e-01 + + + -9.2871952056884766e-01 5.9050112031400204e-03 + + + <_> + + 0 -1 656 -1.4398519881069660e-02 + + + -4.5541068911552429e-01 3.6409981548786163e-02 + + + + + <_> + 67 + -7.4186658859252930e-01 + + <_> + + 0 -1 657 1.9511899445205927e-03 + + + -2.4936990439891815e-01 1.4111639559268951e-01 + + + <_> + + 0 -1 658 -4.6634670346975327e-02 + + + 3.7840589880943298e-01 -7.8401736915111542e-02 + + + <_> + + 0 -1 659 1.6193749383091927e-02 + + + 7.5213313102722168e-02 -4.1991469264030457e-01 + + + <_> + + 0 -1 660 -1.2459639401640743e-04 + + + 6.8576186895370483e-02 -1.7935420572757721e-01 + + + <_> + + 0 -1 661 7.3257791809737682e-03 + + + 1.0322099924087524e-01 -2.6099279522895813e-01 + + + <_> + + 0 -1 662 -1.5020779756014235e-05 + + + 7.3122598230838776e-02 -1.6718889772891998e-01 + + + <_> + + 0 -1 663 -3.4522008150815964e-02 + + + -3.9326989650726318e-01 7.6727166771888733e-02 + + + <_> + + 0 -1 664 -8.2679510116577148e-02 + + + -7.4677819013595581e-01 1.5530600212514400e-02 + + + <_> + + 0 -1 665 8.2162402570247650e-02 + + + -6.9249503314495087e-02 3.7914600968360901e-01 + + + <_> + + 0 -1 666 3.4187830984592438e-02 + + + 4.2608659714460373e-02 -1.5429890155792236e-01 + + + <_> + + 0 -1 667 -1.7891369760036469e-02 + + + -3.0639570951461792e-01 7.8118398785591125e-02 + + + <_> + + 0 -1 668 3.3130999654531479e-02 + + + -5.6183800101280212e-02 3.7405240535736084e-01 + + + <_> + + 0 -1 669 -5.7486710138618946e-03 + + + 1.2490350008010864e-01 -2.0527860522270203e-01 + + + <_> + + 0 -1 670 3.3536829054355621e-02 + + + -4.8344220966100693e-02 2.6724401116371155e-01 + + + <_> + + 0 -1 671 2.4723829701542854e-02 + + + 8.3678968250751495e-02 -3.3730649948120117e-01 + + + <_> + + 0 -1 672 2.2355809342116117e-03 + + + 1.0374590009450912e-01 -1.3071919977664948e-01 + + + <_> + + 0 -1 673 -2.4322168901562691e-03 + + + 1.5645089745521545e-01 -1.3284459710121155e-01 + + + <_> + + 0 -1 674 2.5999119505286217e-02 + + + -8.0343127250671387e-02 2.1610119938850403e-01 + + + <_> + + 0 -1 675 3.6965688195778057e-05 + + + -1.7871010303497314e-01 1.0563120245933533e-01 + + + <_> + + 0 -1 676 -1.6291500627994537e-01 + + + -6.9141697883605957e-01 2.2374730557203293e-02 + + + <_> + + 0 -1 677 1.3008140027523041e-01 + + + -4.2769040912389755e-02 4.6373569965362549e-01 + + + <_> + + 0 -1 678 2.7658540755510330e-02 + + + -3.7108600139617920e-02 3.8386580348014832e-01 + + + <_> + + 0 -1 679 -1.0020419955253601e-02 + + + -2.6328051090240479e-01 7.4858680367469788e-02 + + + <_> + + 0 -1 680 -3.0459940433502197e-02 + + + 3.2300901412963867e-01 -2.5858370587229729e-02 + + + <_> + + 0 -1 681 1.3251040363684297e-03 + + + 1.4447669684886932e-01 -2.1082170307636261e-01 + + + <_> + + 0 -1 682 -2.7931010350584984e-02 + + + 1.4374519884586334e-01 -1.6162300109863281e-01 + + + <_> + + 0 -1 683 -8.8642723858356476e-03 + + + 2.3000620305538177e-01 -9.5095098018646240e-02 + + + <_> + + 0 -1 684 -1.2213969603180885e-02 + + + -2.4646399915218353e-01 6.5522022545337677e-02 + + + <_> + + 0 -1 685 -4.8737529665231705e-02 + + + -7.9127711057662964e-01 2.5416409596800804e-02 + + + <_> + + 0 -1 686 6.1185289174318314e-02 + + + -1.2226430408190936e-04 -9.0545868873596191e-01 + + + <_> + + 0 -1 687 2.6453679427504539e-02 + + + 2.6562800630927086e-02 -6.3954341411590576e-01 + + + <_> + + 0 -1 688 8.8589917868375778e-03 + + + 5.4145850241184235e-02 -2.1601280570030212e-01 + + + <_> + + 0 -1 689 3.4847941249608994e-02 + + + -4.5749358832836151e-02 4.3935400247573853e-01 + + + <_> + + 0 -1 690 -1.4598210155963898e-01 + + + -5.5561769008636475e-01 9.5249973237514496e-03 + + + <_> + + 0 -1 691 -5.0456568598747253e-02 + + + -7.5287848711013794e-01 2.0214710384607315e-02 + + + <_> + + 0 -1 692 -8.5443779826164246e-02 + + + -1. -1.3681349810212851e-03 + + + <_> + + 0 -1 693 1.3248980045318604e-02 + + + 6.3400700688362122e-02 -2.5411811470985413e-01 + + + <_> + + 0 -1 694 -6.5935611724853516e-01 + + + -1. 7.7378489077091217e-03 + + + <_> + + 0 -1 695 5.0879311747848988e-03 + + + -8.3207741379737854e-02 1.8876290321350098e-01 + + + <_> + + 0 -1 696 -3.4071630798280239e-03 + + + 1.4578290283679962e-01 -9.1960333287715912e-02 + + + <_> + + 0 -1 697 -2.1656269207596779e-02 + + + -6.5364891290664673e-01 2.7129750698804855e-02 + + + <_> + + 0 -1 698 9.4357347115874290e-03 + + + 6.4360111951828003e-02 -2.3885479569435120e-01 + + + <_> + + 0 -1 699 -7.5177568942308426e-03 + + + 2.4519060552120209e-01 -6.8221837282180786e-02 + + + <_> + + 0 -1 700 1.6067629680037498e-02 + + + 7.6069780625402927e-03 -3.1668719649314880e-01 + + + <_> + + 0 -1 701 -1.8057749839499593e-03 + + + 1.2710370123386383e-01 -1.2145719677209854e-01 + + + <_> + + 0 -1 702 -4.4154901057481766e-02 + + + -4.8579609394073486e-01 2.3444859310984612e-02 + + + <_> + + 0 -1 703 7.5462698005139828e-03 + + + 6.8430766463279724e-02 -2.3316520452499390e-01 + + + <_> + + 0 -1 704 1.0868260264396667e-01 + + + -4.1663911193609238e-02 3.9452219009399414e-01 + + + <_> + + 0 -1 705 6.1248701810836792e-01 + + + 2.0702170208096504e-02 -9.8494791984558105e-01 + + + <_> + + 0 -1 706 4.9828290939331055e-02 + + + 2.7304550167173147e-03 -4.0181699395179749e-01 + + + <_> + + 0 -1 707 -7.2768718004226685e-02 + + + 3.2676479220390320e-01 -4.9144338816404343e-02 + + + <_> + + 0 -1 708 2.4314310401678085e-02 + + + -7.8135710209608078e-03 5.8223301172256470e-01 + + + <_> + + 0 -1 709 -1.7177179688587785e-04 + + + 8.1669911742210388e-02 -2.0376220345497131e-01 + + + <_> + + 0 -1 710 -4.0095269680023193e-02 + + + 5.4681521654129028e-01 -1.7179539427161217e-02 + + + <_> + + 0 -1 711 -8.9634567499160767e-02 + + + -8.1614011526107788e-01 2.1283889189362526e-02 + + + <_> + + 0 -1 712 1.8692140281200409e-01 + + + 8.3980746567249298e-03 -6.0185301303863525e-01 + + + <_> + + 0 -1 713 -4.3038379400968552e-02 + + + -8.7898987531661987e-01 1.4930729754269123e-02 + + + <_> + + 0 -1 714 -1.8602630007080734e-04 + + + 4.0156241506338120e-02 -8.2604438066482544e-02 + + + <_> + + 0 -1 715 -1.4392189914360642e-03 + + + -1.7102399468421936e-01 9.1203540563583374e-02 + + + <_> + + 0 -1 716 4.2160619050264359e-02 + + + -3.5861019045114517e-02 1.5174309909343719e-01 + + + <_> + + 0 -1 717 7.5991409830749035e-03 + + + 1.0874529927968979e-01 -1.6147160530090332e-01 + + + <_> + + 0 -1 718 -5.7539329864084721e-03 + + + -2.5677061080932617e-01 5.8457151055335999e-02 + + + <_> + + 0 -1 719 -2.7736749500036240e-02 + + + 2.2325170040130615e-01 -7.4071511626243591e-02 + + + <_> + + 0 -1 720 -2.5676110759377480e-02 + + + 1.8831080198287964e-01 -5.3860381245613098e-02 + + + <_> + + 0 -1 721 1.5890730544924736e-02 + + + 5.1709540188312531e-02 -3.8476571440696716e-01 + + + <_> + + 0 -1 722 -8.6374267935752869e-02 + + + -5.5680698156356812e-01 9.4922119751572609e-03 + + + <_> + + 0 -1 723 1.9480630289763212e-03 + + + -1.0807219892740250e-01 1.4771680533885956e-01 + + + + + <_> + 88 + -8.3640968799591064e-01 + + <_> + + 0 -1 724 -6.8531660363078117e-03 + + + 2.8935509920120239e-01 -2.7689141035079956e-01 + + + <_> + + 0 -1 725 -6.9217637181282043e-02 + + + 3.4909790754318237e-01 -4.9741089344024658e-02 + + + <_> + + 0 -1 726 -1.3092979788780212e-01 + + + 4.2791560292243958e-01 -9.6156008541584015e-02 + + + <_> + + 0 -1 727 -2.9759139579255134e-05 + + + 1.1675780266523361e-01 -2.4678389728069305e-01 + + + <_> + + 0 -1 728 -4.7100789844989777e-02 + + + 3.7259110808372498e-01 -5.9072919189929962e-02 + + + <_> + + 0 -1 729 4.4124510139226913e-02 + + + 7.8904099762439728e-02 -2.5528541207313538e-01 + + + <_> + + 0 -1 730 4.2540309950709343e-03 + + + -2.3612380027770996e-01 1.2856779992580414e-01 + + + <_> + + 0 -1 731 -1.0833570268005133e-03 + + + 1.4347310364246368e-01 -1.4203630387783051e-01 + + + <_> + + 0 -1 732 5.9925230743829161e-05 + + + -1.9927270710468292e-01 8.8502913713455200e-02 + + + <_> + + 0 -1 733 -7.3021486401557922e-02 + + + -8.0666261911392212e-01 3.2041858881711960e-02 + + + <_> + + 0 -1 734 7.9495050013065338e-03 + + + -6.5878443419933319e-02 2.7071261405944824e-01 + + + <_> + + 0 -1 735 -3.3911041100509465e-04 + + + 1.3490739464759827e-01 -1.3354760408401489e-01 + + + <_> + + 0 -1 736 -2.6010179892182350e-02 + + + -2.8074580430984497e-01 7.7902659773826599e-02 + + + <_> + + 0 -1 737 -3.1153090298175812e-02 + + + 2.7022659778594971e-01 -2.6994340121746063e-02 + + + <_> + + 0 -1 738 1.0946249589323997e-02 + + + -1.5993720293045044e-01 1.0350699722766876e-01 + + + <_> + + 0 -1 739 7.3101207613945007e-02 + + + -4.1365791112184525e-03 5.2339828014373779e-01 + + + <_> + + 0 -1 740 3.0207149684429169e-02 + + + -4.9229420721530914e-02 4.2848989367485046e-01 + + + <_> + + 0 -1 741 6.4985260367393494e-02 + + + 3.9118612185120583e-03 -1.0003379583358765e+00 + + + <_> + + 0 -1 742 -2.9119249433279037e-02 + + + -7.7025991678237915e-01 2.3930810391902924e-02 + + + <_> + + 0 -1 743 5.0458308309316635e-02 + + + 6.9283558987081051e-03 -5.1854777336120605e-01 + + + <_> + + 0 -1 744 -3.8890179246664047e-02 + + + -4.8176848888397217e-01 3.0270289629697800e-02 + + + <_> + + 0 -1 745 5.8319371193647385e-02 + + + -2.2101389244198799e-02 2.8393501043319702e-01 + + + <_> + + 0 -1 746 -1.0803690180182457e-02 + + + 1.2842060625553131e-01 -1.3849779963493347e-01 + + + <_> + + 0 -1 747 9.4525264576077461e-03 + + + -5.7194419205188751e-02 1.7759050428867340e-01 + + + <_> + + 0 -1 748 1.5229170210659504e-02 + + + 1.0501170158386230e-01 -2.0518389344215393e-01 + + + <_> + + 0 -1 749 -8.9435698464512825e-04 + + + 6.8668253719806671e-02 -1.4666010439395905e-01 + + + <_> + + 0 -1 750 -1.8322499468922615e-02 + + + -2.3613719642162323e-01 8.3538331091403961e-02 + + + <_> + + 0 -1 751 2.5474189314991236e-03 + + + -8.4731526672840118e-02 1.7211520671844482e-01 + + + <_> + + 0 -1 752 -1.4951790217310190e-03 + + + 1.8642990291118622e-01 -1.2753330171108246e-01 + + + <_> + + 0 -1 753 2.4796150624752045e-02 + + + 3.2923560589551926e-02 -4.0954729914665222e-01 + + + <_> + + 0 -1 754 -2.8976860921829939e-03 + + + 1.4480039477348328e-01 -1.0404679924249649e-01 + + + <_> + + 0 -1 755 7.0361169055104256e-03 + + + -6.7916557192802429e-02 2.1544350683689117e-01 + + + <_> + + 0 -1 756 -1.1870389804244041e-02 + + + -2.5537449121475220e-01 7.4443407356739044e-02 + + + <_> + + 0 -1 757 2.4765899870544672e-03 + + + 6.8313367664813995e-02 -1.6111320257186890e-01 + + + <_> + + 0 -1 758 2.1284550428390503e-02 + + + 3.7090871483087540e-02 -4.6916520595550537e-01 + + + <_> + + 0 -1 759 -1.0369479656219482e-02 + + + 1.0807839781045914e-01 -6.0489870607852936e-02 + + + <_> + + 0 -1 760 1.0732480324804783e-02 + + + -5.8582380414009094e-02 3.1958609819412231e-01 + + + <_> + + 0 -1 761 -2.3235160112380981e-01 + + + -1. 8.2511743530631065e-03 + + + <_> + + 0 -1 762 -6.0572529037017375e-05 + + + 8.0201767385005951e-02 -2.3583050072193146e-01 + + + <_> + + 0 -1 763 -2.7367009315639734e-03 + + + 1.5369090437889099e-01 -7.8800879418849945e-02 + + + <_> + + 0 -1 764 3.1168010085821152e-02 + + + -4.1852951049804688e-02 3.7374469637870789e-01 + + + <_> + + 0 -1 765 4.5415129512548447e-02 + + + 6.6594500094652176e-03 -9.9975287914276123e-01 + + + <_> + + 0 -1 766 -1.3742819428443909e-03 + + + 1.0587850213050842e-01 -1.9234779477119446e-01 + + + <_> + + 0 -1 767 3.0089360661804676e-03 + + + 9.4038642942905426e-02 -1.5442730486392975e-01 + + + <_> + + 0 -1 768 -7.1071386337280273e-02 + + + -5.4955267906188965e-01 2.5523129850625992e-02 + + + <_> + + 0 -1 769 1.0958979837596416e-03 + + + -6.1327658593654633e-02 5.7677619159221649e-02 + + + <_> + + 0 -1 770 -2.3706799373030663e-02 + + + 2.9486098885536194e-01 -6.6553473472595215e-02 + + + <_> + + 0 -1 771 6.8882037885487080e-03 + + + 7.3861703276634216e-02 -2.5727730989456177e-01 + + + <_> + + 0 -1 772 -4.9158040434122086e-02 + + + 3.2406309247016907e-01 -5.2785839885473251e-02 + + + <_> + + 0 -1 773 7.1369417011737823e-02 + + + 1.3209920376539230e-02 -7.4821132421493530e-01 + + + <_> + + 0 -1 774 -8.4517486393451691e-03 + + + -2.0652799308300018e-01 9.3139596283435822e-02 + + + <_> + + 0 -1 775 -1.5554410219192505e-01 + + + -5.0736141204833984e-01 1.1575420387089252e-02 + + + <_> + + 0 -1 776 -4.5976821333169937e-02 + + + 3.3433321118354797e-01 -5.6558281183242798e-02 + + + <_> + + 0 -1 777 1.7900219187140465e-02 + + + 3.4091990441083908e-02 -2.8565031290054321e-01 + + + <_> + + 0 -1 778 6.7351139150559902e-03 + + + -6.6538818180561066e-02 2.3322120308876038e-01 + + + <_> + + 0 -1 779 6.4544100314378738e-03 + + + 4.7224499285221100e-02 -1.4422370493412018e-01 + + + <_> + + 0 -1 780 -1.1029049754142761e-02 + + + -2.6442399621009827e-01 6.2542691826820374e-02 + + + <_> + + 0 -1 781 -3.3727919217199087e-03 + + + 1.2575919926166534e-01 -6.8357646465301514e-02 + + + <_> + + 0 -1 782 -2.2960419300943613e-03 + + + -1.5573309361934662e-01 9.4681970775127411e-02 + + + <_> + + 0 -1 783 -7.9503163695335388e-02 + + + -3.8246139883995056e-01 1.7201259732246399e-02 + + + <_> + + 0 -1 784 -2.5240880250930786e-01 + + + 3.0139809846878052e-01 -5.8942809700965881e-02 + + + <_> + + 0 -1 785 3.6313079297542572e-02 + + + 2.1105870604515076e-02 -2.0811690390110016e-01 + + + <_> + + 0 -1 786 6.8737521767616272e-02 + + + -3.2400298863649368e-02 5.1345300674438477e-01 + + + <_> + + 0 -1 787 -2.1814550459384918e-01 + + + -7.0093291997909546e-01 1.6260979697108269e-02 + + + <_> + + 0 -1 788 -1.9770899415016174e-01 + + + -6.7817360162734985e-01 1.7937550321221352e-02 + + + <_> + + 0 -1 789 -1.0131119936704636e-01 + + + 3.6470630764961243e-01 -4.9969438463449478e-02 + + + <_> + + 0 -1 790 5.4146698676049709e-03 + + + 6.6086590290069580e-02 -2.3327399790287018e-01 + + + <_> + + 0 -1 791 -4.0590178221464157e-02 + + + 2.1464720368385315e-01 -4.3033309280872345e-02 + + + <_> + + 0 -1 792 -1.3324919855222106e-03 + + + 1.2975679337978363e-01 -1.2794280052185059e-01 + + + <_> + + 0 -1 793 5.7570589706301689e-03 + + + 4.3469998985528946e-02 -1.1977300047874451e-01 + + + <_> + + 0 -1 794 -4.0872758254408836e-03 + + + -2.0180100202560425e-01 9.2624872922897339e-02 + + + <_> + + 0 -1 795 2.1345280110836029e-02 + + + -2.6310870423913002e-02 2.9142528772354126e-01 + + + <_> + + 0 -1 796 -2.4241849314421415e-03 + + + 1.7131569981575012e-01 -1.1723010241985321e-01 + + + <_> + + 0 -1 797 6.0677550733089447e-02 + + + -4.8347217962145805e-03 5.6577122211456299e-01 + + + <_> + + 0 -1 798 3.1573011074215174e-04 + + + -1.1499550193548203e-01 1.3094860315322876e-01 + + + <_> + + 0 -1 799 -1.4639530563727021e-03 + + + 1.0708429664373398e-01 -8.2188747823238373e-02 + + + <_> + + 0 -1 800 -8.1629276275634766e-02 + + + -7.0090162754058838e-01 2.1318640559911728e-02 + + + <_> + + 0 -1 801 -2.2923630604054779e-04 + + + 5.2449010312557220e-02 -5.7273399084806442e-02 + + + <_> + + 0 -1 802 8.6732655763626099e-03 + + + -1.0944409668445587e-01 1.4530800282955170e-01 + + + <_> + + 0 -1 803 -9.5603411318734288e-04 + + + 5.4728660732507706e-02 -7.6677009463310242e-02 + + + <_> + + 0 -1 804 -5.6814689189195633e-02 + + + -7.2493737936019897e-01 1.7791330814361572e-02 + + + <_> + + 0 -1 805 6.4268838614225388e-03 + + + -3.7768699228763580e-02 8.3454750478267670e-02 + + + <_> + + 0 -1 806 5.2451258525252342e-03 + + + -7.5806751847267151e-02 2.1549069881439209e-01 + + + <_> + + 0 -1 807 6.7577441222965717e-03 + + + 7.7163867652416229e-02 -2.4957199394702911e-01 + + + <_> + + 0 -1 808 -5.7494179345667362e-03 + + + 1.4245559275150299e-01 -1.2740920484066010e-01 + + + <_> + + 0 -1 809 -6.7760650999844074e-03 + + + -2.3316009342670441e-01 3.9975211024284363e-02 + + + <_> + + 0 -1 810 3.5247279447503388e-04 + + + -1.3083159923553467e-01 1.1577410250902176e-01 + + + <_> + + 0 -1 811 1.4523849822580814e-03 + + + -9.2724457383155823e-02 6.5486960113048553e-02 + + + + + <_> + 80 + -7.2322398424148560e-01 + + <_> + + 0 -1 812 -3.1163799762725830e-01 + + + 3.8062000274658203e-01 -1.1115840077400208e-01 + + + <_> + + 0 -1 813 -3.0338248610496521e-01 + + + 5.1236808300018311e-01 -5.0459731370210648e-02 + + + <_> + + 0 -1 814 -1.0945170186460018e-02 + + + -2.2292029857635498e-01 1.0548099875450134e-01 + + + <_> + + 0 -1 815 -2.8011079877614975e-02 + + + 7.0687793195247650e-02 -8.6478509008884430e-02 + + + <_> + + 0 -1 816 -5.2256159484386444e-02 + + + 5.7856267690658569e-01 -8.7944902479648590e-03 + + + <_> + + 0 -1 817 -5.9455442242324352e-03 + + + -2.5641980767250061e-01 9.4584532082080841e-02 + + + <_> + + 0 -1 818 2.5594399776309729e-03 + + + -2.5718480348587036e-01 1.2882429361343384e-01 + + + <_> + + 0 -1 819 -1.2099260091781616e-01 + + + -1.2293220311403275e-01 2.5829430669546127e-02 + + + <_> + + 0 -1 820 -4.4208219647407532e-01 + + + -7.4546551704406738e-01 4.2586710304021835e-02 + + + <_> + + 0 -1 821 -6.6842641681432724e-03 + + + 1.3515649735927582e-01 -1.6409300267696381e-01 + + + <_> + + 0 -1 822 9.8270708695054054e-03 + + + -8.0305352807044983e-02 2.9853299260139465e-01 + + + <_> + + 0 -1 823 5.8638598769903183e-02 + + + 2.7556419372558594e-02 -8.2242500782012939e-01 + + + <_> + + 0 -1 824 -3.0546959023922682e-03 + + + -1.9292749464511871e-01 1.1082729697227478e-01 + + + <_> + + 0 -1 825 -7.3340102098882198e-03 + + + -2.4307939410209656e-01 6.6744603216648102e-02 + + + <_> + + 0 -1 826 -1.0526229627430439e-02 + + + -3.1136021018028259e-01 6.2850847840309143e-02 + + + <_> + + 0 -1 827 1.0481160134077072e-01 + + + 1.2621720321476460e-02 -6.7376089096069336e-01 + + + <_> + + 0 -1 828 9.4269379042088985e-04 + + + -1.7071670293807983e-01 1.0280650109052658e-01 + + + <_> + + 0 -1 829 8.4397383034229279e-03 + + + -5.3014568984508514e-02 8.8599078357219696e-02 + + + <_> + + 0 -1 830 -3.0551670119166374e-02 + + + 3.5264891386032104e-01 -6.9148473441600800e-02 + + + <_> + + 0 -1 831 -4.9112379550933838e-02 + + + -5.8219379186630249e-01 1.4043220318853855e-02 + + + <_> + + 0 -1 832 5.8098030276596546e-03 + + + 7.0872433483600616e-02 -2.5362819433212280e-01 + + + <_> + + 0 -1 833 2.5541070848703384e-02 + + + -4.5136939734220505e-02 4.0674450993537903e-01 + + + <_> + + 0 -1 834 -4.8711288720369339e-02 + + + -7.0240157842636108e-01 2.4317869916558266e-02 + + + <_> + + 0 -1 835 -3.2624390721321106e-01 + + + -5.0619047880172729e-01 5.5445302277803421e-03 + + + <_> + + 0 -1 836 -1.8120040476787835e-04 + + + 1.3132590055465698e-01 -1.2139549851417542e-01 + + + <_> + + 0 -1 837 -1.2980769574642181e-01 + + + -6.8208992481231689e-01 1.6414549201726913e-02 + + + <_> + + 0 -1 838 8.3528067916631699e-03 + + + 3.0040390789508820e-02 -5.0909137725830078e-01 + + + <_> + + 0 -1 839 5.4547088220715523e-03 + + + -8.2402072846889496e-02 1.8007980287075043e-01 + + + <_> + + 0 -1 840 -3.1699541211128235e-01 + + + -8.6613011360168457e-01 1.8229139968752861e-02 + + + <_> + + 0 -1 841 5.8424862800166011e-04 + + + 4.2409729212522507e-02 -1.3118089735507965e-01 + + + <_> + + 0 -1 842 -9.7046848386526108e-03 + + + -2.7432689070701599e-01 5.5920429527759552e-02 + + + <_> + + 0 -1 843 1.6834320500493050e-02 + + + -8.3306416869163513e-02 6.7792758345603943e-02 + + + <_> + + 0 -1 844 -3.0685380101203918e-02 + + + 4.2126908898353577e-01 -4.5339331030845642e-02 + + + <_> + + 0 -1 845 4.1394919157028198e-02 + + + 1.9971750676631927e-02 -1.9722190499305725e-01 + + + <_> + + 0 -1 846 3.4910149872303009e-02 + + + -5.3826879709959030e-02 3.5040271282196045e-01 + + + <_> + + 0 -1 847 -5.2495039999485016e-03 + + + -1.1363890022039413e-01 5.5080570280551910e-02 + + + <_> + + 0 -1 848 1.2045619636774063e-01 + + + 1.7451599240303040e-02 -9.3958032131195068e-01 + + + <_> + + 0 -1 849 4.2130421847105026e-02 + + + -1.4343280345201492e-02 6.0059851408004761e-01 + + + <_> + + 0 -1 850 1.9120849668979645e-02 + + + 8.5864506661891937e-02 -1.8586499989032745e-01 + + + <_> + + 0 -1 851 8.4470612928271294e-03 + + + -6.9452181458473206e-02 7.3461420834064484e-02 + + + <_> + + 0 -1 852 1.7696130089461803e-03 + + + -7.9996660351753235e-02 1.9479809701442719e-01 + + + <_> + + 0 -1 853 5.7995948940515518e-02 + + + 2.7633000165224075e-02 -5.4097008705139160e-01 + + + <_> + + 0 -1 854 -7.9884022474288940e-02 + + + -5.4307681322097778e-01 2.3219829425215721e-02 + + + <_> + + 0 -1 855 6.6576242446899414e-02 + + + 6.8416809663176537e-03 -8.1224560737609863e-01 + + + <_> + + 0 -1 856 6.4169943332672119e-02 + + + -2.4846689775586128e-02 6.0798132419586182e-01 + + + <_> + + 0 -1 857 -2.9404780268669128e-01 + + + -1. 4.6440181322395802e-03 + + + <_> + + 0 -1 858 -9.5727723091840744e-03 + + + -1.4157359302043915e-01 1.0121650248765945e-01 + + + <_> + + 0 -1 859 -2.3574449121952057e-02 + + + 1.1715450137853622e-01 -1.3184690475463867e-01 + + + <_> + + 0 -1 860 -5.1256217993795872e-03 + + + -1.7623250186443329e-01 1.0177359730005264e-01 + + + <_> + + 0 -1 861 9.7663059830665588e-02 + + + 4.4896239414811134e-03 -8.0415552854537964e-01 + + + <_> + + 0 -1 862 3.2088689506053925e-02 + + + -5.8048430830240250e-02 3.0194890499114990e-01 + + + <_> + + 0 -1 863 -8.6517207324504852e-02 + + + -7.5529891252517700e-01 2.8089359402656555e-03 + + + <_> + + 0 -1 864 -2.8540970757603645e-02 + + + -3.5085019469261169e-01 4.4081591069698334e-02 + + + <_> + + 0 -1 865 -5.3844689391553402e-03 + + + 9.2348903417587280e-02 -7.0033848285675049e-02 + + + <_> + + 0 -1 866 -2.2280439734458923e-02 + + + 2.4949419498443604e-01 -7.0658676326274872e-02 + + + <_> + + 0 -1 867 5.1025422289967537e-03 + + + 6.0899689793586731e-02 -1.5473949909210205e-01 + + + <_> + + 0 -1 868 3.7133800797164440e-03 + + + -8.7124302983283997e-02 1.7195260524749756e-01 + + + <_> + + 0 -1 869 -4.0405280888080597e-03 + + + 1.5054519474506378e-01 -9.9685050547122955e-02 + + + <_> + + 0 -1 870 4.8944901674985886e-02 + + + 2.0637780427932739e-02 -7.1113997697830200e-01 + + + <_> + + 0 -1 871 -4.0832208469510078e-03 + + + -1.6104909777641296e-01 8.8675007224082947e-02 + + + <_> + + 0 -1 872 -2.2145630791783333e-03 + + + -2.1901540458202362e-01 1.0045240074396133e-01 + + + <_> + + 0 -1 873 -6.4257450401782990e-02 + + + -5.7694709300994873e-01 1.0253880172967911e-02 + + + <_> + + 0 -1 874 1.1895420029759407e-02 + + + -7.0560596883296967e-02 2.6147291064262390e-01 + + + <_> + + 0 -1 875 -4.4988259673118591e-02 + + + -6.8440282344818115e-01 9.9674779921770096e-03 + + + <_> + + 0 -1 876 6.3484339043498039e-03 + + + 8.4738656878471375e-02 -1.6299989819526672e-01 + + + <_> + + 0 -1 877 -5.6587439030408859e-02 + + + 4.8960050940513611e-01 -1.9641140475869179e-02 + + + <_> + + 0 -1 878 3.5853400826454163e-02 + + + 1.9695440307259560e-02 -6.8108338117599487e-01 + + + <_> + + 0 -1 879 -4.5450981706380844e-03 + + + 6.9072656333446503e-02 -9.1276638209819794e-02 + + + <_> + + 0 -1 880 1.0608570277690887e-01 + + + -4.9993991851806641e-02 3.2139471173286438e-01 + + + <_> + + 0 -1 881 -4.5924410223960876e-02 + + + -8.2744181156158447e-01 1.2149419635534286e-02 + + + <_> + + 0 -1 882 -1.2273239903151989e-02 + + + -3.0669289827346802e-01 5.1693398505449295e-02 + + + <_> + + 0 -1 883 8.0667391419410706e-02 + + + 2.1730009466409683e-03 -1.0002529621124268e+00 + + + <_> + + 0 -1 884 -2.3044859990477562e-02 + + + 4.5085349678993225e-01 -3.6273978650569916e-02 + + + <_> + + 0 -1 885 1.8702909350395203e-02 + + + 4.6945460140705109e-02 -2.1796269714832306e-01 + + + <_> + + 0 -1 886 -9.6820026636123657e-02 + + + 4.0398910641670227e-01 -3.7819091230630875e-02 + + + <_> + + 0 -1 887 6.0525789856910706e-02 + + + 1.5727160498499870e-02 -4.5661678910255432e-01 + + + <_> + + 0 -1 888 1.0418569669127464e-02 + + + 6.2726646661758423e-02 -2.4441179633140564e-01 + + + <_> + + 0 -1 889 1.0726209729909897e-02 + + + -7.1968853473663330e-02 2.2099970281124115e-01 + + + <_> + + 0 -1 890 -2.7160700410604477e-03 + + + 1.2882749736309052e-01 -1.4629630744457245e-01 + + + <_> + + 0 -1 891 8.5867568850517273e-03 + + + -6.8645663559436798e-02 2.5840589404106140e-01 + + + + + <_> + 103 + -7.6886308193206787e-01 + + <_> + + 0 -1 892 -2.5851670652627945e-02 + + + 1.8011799454689026e-01 -2.4745930731296539e-01 + + + <_> + + 0 -1 893 1.4054620265960693e-01 + + + -5.1319289952516556e-02 4.0766909718513489e-01 + + + <_> + + 0 -1 894 -2.7255079150199890e-01 + + + 4.9941259622573853e-01 -4.5033931732177734e-02 + + + <_> + + 0 -1 895 1.3978329952806234e-03 + + + 5.3600508719682693e-02 -2.1793389320373535e-01 + + + <_> + + 0 -1 896 -3.5059880465269089e-02 + + + -2.9943290352821350e-01 8.9991323649883270e-02 + + + <_> + + 0 -1 897 -3.2894399482756853e-03 + + + 1.0264199972152710e-01 -9.4711251556873322e-02 + + + <_> + + 0 -1 898 1.8242290616035461e-01 + + + 2.5626670569181442e-02 -6.8765729665756226e-01 + + + <_> + + 0 -1 899 -7.8741081058979034e-02 + + + 1.0810419917106628e-01 -1.4497520029544830e-01 + + + <_> + + 0 -1 900 1.3945129700005054e-02 + + + -7.1371912956237793e-02 3.1315749883651733e-01 + + + <_> + + 0 -1 901 4.4680278748273849e-02 + + + -3.0446149408817291e-02 3.9263629913330078e-01 + + + <_> + + 0 -1 902 -2.6441770605742931e-03 + + + 1.1596699804067612e-01 -1.7800450325012207e-01 + + + <_> + + 0 -1 903 -5.1071979105472565e-03 + + + -1.1739940196275711e-01 6.7823447287082672e-02 + + + <_> + + 0 -1 904 -3.2582178711891174e-02 + + + -5.9129017591476440e-01 3.3352021127939224e-02 + + + <_> + + 0 -1 905 -2.7755839750170708e-02 + + + -7.0649361610412598e-01 1.6761489212512970e-02 + + + <_> + + 0 -1 906 -6.0038521041860804e-05 + + + 7.3832668364048004e-02 -2.2933359444141388e-01 + + + <_> + + 0 -1 907 3.0506180599331856e-02 + + + -3.8056060671806335e-02 4.4115358591079712e-01 + + + <_> + + 0 -1 908 -6.2056961469352245e-03 + + + -1.7757239937782288e-01 9.3707472085952759e-02 + + + <_> + + 0 -1 909 -8.0766230821609497e-03 + + + -2.0256699621677399e-01 7.4059642851352692e-02 + + + <_> + + 0 -1 910 -3.3209908753633499e-02 + + + 4.6372228860855103e-01 -3.4903008490800858e-02 + + + <_> + + 0 -1 911 3.5530608147382736e-02 + + + -3.1679518520832062e-02 4.5202499628067017e-01 + + + <_> + + 0 -1 912 1.6297640278935432e-02 + + + 4.4189039617776871e-02 -3.4845370054244995e-01 + + + <_> + + 0 -1 913 9.9985357373952866e-03 + + + -4.8255320638418198e-02 1.6078050434589386e-01 + + + <_> + + 0 -1 914 -5.2390778437256813e-03 + + + 2.3236599564552307e-01 -7.6032742857933044e-02 + + + <_> + + 0 -1 915 -3.2508899457752705e-03 + + + 5.4369390010833740e-02 -9.1040253639221191e-02 + + + <_> + + 0 -1 916 5.5640790611505508e-02 + + + -3.8811128586530685e-02 4.2034021019935608e-01 + + + <_> + + 0 -1 917 3.3998981118202209e-02 + + + 2.2251330316066742e-02 -3.5615360736846924e-01 + + + <_> + + 0 -1 918 -4.3103890493512154e-03 + + + 1.1287429928779602e-01 -1.7630730569362640e-01 + + + <_> + + 0 -1 919 -7.9246461391448975e-03 + + + -1.0992339998483658e-01 3.5099629312753677e-02 + + + <_> + + 0 -1 920 4.4273380190134048e-02 + + + 2.8094569221138954e-02 -6.0921418666839600e-01 + + + <_> + + 0 -1 921 5.9907328337430954e-02 + + + 9.7544339951127768e-04 -9.0523207187652588e-01 + + + <_> + + 0 -1 922 3.3378869295120239e-02 + + + 1.7723279073834419e-02 -8.5254609584808350e-01 + + + <_> + + 0 -1 923 1.4694170095026493e-02 + + + -4.9031510949134827e-02 2.7998331189155579e-01 + + + <_> + + 0 -1 924 -5.3877499885857105e-03 + + + 1.8219049274921417e-01 -8.2382522523403168e-02 + + + <_> + + 0 -1 925 -1.7976889386773109e-02 + + + -1.9384689629077911e-01 8.4984757006168365e-02 + + + <_> + + 0 -1 926 -4.4651641510426998e-03 + + + 1.7632910609245300e-01 -9.5075771212577820e-02 + + + <_> + + 0 -1 927 6.9372296333312988e-02 + + + 3.1770321074873209e-03 -6.7554402351379395e-01 + + + <_> + + 0 -1 928 -1.7002269625663757e-02 + + + -3.3827948570251465e-01 4.4731728732585907e-02 + + + <_> + + 0 -1 929 1.7274240031838417e-02 + + + -2.4769710376858711e-02 1.1852029711008072e-01 + + + <_> + + 0 -1 930 4.0388729423284531e-02 + + + -3.2967679202556610e-02 4.7323140501976013e-01 + + + <_> + + 0 -1 931 1.4215400442481041e-02 + + + 2.9846860095858574e-02 -4.4157060980796814e-01 + + + <_> + + 0 -1 932 4.1627719998359680e-02 + + + -4.5953918248414993e-02 3.2978388667106628e-01 + + + <_> + + 0 -1 933 -1.7416840419173241e-03 + + + 8.7286308407783508e-02 -8.8862203061580658e-02 + + + <_> + + 0 -1 934 -9.8077040165662766e-03 + + + -2.1026679873466492e-01 7.7401876449584961e-02 + + + <_> + + 0 -1 935 2.1836649626493454e-02 + + + 4.3211769312620163e-02 -1.5330420434474945e-01 + + + <_> + + 0 -1 936 -7.0743098855018616e-02 + + + 3.3019039034843445e-01 -5.2747949957847595e-02 + + + <_> + + 0 -1 937 -1.1181020177900791e-02 + + + -1.1493939906358719e-01 2.7858460322022438e-02 + + + <_> + + 0 -1 938 -1.4623560011386871e-02 + + + 3.2327070832252502e-01 -4.4166058301925659e-02 + + + <_> + + 0 -1 939 -9.6702557057142258e-03 + + + -1.8157319724559784e-01 3.6154530942440033e-02 + + + <_> + + 0 -1 940 8.3439601585268974e-03 + + + -5.2473910152912140e-02 2.7444839477539062e-01 + + + <_> + + 0 -1 941 2.2970559075474739e-02 + + + 3.4930050373077393e-02 -1.5773670375347137e-01 + + + <_> + + 0 -1 942 -8.2734245806932449e-03 + + + 1.1612790077924728e-01 -1.1965770274400711e-01 + + + <_> + + 0 -1 943 8.7074404582381248e-03 + + + -4.0829788893461227e-02 1.0481330007314682e-01 + + + <_> + + 0 -1 944 -1.8825819715857506e-02 + + + -3.8794550299644470e-01 4.7350700944662094e-02 + + + <_> + + 0 -1 945 -7.2092940099537373e-03 + + + -1.9886960089206696e-01 7.5952850282192230e-02 + + + <_> + + 0 -1 946 1.6543369565624744e-04 + + + -1.0674829781055450e-01 1.5510599315166473e-01 + + + <_> + + 0 -1 947 8.9294537901878357e-03 + + + -6.7059643566608429e-02 9.0206786990165710e-02 + + + <_> + + 0 -1 948 3.1991640571504831e-03 + + + 7.4445746839046478e-02 -1.9682839512825012e-01 + + + <_> + + 0 -1 949 -1.1280879698460922e-04 + + + 7.9703390598297119e-02 -1.3661189377307892e-01 + + + <_> + + 0 -1 950 -6.9613799452781677e-02 + + + -2.1010529994964600e-01 6.5771616995334625e-02 + + + <_> + + 0 -1 951 -2.6066679507493973e-02 + + + 2.8696510195732117e-01 -5.7495791465044022e-02 + + + <_> + + 0 -1 952 1.2050740420818329e-02 + + + -4.6820510178804398e-02 2.7994769811630249e-01 + + + <_> + + 0 -1 953 -3.9625849574804306e-02 + + + -3.7054508924484253e-01 1.1476139537990093e-02 + + + <_> + + 0 -1 954 -2.7379901148378849e-03 + + + 9.4371132552623749e-02 -1.6203230619430542e-01 + + + <_> + + 0 -1 955 -6.5262563526630402e-02 + + + -6.7808389663696289e-01 1.9430469721555710e-02 + + + <_> + + 0 -1 956 2.3191619664430618e-02 + + + 2.6134310290217400e-02 -4.6664249897003174e-01 + + + <_> + + 0 -1 957 4.7741930931806564e-02 + + + -2.5291189551353455e-02 2.9092490673065186e-01 + + + <_> + + 0 -1 958 -1.2830020487308502e-01 + + + -8.7187117338180542e-01 1.3883540406823158e-02 + + + <_> + + 0 -1 959 -4.2689260095357895e-02 + + + -6.7644822597503662e-01 6.8771280348300934e-03 + + + <_> + + 0 -1 960 6.2811248935759068e-03 + + + -6.4803749322891235e-02 2.0994420349597931e-01 + + + <_> + + 0 -1 961 2.7532080188393593e-02 + + + 1.5366540290415287e-02 -2.1457369625568390e-01 + + + <_> + + 0 -1 962 -3.4494648571126163e-04 + + + 1.1829499900341034e-01 -1.0641119629144669e-01 + + + <_> + + 0 -1 963 -3.2187011092901230e-02 + + + 2.0676319301128387e-01 -2.7804749086499214e-02 + + + <_> + + 0 -1 964 -2.4451729841530323e-03 + + + -1.8970219790935516e-01 7.6612837612628937e-02 + + + <_> + + 0 -1 965 3.9631120860576630e-02 + + + 1.1457280255854130e-02 -4.4112280011177063e-01 + + + <_> + + 0 -1 966 -9.0082110837101936e-03 + + + -2.0329099893569946e-01 7.1997888386249542e-02 + + + <_> + + 0 -1 967 -6.0594908893108368e-02 + + + 2.5831830501556396e-01 -3.2274000346660614e-02 + + + <_> + + 0 -1 968 3.3678639680147171e-02 + + + 3.6565639078617096e-02 -3.3233150839805603e-01 + + + <_> + + 0 -1 969 1.4565410092473030e-02 + + + -4.9269210547208786e-02 1.8280670046806335e-01 + + + <_> + + 0 -1 970 4.0103439241647720e-03 + + + -1.2435600161552429e-01 1.1247640103101730e-01 + + + <_> + + 0 -1 971 1.7989509506151080e-03 + + + -5.4675988852977753e-02 1.0701840370893478e-01 + + + <_> + + 0 -1 972 -1.6359580331481993e-04 + + + 8.1755228340625763e-02 -1.6235500574111938e-01 + + + <_> + + 0 -1 973 -3.1993899494409561e-02 + + + 1.8631230294704437e-01 -1.7350630834698677e-02 + + + <_> + + 0 -1 974 -8.1737667322158813e-02 + + + -7.5961482524871826e-01 1.4419900253415108e-02 + + + <_> + + 0 -1 975 -8.8262550532817841e-02 + + + -1. 5.3146481513977051e-04 + + + <_> + + 0 -1 976 -5.7997900992631912e-02 + + + -8.9391511678695679e-01 1.2495099566876888e-02 + + + <_> + + 0 -1 977 2.0691409707069397e-02 + + + -3.7167508155107498e-02 9.7208552062511444e-02 + + + <_> + + 0 -1 978 -6.0336058959364891e-03 + + + 1.7547790706157684e-01 -8.6916856467723846e-02 + + + <_> + + 0 -1 979 1.5789760649204254e-01 + + + 3.0604960396885872e-02 -2.2199299931526184e-01 + + + <_> + + 0 -1 980 3.3271119464188814e-03 + + + 1.1201520264148712e-01 -1.6384710371494293e-01 + + + <_> + + 0 -1 981 1.1383239924907684e-01 + + + 1.8078039865940809e-03 -9.9981439113616943e-01 + + + <_> + + 0 -1 982 3.9188969880342484e-02 + + + -3.9494428783655167e-02 3.4139481186866760e-01 + + + <_> + + 0 -1 983 -4.7382968477904797e-03 + + + -8.1601403653621674e-02 3.5498451441526413e-02 + + + <_> + + 0 -1 984 2.3458160459995270e-02 + + + -4.0767479687929153e-02 3.4792768955230713e-01 + + + <_> + + 0 -1 985 1.6505220904946327e-02 + + + 2.0170280709862709e-02 -1.5532009303569794e-01 + + + <_> + + 0 -1 986 2.0262949168682098e-02 + + + 2.1292379125952721e-02 -6.2611502408981323e-01 + + + <_> + + 0 -1 987 -9.1393236070871353e-03 + + + -1.3637480139732361e-01 6.3891842961311340e-02 + + + <_> + + 0 -1 988 -5.6207980960607529e-02 + + + 4.0671119093894958e-01 -3.3258218318223953e-02 + + + <_> + + 0 -1 989 6.6868839785456657e-03 + + + 6.4174309372901917e-02 -9.3966238200664520e-02 + + + <_> + + 0 -1 990 5.8862278237938881e-03 + + + -6.5789960324764252e-02 2.0181339979171753e-01 + + + <_> + + 0 -1 991 -1.1517380177974701e-01 + + + -1. 2.5347759947180748e-03 + + + <_> + + 0 -1 992 5.5793710052967072e-03 + + + 7.0642203092575073e-02 -1.9637429714202881e-01 + + + <_> + + 0 -1 993 3.2180000096559525e-02 + + + -1.4737719669938087e-02 2.2420160472393036e-01 + + + <_> + + 0 -1 994 -9.1598782455548644e-04 + + + 1.1478749662637711e-01 -1.1767079681158066e-01 + + + + + <_> + 83 + -7.7573090791702271e-01 + + <_> + + 0 -1 995 9.1346232220530510e-03 + + + 8.8698662817478180e-02 -3.8595649600028992e-01 + + + <_> + + 0 -1 996 -2.4696369655430317e-03 + + + 1.6772060096263885e-01 -1.4649170637130737e-01 + + + <_> + + 0 -1 997 5.8935020118951797e-02 + + + -1.3394000008702278e-02 6.1832672357559204e-01 + + + <_> + + 0 -1 998 -8.9100059121847153e-03 + + + -2.6950231194496155e-01 7.2939813137054443e-02 + + + <_> + + 0 -1 999 1.7743879929184914e-02 + + + -5.0217188894748688e-02 4.3166020512580872e-01 + + + <_> + + 0 -1 1000 1.1056650429964066e-02 + + + 3.9155859500169754e-02 -5.2860772609710693e-01 + + + <_> + + 0 -1 1001 1.6161320731043816e-02 + + + 6.9581039249897003e-02 -3.7610140442848206e-01 + + + <_> + + 0 -1 1002 -2.7879089117050171e-02 + + + 2.3220659792423248e-01 -5.5979579687118530e-02 + + + <_> + + 0 -1 1003 -1.1556839570403099e-02 + + + -3.1231081485748291e-01 7.4339963495731354e-02 + + + <_> + + 0 -1 1004 -6.9651477038860321e-02 + + + -4.1905689239501953e-01 6.9694789126515388e-03 + + + <_> + + 0 -1 1005 -5.0344727933406830e-03 + + + 1.3183620572090149e-01 -1.9702030718326569e-01 + + + <_> + + 0 -1 1006 -8.6098119616508484e-02 + + + 6.5727752447128296e-01 -9.5664570108056068e-03 + + + <_> + + 0 -1 1007 2.5546319782733917e-02 + + + -4.0136341005563736e-02 5.4847037792205811e-01 + + + <_> + + 0 -1 1008 -2.6870880275964737e-02 + + + -2.5306650996208191e-01 4.4181719422340393e-02 + + + <_> + + 0 -1 1009 9.5859682187438011e-03 + + + -8.1882461905479431e-02 2.6894670724868774e-01 + + + <_> + + 0 -1 1010 2.6683809235692024e-02 + + + 2.6593349874019623e-02 -4.4127041101455688e-01 + + + <_> + + 0 -1 1011 -1.4490840025246143e-02 + + + -3.5697469115257263e-01 7.0072941482067108e-02 + + + <_> + + 0 -1 1012 -2.2448399104177952e-03 + + + 2.0088230073451996e-01 -1.2228170037269592e-01 + + + <_> + + 0 -1 1013 4.8795710317790508e-03 + + + 4.5820981264114380e-02 -3.9498189091682434e-01 + + + <_> + + 0 -1 1014 -6.1262990348041058e-03 + + + -1.8826089799404144e-01 7.8812077641487122e-02 + + + <_> + + 0 -1 1015 1.6952969133853912e-02 + + + -6.1684221029281616e-02 3.3603700995445251e-01 + + + <_> + + 0 -1 1016 -4.5547191984951496e-03 + + + -1.9471390545368195e-01 5.3147189319133759e-02 + + + <_> + + 0 -1 1017 -1.2753040064126253e-03 + + + 1.4800879359245300e-01 -1.4244349300861359e-01 + + + <_> + + 0 -1 1018 2.2060280665755272e-02 + + + -3.5406738519668579e-02 3.3775308728218079e-01 + + + <_> + + 0 -1 1019 2.1050389856100082e-02 + + + 4.2289130389690399e-02 -4.5886451005935669e-01 + + + <_> + + 0 -1 1020 9.5637209713459015e-02 + + + -1.3171649537980556e-02 5.5534982681274414e-01 + + + <_> + + 0 -1 1021 -3.6728319246321917e-03 + + + -1.8842899799346924e-01 9.5458142459392548e-02 + + + <_> + + 0 -1 1022 1.6345079347956926e-04 + + + -6.0444809496402740e-02 1.0536730289459229e-01 + + + <_> + + 0 -1 1023 2.5338289141654968e-01 + + + 1.6026260331273079e-02 -9.9994468688964844e-01 + + + <_> + + 0 -1 1024 -4.6113330870866776e-02 + + + 5.4247987270355225e-01 -2.7890209108591080e-02 + + + <_> + + 0 -1 1025 5.2588270045816898e-03 + + + 7.9867303371429443e-02 -2.0700709521770477e-01 + + + <_> + + 0 -1 1026 -1.3449570536613464e-01 + + + -4.1270101070404053e-01 8.1500215455889702e-03 + + + <_> + + 0 -1 1027 1.6953679732978344e-03 + + + 1.1035349965095520e-01 -1.6802120208740234e-01 + + + <_> + + 0 -1 1028 3.9492141455411911e-02 + + + -1.3410010375082493e-02 3.8447639346122742e-01 + + + <_> + + 0 -1 1029 -9.3634781660512090e-04 + + + 1.0986819863319397e-01 -1.7310489714145660e-01 + + + <_> + + 0 -1 1030 -4.4495709240436554e-02 + + + 1.9471199810504913e-01 -4.0768899023532867e-02 + + + <_> + + 0 -1 1031 6.0630109161138535e-02 + + + -4.2252369225025177e-02 5.1412987709045410e-01 + + + <_> + + 0 -1 1032 7.5067640282213688e-03 + + + 4.2086970061063766e-02 -1.6080400347709656e-01 + + + <_> + + 0 -1 1033 9.9260415881872177e-03 + + + 6.4119532704353333e-02 -2.6215308904647827e-01 + + + <_> + + 0 -1 1034 6.0528520494699478e-02 + + + 2.4189969524741173e-02 -3.6608389019966125e-01 + + + <_> + + 0 -1 1035 -6.8054231815040112e-03 + + + 1.2508389353752136e-01 -1.3889710605144501e-01 + + + <_> + + 0 -1 1036 -2.0940289832651615e-03 + + + 1.3996599614620209e-01 -8.2706399261951447e-02 + + + <_> + + 0 -1 1037 -9.6904346719384193e-03 + + + 2.6681360602378845e-01 -7.1576990187168121e-02 + + + <_> + + 0 -1 1038 1.8320349976420403e-02 + + + 3.1321980059146881e-02 -2.3460610210895538e-01 + + + <_> + + 0 -1 1039 5.0429959082975984e-04 + + + -1.1669719964265823e-01 1.6514649987220764e-01 + + + <_> + + 0 -1 1040 -4.7016288153827190e-03 + + + -1.2006150186061859e-01 5.9200428426265717e-02 + + + <_> + + 0 -1 1041 -1.9926870241761208e-02 + + + -3.9485099911689758e-01 4.1143018752336502e-02 + + + <_> + + 0 -1 1042 7.4013080447912216e-03 + + + -7.6331257820129395e-02 2.1065360307693481e-01 + + + <_> + + 0 -1 1043 1.4879629947245121e-02 + + + 4.7979071736335754e-02 -3.4014761447906494e-01 + + + <_> + + 0 -1 1044 1.5527559816837311e-01 + + + 3.2225880771875381e-02 -4.6938079595565796e-01 + + + <_> + + 0 -1 1045 -7.0786331780254841e-03 + + + 1.2199480086565018e-01 -1.2004940211772919e-01 + + + <_> + + 0 -1 1046 2.9872169718146324e-02 + + + -4.3677508831024170e-02 2.3529820144176483e-01 + + + <_> + + 0 -1 1047 3.0555170029401779e-02 + + + 3.1775880604982376e-02 -5.7825452089309692e-01 + + + <_> + + 0 -1 1048 1.0284570045769215e-02 + + + 4.7202810645103455e-02 -2.9566499590873718e-01 + + + <_> + + 0 -1 1049 1.9808709621429443e-02 + + + -4.5775938779115677e-02 3.3231019973754883e-01 + + + <_> + + 0 -1 1050 2.7218880131840706e-02 + + + 2.5577219203114510e-02 -3.3180880546569824e-01 + + + <_> + + 0 -1 1051 1.4097680337727070e-02 + + + 5.2157420665025711e-02 -2.9358381032943726e-01 + + + <_> + + 0 -1 1052 2.4286569654941559e-01 + + + 1.4692460186779499e-02 -6.9854879379272461e-01 + + + <_> + + 0 -1 1053 1.2419570237398148e-02 + + + -4.7105878591537476e-02 3.6695051193237305e-01 + + + <_> + + 0 -1 1054 1.3503880472853780e-03 + + + 5.3791359066963196e-02 -2.0953659713268280e-01 + + + <_> + + 0 -1 1055 -1.5626290813088417e-02 + + + 2.7888458967208862e-01 -6.0053750872612000e-02 + + + <_> + + 0 -1 1056 1.5850139781832695e-02 + + + -3.0324909836053848e-02 1.0287520289421082e-01 + + + <_> + + 0 -1 1057 -4.0868919342756271e-02 + + + -8.0402207374572754e-01 1.7601499333977699e-02 + + + <_> + + 0 -1 1058 6.4108639955520630e-02 + + + 2.5845379568636417e-03 -5.3854942321777344e-01 + + + <_> + + 0 -1 1059 4.9927100539207458e-02 + + + 2.1863300353288651e-02 -6.1780720949172974e-01 + + + <_> + + 0 -1 1060 1.4655419625341892e-02 + + + 1.9663369283080101e-02 -2.0426170527935028e-01 + + + <_> + + 0 -1 1061 -2.4094810709357262e-02 + + + 3.7609130144119263e-01 -4.0954101830720901e-02 + + + <_> + + 0 -1 1062 2.9417769983410835e-02 + + + -8.6903842166066170e-03 4.0447419881820679e-01 + + + <_> + + 0 -1 1063 -1.4158640056848526e-02 + + + 3.7811711430549622e-01 -4.0321640670299530e-02 + + + <_> + + 0 -1 1064 -4.6754989773035049e-02 + + + 2.2104309499263763e-01 -2.8996109962463379e-02 + + + <_> + + 0 -1 1065 -1.1437949724495411e-02 + + + -2.5033089518547058e-01 5.8214288204908371e-02 + + + <_> + + 0 -1 1066 -4.2598780244588852e-02 + + + 3.7562200427055359e-01 -1.6349090263247490e-02 + + + <_> + + 0 -1 1067 -1.5201159752905369e-02 + + + -3.5637819766998291e-01 3.8690369576215744e-02 + + + <_> + + 0 -1 1068 4.3378848582506180e-02 + + + 3.3045639283955097e-03 -4.6729469299316406e-01 + + + <_> + + 0 -1 1069 5.5153011344373226e-03 + + + -8.3583608269691467e-02 1.8793170154094696e-01 + + + <_> + + 0 -1 1070 -7.8126927837729454e-03 + + + -1.6586859524250031e-01 4.3801128864288330e-02 + + + <_> + + 0 -1 1071 4.1652601212263107e-02 + + + -3.1804520636796951e-02 4.3517521023750305e-01 + + + <_> + + 0 -1 1072 3.4417589195072651e-03 + + + 4.2282279580831528e-02 -1.3088959455490112e-01 + + + <_> + + 0 -1 1073 1.3004569336771965e-04 + + + -1.1260010302066803e-01 1.3964599370956421e-01 + + + <_> + + 0 -1 1074 -7.7347733080387115e-02 + + + 7.0750647783279419e-01 -5.4134069941937923e-03 + + + <_> + + 0 -1 1075 -1.6143550164997578e-03 + + + 1.1920420080423355e-01 -1.1884269863367081e-01 + + + <_> + + 0 -1 1076 -9.8279246594756842e-04 + + + 6.3156276941299438e-02 -5.2781101316213608e-02 + + + <_> + + 0 -1 1077 -4.5667469501495361e-02 + + + -3.4500870108604431e-01 4.4600728899240494e-02 + + + + + <_> + 101 + -6.9763368368148804e-01 + + <_> + + 0 -1 1078 7.3315978050231934e-02 + + + -1.1410109698772430e-01 4.0035811066627502e-01 + + + <_> + + 0 -1 1079 2.5275669991970062e-02 + + + -7.2013877332210541e-02 3.6095780134201050e-01 + + + <_> + + 0 -1 1080 1.8873859196901321e-02 + + + -1.7234370112419128e-01 1.8223220109939575e-01 + + + <_> + + 0 -1 1081 7.4607720307540148e-05 + + + -8.1627286970615387e-02 8.8888503611087799e-02 + + + <_> + + 0 -1 1082 4.2250280966982245e-04 + + + -1.2840239703655243e-01 1.1791419982910156e-01 + + + <_> + + 0 -1 1083 1.4402460306882858e-02 + + + 2.0960340276360512e-02 1.9024699926376343e-01 + + + <_> + + 0 -1 1084 -2.0460959058254957e-03 + + + 9.5712497830390930e-02 -2.1517060697078705e-01 + + + <_> + + 0 -1 1085 7.1128448471426964e-03 + + + -5.6100480258464813e-02 2.0984320342540741e-01 + + + <_> + + 0 -1 1086 -6.5832170657813549e-03 + + + -2.1138189733028412e-01 7.6094150543212891e-02 + + + <_> + + 0 -1 1087 -4.1252959636040032e-04 + + + 1.3107340037822723e-01 -1.5670859813690186e-01 + + + <_> + + 0 -1 1088 -4.4330831617116928e-02 + + + 5.4048037528991699e-01 -1.9059479236602783e-02 + + + <_> + + 0 -1 1089 1.1700130067765713e-02 + + + 5.1712401211261749e-02 -1.7216169834136963e-01 + + + <_> + + 0 -1 1090 3.5091140307486057e-03 + + + -7.6767951250076294e-02 1.7776259779930115e-01 + + + <_> + + 0 -1 1091 1.5597569756209850e-02 + + + 3.8307890295982361e-02 -1.4730019867420197e-01 + + + <_> + + 0 -1 1092 -3.6285370588302612e-02 + + + 3.5347661375999451e-01 -4.5018490403890610e-02 + + + <_> + + 0 -1 1093 -4.5118298381567001e-02 + + + -5.7074141502380371e-01 1.0646710172295570e-02 + + + <_> + + 0 -1 1094 1.3734580017626286e-02 + + + 6.6018357872962952e-02 -2.0480890572071075e-01 + + + <_> + + 0 -1 1095 -2.7120979502797127e-02 + + + 4.8094209283590317e-02 -5.1394961774349213e-02 + + + <_> + + 0 -1 1096 -1.5354059869423509e-03 + + + -2.3548009991645813e-01 5.3074609488248825e-02 + + + <_> + + 0 -1 1097 3.6000818945467472e-03 + + + -5.8944340795278549e-02 1.1825410276651382e-01 + + + <_> + + 0 -1 1098 6.8916529417037964e-03 + + + -5.0014488399028778e-02 2.6909399032592773e-01 + + + <_> + + 0 -1 1099 3.5373449791222811e-03 + + + -1.2947039306163788e-01 8.8697038590908051e-02 + + + <_> + + 0 -1 1100 -4.1431561112403870e-03 + + + -1.7883630096912384e-01 6.9098107516765594e-02 + + + <_> + + 0 -1 1101 -1.0762579739093781e-01 + + + -1. 4.7263409942388535e-03 + + + <_> + + 0 -1 1102 9.7946207970380783e-03 + + + -5.4038770496845245e-02 2.4115470051765442e-01 + + + <_> + + 0 -1 1103 1.0054280050098896e-02 + + + -8.0624893307685852e-02 1.1627560108900070e-01 + + + <_> + + 0 -1 1104 -8.7350717512890697e-04 + + + -1.8193979561328888e-01 7.7468506991863251e-02 + + + <_> + + 0 -1 1105 9.4283261569216847e-04 + + + 4.6265050768852234e-02 -2.2732029855251312e-01 + + + <_> + + 0 -1 1106 3.5424059024080634e-04 + + + -1.1824289709329605e-01 1.1095699667930603e-01 + + + <_> + + 0 -1 1107 -3.8587789982557297e-02 + + + -3.0286869406700134e-01 3.1856179703027010e-03 + + + <_> + + 0 -1 1108 -4.9504679627716541e-03 + + + 1.3758100569248199e-01 -9.1690346598625183e-02 + + + <_> + + 0 -1 1109 -2.5453630834817886e-02 + + + -2.3013520240783691e-01 1.9747929647564888e-02 + + + <_> + + 0 -1 1110 1.5836700797080994e-02 + + + -4.5252159237861633e-02 2.9337081313133240e-01 + + + <_> + + 0 -1 1111 1.0379879735410213e-02 + + + 5.9706691652536392e-02 -1.6415530443191528e-01 + + + <_> + + 0 -1 1112 4.3178450316190720e-02 + + + 6.3460536301136017e-02 -2.1360489726066589e-01 + + + <_> + + 0 -1 1113 -2.2508678957819939e-03 + + + 1.0645110160112381e-01 -5.9539180248975754e-02 + + + <_> + + 0 -1 1114 5.0743711180984974e-03 + + + -9.4377033412456512e-02 2.2999720275402069e-01 + + + <_> + + 0 -1 1115 -3.0670650303363800e-02 + + + 2.5975760817527771e-01 -2.3188209161162376e-02 + + + <_> + + 0 -1 1116 2.4162670597434044e-03 + + + 8.7919056415557861e-02 -1.9287380576133728e-01 + + + <_> + + 0 -1 1117 -9.3405842781066895e-03 + + + -1.0935559868812561e-01 2.9358500614762306e-02 + + + <_> + + 0 -1 1118 2.0513730123639107e-02 + + + -5.2511349320411682e-02 3.0545449256896973e-01 + + + <_> + + 0 -1 1119 -4.3630380183458328e-02 + + + -4.5310449600219727e-01 1.8261570483446121e-02 + + + <_> + + 0 -1 1120 3.4857920836657286e-03 + + + -9.7093120217323303e-02 1.4877100288867950e-01 + + + <_> + + 0 -1 1121 1.0411609895527363e-02 + + + 4.2915731668472290e-02 -2.4849639832973480e-01 + + + <_> + + 0 -1 1122 -7.5155291706323624e-03 + + + -2.6623341441154480e-01 5.1602318882942200e-02 + + + <_> + + 0 -1 1123 7.2157550603151321e-03 + + + -6.1878159642219543e-02 1.8314969539642334e-01 + + + <_> + + 0 -1 1124 9.1090862406417727e-04 + + + -9.7420282661914825e-02 1.2223699688911438e-01 + + + <_> + + 0 -1 1125 -4.0069910883903503e-01 + + + -8.1831091642379761e-01 4.7453590668737888e-03 + + + <_> + + 0 -1 1126 -4.8033627681434155e-03 + + + 9.4193987548351288e-02 -1.4436510205268860e-01 + + + <_> + + 0 -1 1127 -2.1147429943084717e-02 + + + 2.9532408714294434e-01 -4.4751271605491638e-02 + + + <_> + + 0 -1 1128 1.8602259457111359e-02 + + + -4.2993780225515366e-02 2.9706719517707825e-01 + + + <_> + + 0 -1 1129 -8.1051718443632126e-03 + + + 1.2369229644536972e-01 -1.3246449828147888e-01 + + + <_> + + 0 -1 1130 -8.3215925842523575e-03 + + + -1.9022589921951294e-01 8.9151017367839813e-02 + + + <_> + + 0 -1 1131 3.1376329716295004e-03 + + + 4.1584819555282593e-02 -7.9552896320819855e-02 + + + <_> + + 0 -1 1132 1.6556069254875183e-02 + + + 4.4908858835697174e-02 -3.6947301030158997e-01 + + + <_> + + 0 -1 1133 2.9919730499386787e-02 + + + -3.7720259279012680e-02 2.4280619621276855e-01 + + + <_> + + 0 -1 1134 -5.1988288760185242e-02 + + + -6.9372260570526123e-01 1.8926780670881271e-02 + + + <_> + + 0 -1 1135 7.5528107583522797e-02 + + + -1.2611350044608116e-02 2.5732690095901489e-01 + + + <_> + + 0 -1 1136 -2.5031189434230328e-03 + + + 1.3807280361652374e-01 -9.1662466526031494e-02 + + + <_> + + 0 -1 1137 -5.9646938461810350e-04 + + + -6.3654616475105286e-02 2.5937270373106003e-02 + + + <_> + + 0 -1 1138 1.0319340042769909e-02 + + + 8.3791837096214294e-02 -1.7408309876918793e-01 + + + <_> + + 0 -1 1139 9.3816686421632767e-03 + + + 2.7871530503034592e-02 -1.1141580343246460e-01 + + + <_> + + 0 -1 1140 1.0023410432040691e-02 + + + -6.9966249167919159e-02 2.1900640428066254e-01 + + + <_> + + 0 -1 1141 -8.3700200775638223e-04 + + + 1.0097689926624298e-01 -1.4261360466480255e-01 + + + <_> + + 0 -1 1142 2.2468710318207741e-02 + + + 9.4028212130069733e-02 -1.3807420432567596e-01 + + + <_> + + 0 -1 1143 3.9115209132432938e-02 + + + -5.3969398140907288e-03 6.5187507867813110e-01 + + + <_> + + 0 -1 1144 -1.5670569846406579e-03 + + + 7.0886030793190002e-02 -2.0010609924793243e-01 + + + <_> + + 0 -1 1145 6.0749892145395279e-03 + + + 3.5395938903093338e-02 -4.3918590992689133e-02 + + + <_> + + 0 -1 1146 -4.3166890740394592e-02 + + + 5.9881848096847534e-01 -2.3480180650949478e-02 + + + <_> + + 0 -1 1147 2.3302088957279921e-03 + + + -7.2818689048290253e-02 4.3940208852291107e-02 + + + <_> + + 0 -1 1148 5.5236589163541794e-02 + + + -3.5117920488119125e-02 3.6355149745941162e-01 + + + <_> + + 0 -1 1149 2.7774399146437645e-02 + + + 3.0074290931224823e-02 -1.0026770085096359e-01 + + + <_> + + 0 -1 1150 8.4784086793661118e-03 + + + -5.6243300437927246e-02 2.1711349487304688e-01 + + + <_> + + 0 -1 1151 1.3269360177218914e-02 + + + 4.3138369917869568e-02 -1.6429780423641205e-01 + + + <_> + + 0 -1 1152 -3.4072279930114746e-02 + + + 3.9418798685073853e-01 -3.2914638519287109e-02 + + + <_> + + 0 -1 1153 -5.9365970082581043e-03 + + + 6.4854122698307037e-02 -8.6971588432788849e-02 + + + <_> + + 0 -1 1154 -5.1997308619320393e-03 + + + -2.1710740029811859e-01 6.5441012382507324e-02 + + + <_> + + 0 -1 1155 3.0441130511462688e-03 + + + -4.7171641141176224e-02 9.4662867486476898e-02 + + + <_> + + 0 -1 1156 -2.2375459957402200e-04 + + + 1.1739899963140488e-01 -1.0451590269804001e-01 + + + <_> + + 0 -1 1157 4.9494139850139618e-02 + + + 9.9552040919661522e-03 -8.8205021619796753e-01 + + + <_> + + 0 -1 1158 7.7127031981945038e-02 + + + -3.6638759076595306e-02 3.7156999111175537e-01 + + + <_> + + 0 -1 1159 -3.7054829299449921e-03 + + + 4.6213079243898392e-02 -7.9498499631881714e-02 + + + <_> + + 0 -1 1160 1.3655430078506470e-01 + + + 2.0802579820156097e-02 -6.4692282676696777e-01 + + + <_> + + 0 -1 1161 -1.6919399797916412e-01 + + + -9.0144991874694824e-01 4.3158119660802186e-04 + + + <_> + + 0 -1 1162 5.2525149658322334e-03 + + + 8.6686216294765472e-02 -1.5751640498638153e-01 + + + <_> + + 0 -1 1163 5.7952258735895157e-02 + + + 1.3485850067809224e-03 -1.0001620054244995e+00 + + + <_> + + 0 -1 1164 -3.0681459233164787e-02 + + + -6.7346888780593872e-01 1.7730809748172760e-02 + + + <_> + + 0 -1 1165 -2.8556400910019875e-02 + + + 2.4913530051708221e-01 -2.1807359531521797e-02 + + + <_> + + 0 -1 1166 5.8311191387474537e-03 + + + 1.0109650343656540e-01 -1.2586539983749390e-01 + + + <_> + + 0 -1 1167 2.8870739042758942e-03 + + + -4.5462280511856079e-02 1.4794190227985382e-01 + + + <_> + + 0 -1 1168 -5.3575891070067883e-03 + + + 1.0845459997653961e-01 -2.0636059343814850e-01 + + + <_> + + 0 -1 1169 2.0851830020546913e-02 + + + -2.5641430169343948e-02 1.2000799924135208e-01 + + + <_> + + 0 -1 1170 2.9372319113463163e-03 + + + -5.8832980692386627e-02 2.3967139422893524e-01 + + + <_> + + 0 -1 1171 1.0109069757163525e-02 + + + 4.4724740087985992e-02 -2.5024959444999695e-01 + + + <_> + + 0 -1 1172 6.2002640217542648e-02 + + + 3.1236680224537849e-02 -3.8775479793548584e-01 + + + <_> + + 0 -1 1173 1.7331680282950401e-03 + + + -7.6642520725727081e-02 5.8738309890031815e-02 + + + <_> + + 0 -1 1174 -4.6648900955915451e-02 + + + 4.7800371050834656e-01 -2.8223259374499321e-02 + + + <_> + + 0 -1 1175 -4.0585011243820190e-02 + + + 1.9591329991817474e-01 -2.9608549550175667e-02 + + + <_> + + 0 -1 1176 1.4297359623014927e-02 + + + 8.0422781407833099e-02 -2.0024399459362030e-01 + + + <_> + + 0 -1 1177 -1.4215649571269751e-03 + + + 9.7693942487239838e-02 -1.3090120255947113e-01 + + + <_> + + 0 -1 1178 5.2683628164231777e-03 + + + -5.8376371860504150e-02 2.4378040432929993e-01 + + + + + <_> + 104 + -6.8976742029190063e-01 + + <_> + + 0 -1 1179 -2.6198190171271563e-03 + + + 1.8673700094223022e-01 -1.9126529991626740e-01 + + + <_> + + 0 -1 1180 -2.8629099950194359e-02 + + + 1.2887109816074371e-01 -2.6186849921941757e-02 + + + <_> + + 0 -1 1181 7.1718869730830193e-03 + + + 8.8158592581748962e-02 -2.0327340066432953e-01 + + + <_> + + 0 -1 1182 1.1641040444374084e-02 + + + -2.1058250218629837e-02 1.7591789364814758e-01 + + + <_> + + 0 -1 1183 5.6764329783618450e-03 + + + 4.9941159784793854e-02 -2.7329298853874207e-01 + + + <_> + + 0 -1 1184 -4.4392690062522888e-02 + + + 5.6766128540039062e-01 -1.8674779683351517e-02 + + + <_> + + 0 -1 1185 1.3367610517889261e-04 + + + -1.2990309298038483e-01 1.3542290031909943e-01 + + + <_> + + 0 -1 1186 -4.4111948460340500e-02 + + + 2.2684830427169800e-01 -1.3318399898707867e-02 + + + <_> + + 0 -1 1187 2.9443150851875544e-03 + + + 4.3161459267139435e-02 -2.9311171174049377e-01 + + + <_> + + 0 -1 1188 3.5300010349601507e-03 + + + 7.7193722128868103e-02 -2.6324981451034546e-01 + + + <_> + + 0 -1 1189 1.0119210183620453e-01 + + + -5.4924260824918747e-02 3.2430219650268555e-01 + + + <_> + + 0 -1 1190 -2.2348569706082344e-02 + + + 3.0803111195564270e-01 -2.2518489509820938e-02 + + + <_> + + 0 -1 1191 6.4755380153656006e-03 + + + -1.2045770138502121e-01 1.3186110556125641e-01 + + + <_> + + 0 -1 1192 1.0904319584369659e-02 + + + 1.0217989981174469e-01 -1.8308849632740021e-01 + + + <_> + + 0 -1 1193 -1.1256629601120949e-02 + + + -2.9186639189720154e-01 5.5491220206022263e-02 + + + <_> + + 0 -1 1194 3.6791800521314144e-03 + + + -5.0614688545465469e-02 8.2663312554359436e-02 + + + <_> + + 0 -1 1195 -9.1721288859844208e-02 + + + -7.7127552032470703e-01 1.9312959164381027e-02 + + + <_> + + 0 -1 1196 4.0099889039993286e-02 + + + 7.8663527965545654e-03 -8.1302827596664429e-01 + + + <_> + + 0 -1 1197 -5.4956428706645966e-02 + + + 2.9059520363807678e-01 -5.9825580567121506e-02 + + + <_> + + 0 -1 1198 2.4804650247097015e-01 + + + 1.1665189638733864e-02 -6.9121950864791870e-01 + + + <_> + + 0 -1 1199 -3.4284800291061401e-02 + + + 4.5358398556709290e-01 -3.2071251422166824e-02 + + + <_> + + 0 -1 1200 2.5439230725169182e-02 + + + 1.9467150792479515e-02 -3.7927991151809692e-01 + + + <_> + + 0 -1 1201 -1.2720660306513309e-02 + + + -2.1211430430412292e-01 6.1533831059932709e-02 + + + <_> + + 0 -1 1202 1.0831000283360481e-02 + + + -5.1443681120872498e-02 1.6947689652442932e-01 + + + <_> + + 0 -1 1203 -2.1931570023298264e-02 + + + 2.4839389324188232e-01 -5.6636359542608261e-02 + + + <_> + + 0 -1 1204 2.9397898912429810e-01 + + + 1.1411529965698719e-02 -9.3696069717407227e-01 + + + <_> + + 0 -1 1205 -1.6342259943485260e-02 + + + -3.1589549779891968e-01 4.4371981173753738e-02 + + + <_> + + 0 -1 1206 -4.4280499219894409e-02 + + + 2.0337340235710144e-01 -2.1462319418787956e-02 + + + <_> + + 0 -1 1207 2.6503309607505798e-01 + + + 1.1633150279521942e-02 -9.1220170259475708e-01 + + + <_> + + 0 -1 1208 -7.6378479599952698e-02 + + + 1.8688270449638367e-01 -1.9672080874443054e-02 + + + <_> + + 0 -1 1209 -1.0061570443212986e-02 + + + -2.6462039351463318e-01 4.6620260924100876e-02 + + + <_> + + 0 -1 1210 2.4921730160713196e-02 + + + -1.9131390377879143e-02 2.0154500007629395e-01 + + + <_> + + 0 -1 1211 1.5098409676284064e-05 + + + -1.6241690516471863e-01 7.6183967292308807e-02 + + + <_> + + 0 -1 1212 -1.0081910341978073e-01 + + + -1. 7.4751500505954027e-04 + + + <_> + + 0 -1 1213 6.5058596432209015e-02 + + + -4.0468640625476837e-02 3.5160079598426819e-01 + + + <_> + + 0 -1 1214 -1.2190239876508713e-01 + + + -5.3624558448791504e-01 1.8637020140886307e-02 + + + <_> + + 0 -1 1215 -9.8520738538354635e-04 + + + 1.1398199945688248e-01 -1.1298830062150955e-01 + + + <_> + + 0 -1 1216 -2.5300619006156921e-01 + + + -4.3375909328460693e-01 1.2367400340735912e-02 + + + <_> + + 0 -1 1217 7.5246659107506275e-03 + + + 6.7355476319789886e-02 -1.8583969771862030e-01 + + + <_> + + 0 -1 1218 4.8102210275828838e-03 + + + -6.5870061516761780e-02 1.2848910689353943e-01 + + + <_> + + 0 -1 1219 -1.4562129508703947e-03 + + + 1.8110689520835876e-01 -1.1248459666967392e-01 + + + <_> + + 0 -1 1220 -5.6546321138739586e-03 + + + 1.0369840264320374e-01 -1.4115570485591888e-01 + + + <_> + + 0 -1 1221 -3.1951289623975754e-02 + + + -3.2971608638763428e-01 4.8281811177730560e-02 + + + <_> + + 0 -1 1222 4.2190380394458771e-02 + + + -1.1644810438156128e-02 1.3701300323009491e-01 + + + <_> + + 0 -1 1223 1.2606659904122353e-02 + + + -6.0395881533622742e-02 2.4210059642791748e-01 + + + <_> + + 0 -1 1224 -6.0083861462771893e-03 + + + 9.5677606761455536e-02 -2.0248259603977203e-01 + + + <_> + + 0 -1 1225 4.0676388889551163e-02 + + + -3.8506429642438889e-02 3.9824029803276062e-01 + + + <_> + + 0 -1 1226 -1.3010219670832157e-02 + + + -7.7870443463325500e-02 3.2533310353755951e-02 + + + <_> + + 0 -1 1227 -5.6646969169378281e-02 + + + -9.5293551683425903e-01 1.7375659197568893e-02 + + + <_> + + 0 -1 1228 3.7307970225811005e-02 + + + -3.3261440694332123e-02 4.6856319904327393e-01 + + + <_> + + 0 -1 1229 -2.7986379340291023e-02 + + + -4.6356698870658875e-01 2.8524029999971390e-02 + + + <_> + + 0 -1 1230 -7.5014896690845490e-02 + + + 2.4519899487495422e-01 -1.5830159187316895e-02 + + + <_> + + 0 -1 1231 2.7673080563545227e-02 + + + -3.6458358168601990e-02 3.7215578556060791e-01 + + + <_> + + 0 -1 1232 -1.7312960699200630e-02 + + + -2.2117659449577332e-01 4.3232619762420654e-02 + + + <_> + + 0 -1 1233 -5.8893948793411255e-02 + + + 3.9726749062538147e-01 -3.7632528692483902e-02 + + + <_> + + 0 -1 1234 1.3193679973483086e-02 + + + 2.4857729673385620e-02 -1.7514359951019287e-01 + + + <_> + + 0 -1 1235 3.8230679929256439e-02 + + + 2.9635110870003700e-02 -4.3452748656272888e-01 + + + <_> + + 0 -1 1236 1.6845399513840675e-02 + + + 3.9338748902082443e-02 -2.3765720427036285e-01 + + + <_> + + 0 -1 1237 -1.1559460312128067e-01 + + + -4.0006878972053528e-01 3.2390538603067398e-02 + + + <_> + + 0 -1 1238 -1.7385910032317042e-03 + + + 4.8545818775892258e-02 -6.1474680900573730e-02 + + + <_> + + 0 -1 1239 -3.3697668462991714e-02 + + + 2.4345000088214874e-01 -6.5504603087902069e-02 + + + <_> + + 0 -1 1240 -3.4722799062728882e-01 + + + -3.3612060546875000e-01 1.5501200221478939e-02 + + + <_> + + 0 -1 1241 5.8668039739131927e-02 + + + 6.8068057298660278e-02 -2.2104929387569427e-01 + + + <_> + + 0 -1 1242 2.3718189448118210e-02 + + + -1.4779569581151009e-02 4.7328341007232666e-01 + + + <_> + + 0 -1 1243 2.8812700882554054e-02 + + + 3.3309880644083023e-02 -4.6797698736190796e-01 + + + <_> + + 0 -1 1244 4.1023749858140945e-02 + + + -2.8293000534176826e-02 4.9427551031112671e-01 + + + <_> + + 0 -1 1245 -1.2017590051982552e-04 + + + 1.0363650321960449e-01 -1.2107490003108978e-01 + + + <_> + + 0 -1 1246 -1.0908070206642151e-01 + + + -1. 3.2971999607980251e-03 + + + <_> + + 0 -1 1247 -4.5967359095811844e-02 + + + 6.4819461107254028e-01 -1.9233519211411476e-02 + + + <_> + + 0 -1 1248 -1.9345719367265701e-02 + + + -3.3145549893379211e-01 3.9008539170026779e-02 + + + <_> + + 0 -1 1249 1.2312790378928185e-02 + + + 4.1029628366231918e-02 -2.7943921089172363e-01 + + + <_> + + 0 -1 1250 2.1535221021622419e-03 + + + -6.7545056343078613e-02 1.1647740006446838e-01 + + + <_> + + 0 -1 1251 -3.2158788293600082e-02 + + + 5.4741638898849487e-01 -2.3730229586362839e-02 + + + <_> + + 0 -1 1252 -2.7592359110713005e-02 + + + -7.5319421291351318e-01 8.4066214039921761e-03 + + + <_> + + 0 -1 1253 2.2264510393142700e-02 + + + 1.2146740220487118e-02 -9.0291297435760498e-01 + + + <_> + + 0 -1 1254 1.5361379832029343e-02 + + + -3.1641189008951187e-02 3.2132801413536072e-01 + + + <_> + + 0 -1 1255 -1.2360660359263420e-02 + + + 2.9248631000518799e-01 -4.5303758233785629e-02 + + + <_> + + 0 -1 1256 2.2978749126195908e-02 + + + -1.2054479680955410e-02 1.9060949981212616e-01 + + + <_> + + 0 -1 1257 2.3296380415558815e-02 + + + 3.1409051269292831e-02 -5.1856082677841187e-01 + + + <_> + + 0 -1 1258 5.7384249521419406e-04 + + + -1.0293489694595337e-01 8.1548452377319336e-02 + + + <_> + + 0 -1 1259 -3.3020470291376114e-02 + + + 4.2470559477806091e-01 -4.4794678688049316e-02 + + + <_> + + 0 -1 1260 -2.1713029593229294e-02 + + + -1.4825260639190674e-01 1.2959879823029041e-02 + + + <_> + + 0 -1 1261 -9.7430922323837876e-05 + + + 1.1899639666080475e-01 -1.4753970503807068e-01 + + + <_> + + 0 -1 1262 -9.2907734215259552e-03 + + + -1.1635430157184601e-01 5.4104641079902649e-02 + + + <_> + + 0 -1 1263 3.7244848906993866e-02 + + + -3.4421201795339584e-02 3.7943929433822632e-01 + + + <_> + + 0 -1 1264 1.5277029573917389e-01 + + + 7.2725401259958744e-03 -3.4155088663101196e-01 + + + <_> + + 0 -1 1265 -1.2663450092077255e-02 + + + -3.0596670508384705e-01 3.8231261074542999e-02 + + + <_> + + 0 -1 1266 -7.4888423085212708e-02 + + + -3.4658950567245483e-01 1.5501650050282478e-02 + + + <_> + + 0 -1 1267 -4.0114589035511017e-02 + + + 3.2629820704460144e-01 -4.1313670575618744e-02 + + + <_> + + 0 -1 1268 -9.6492111682891846e-02 + + + 1.0172849893569946e-01 -1.7156010493636131e-02 + + + <_> + + 0 -1 1269 -1.6712839901447296e-01 + + + -7.7655118703842163e-01 1.8029559403657913e-02 + + + <_> + + 0 -1 1270 -8.2981940358877182e-03 + + + -1.4397139847278595e-01 5.8948140591382980e-02 + + + <_> + + 0 -1 1271 -3.7844169419258833e-03 + + + 1.7095179855823517e-01 -7.8256443142890930e-02 + + + <_> + + 0 -1 1272 -1.6076420247554779e-01 + + + 2.3138229548931122e-01 -1.3428050093352795e-02 + + + <_> + + 0 -1 1273 6.4544437918812037e-04 + + + -1.4424400031566620e-01 8.3287820219993591e-02 + + + <_> + + 0 -1 1274 2.2737309336662292e-02 + + + -3.4155819565057755e-02 3.5519808530807495e-01 + + + <_> + + 0 -1 1275 -3.9030050393193960e-03 + + + -1.8736769258975983e-01 6.4628012478351593e-02 + + + <_> + + 0 -1 1276 -5.1145430654287338e-02 + + + 6.6892707347869873e-01 -1.1180049739778042e-02 + + + <_> + + 0 -1 1277 -6.0482369735836983e-03 + + + 1.8622750043869019e-01 -6.3018701970577240e-02 + + + <_> + + 0 -1 1278 1.1743569746613503e-02 + + + 2.5449279695749283e-02 -1.3331249356269836e-01 + + + <_> + + 0 -1 1279 8.4120890824124217e-04 + + + -9.3333467841148376e-02 1.3315880298614502e-01 + + + <_> + + 0 -1 1280 -3.7756171077489853e-02 + + + -2.3138800263404846e-01 4.0569789707660675e-02 + + + <_> + + 0 -1 1281 -2.0867560058832169e-02 + + + 1.0056090354919434e-01 -1.1744190007448196e-01 + + + <_> + + 0 -1 1282 -3.9802178740501404e-02 + + + -1.1585719883441925e-01 1.2668189406394958e-01 + + + + + <_> + 111 + -6.8169009685516357e-01 + + <_> + + 0 -1 1283 8.4546189755201340e-03 + + + -1.6289660334587097e-01 1.9834390282630920e-01 + + + <_> + + 0 -1 1284 5.1610451191663742e-02 + + + -3.0827090144157410e-02 3.3742550015449524e-01 + + + <_> + + 0 -1 1285 -6.4909443259239197e-02 + + + 2.8602281212806702e-01 -5.9848651289939880e-02 + + + <_> + + 0 -1 1286 -4.3951408006250858e-03 + + + 1.1302659660577774e-01 -1.2632089853286743e-01 + + + <_> + + 0 -1 1287 -8.2756802439689636e-02 + + + -6.0790950059890747e-01 2.1967180073261261e-02 + + + <_> + + 0 -1 1288 -4.8698862083256245e-03 + + + 8.5866190493106842e-02 -8.9009523391723633e-02 + + + <_> + + 0 -1 1289 9.1512441635131836e-02 + + + -5.3345348685979843e-02 2.6732870936393738e-01 + + + <_> + + 0 -1 1290 3.6815661005675793e-03 + + + 7.0915699005126953e-02 -1.7941209673881531e-01 + + + <_> + + 0 -1 1291 6.3032708130776882e-03 + + + 1.2378150224685669e-01 -1.2391480058431625e-01 + + + <_> + + 0 -1 1292 5.8764131972566247e-04 + + + -6.3813656568527222e-02 9.5545768737792969e-02 + + + <_> + + 0 -1 1293 1.4680320397019386e-02 + + + -4.9183528870344162e-02 2.9040598869323730e-01 + + + <_> + + 0 -1 1294 3.5624930169433355e-03 + + + -9.7563147544860840e-02 4.8932831734418869e-02 + + + <_> + + 0 -1 1295 -7.4473340064287186e-03 + + + -1.5952460467815399e-01 8.4772646427154541e-02 + + + <_> + + 0 -1 1296 5.4010991007089615e-02 + + + -2.0565150305628777e-02 5.7340717315673828e-01 + + + <_> + + 0 -1 1297 -2.3613919038325548e-03 + + + 1.4957650005817413e-01 -7.5148113071918488e-02 + + + <_> + + 0 -1 1298 4.0665458887815475e-02 + + + 1.4762399718165398e-02 -5.9685671329498291e-01 + + + <_> + + 0 -1 1299 9.3258380889892578e-02 + + + 1.3036210089921951e-02 -6.8643862009048462e-01 + + + <_> + + 0 -1 1300 2.8593749739229679e-03 + + + -5.4904639720916748e-02 9.8074667155742645e-02 + + + <_> + + 0 -1 1301 -4.9756402149796486e-03 + + + 1.6751970350742340e-01 -8.2563832402229309e-02 + + + <_> + + 0 -1 1302 -2.2061138879507780e-03 + + + 7.1486182510852814e-02 -8.4684796631336212e-02 + + + <_> + + 0 -1 1303 4.3787518516182899e-03 + + + 7.5296439230442047e-02 -1.6988970339298248e-01 + + + <_> + + 0 -1 1304 -4.9143321812152863e-03 + + + 1.6274330019950867e-01 -5.7579189538955688e-02 + + + <_> + + 0 -1 1305 -3.0191219411790371e-03 + + + -1.2450099736452103e-01 1.1526980251073837e-01 + + + <_> + + 0 -1 1306 6.8227178417146206e-03 + + + 3.7166971713304520e-02 -1.0093449801206589e-01 + + + <_> + + 0 -1 1307 3.5116981714963913e-02 + + + -4.2997431010007858e-02 3.2959198951721191e-01 + + + <_> + + 0 -1 1308 -1.4400649815797806e-03 + + + -9.8922260105609894e-02 6.7108891904354095e-02 + + + <_> + + 0 -1 1309 -4.6699359081685543e-03 + + + -1.8003439903259277e-01 6.8038396537303925e-02 + + + <_> + + 0 -1 1310 3.7647720426321030e-02 + + + -2.1031750366091728e-02 1.6627119481563568e-01 + + + <_> + + 0 -1 1311 5.1745469681918621e-03 + + + -1.1846090108156204e-01 1.0919190198183060e-01 + + + <_> + + 0 -1 1312 7.7274879440665245e-03 + + + -5.5097330361604691e-02 2.2752280533313751e-01 + + + <_> + + 0 -1 1313 2.9158849269151688e-02 + + + 7.7885583043098450e-02 -1.7775520682334900e-01 + + + <_> + + 0 -1 1314 2.9885378899052739e-04 + + + -7.8875280916690826e-02 5.1163110882043839e-02 + + + <_> + + 0 -1 1315 1.4456070493906736e-04 + + + -1.6097649931907654e-01 8.1574030220508575e-02 + + + <_> + + 0 -1 1316 4.7840740531682968e-02 + + + 1.4210550114512444e-02 -3.1316679716110229e-01 + + + <_> + + 0 -1 1317 4.3943468481302261e-02 + + + -3.1002480536699295e-02 4.2450350522994995e-01 + + + <_> + + 0 -1 1318 -1.7603389918804169e-01 + + + -2.1625219285488129e-01 1.3710640370845795e-02 + + + <_> + + 0 -1 1319 -2.7010550722479820e-02 + + + 4.5448291301727295e-01 -2.8507620096206665e-02 + + + <_> + + 0 -1 1320 6.4534661360085011e-03 + + + -4.9660708755254745e-02 8.3071723580360413e-02 + + + <_> + + 0 -1 1321 -7.1115070022642612e-03 + + + -2.2509810328483582e-01 6.5033361315727234e-02 + + + <_> + + 0 -1 1322 -2.5184849277138710e-02 + + + -1.7480330169200897e-01 1.8751099705696106e-02 + + + <_> + + 0 -1 1323 -8.8047432655002922e-05 + + + 1.2677890062332153e-01 -1.0704579949378967e-01 + + + <_> + + 0 -1 1324 -3.6020219326019287e-02 + + + 2.4649600684642792e-01 -4.9772080034017563e-02 + + + <_> + + 0 -1 1325 7.6084570027887821e-03 + + + 1.0041440278291702e-01 -1.3673840463161469e-01 + + + <_> + + 0 -1 1326 -8.2404967397451401e-03 + + + 1.1703260242938995e-01 -5.2781961858272552e-02 + + + <_> + + 0 -1 1327 -7.2474818443879485e-04 + + + -1.1650030314922333e-01 1.1333490163087845e-01 + + + <_> + + 0 -1 1328 -7.8272278187796474e-05 + + + 6.4425677061080933e-02 -1.5894609689712524e-01 + + + <_> + + 0 -1 1329 -2.0254699047654867e-03 + + + -1.7027080059051514e-01 7.1216866374015808e-02 + + + <_> + + 0 -1 1330 -1.1882030218839645e-01 + + + 3.2878550887107849e-01 -1.5325210057199001e-02 + + + <_> + + 0 -1 1331 -1.6258429735898972e-02 + + + 2.1848890185356140e-01 -5.6253198534250259e-02 + + + <_> + + 0 -1 1332 -6.8429792299866676e-03 + + + -2.3313499987125397e-01 5.7107821106910706e-02 + + + <_> + + 0 -1 1333 3.4939710050821304e-02 + + + -2.7333829551935196e-02 4.5651969313621521e-01 + + + <_> + + 0 -1 1334 2.2979779541492462e-01 + + + 1.4508989639580250e-02 -8.7165087461471558e-01 + + + <_> + + 0 -1 1335 4.3360598385334015e-02 + + + 8.4467595443129539e-03 -8.7500327825546265e-01 + + + <_> + + 0 -1 1336 -1.1806190013885498e-03 + + + 7.8186698257923126e-02 -5.2834209054708481e-02 + + + <_> + + 0 -1 1337 -4.1772681474685669e-01 + + + -8.0729222297668457e-01 1.3048130087554455e-02 + + + <_> + + 0 -1 1338 -4.6315230429172516e-02 + + + 2.9375079274177551e-01 -3.5192389041185379e-02 + + + <_> + + 0 -1 1339 -4.0271300822496414e-02 + + + -5.8174532651901245e-01 1.9768500700592995e-02 + + + <_> + + 0 -1 1340 -4.3012440204620361e-02 + + + 1.0882510244846344e-01 -2.6977609843015671e-02 + + + <_> + + 0 -1 1341 2.8285770677030087e-03 + + + 7.6837047934532166e-02 -1.5720550715923309e-01 + + + <_> + + 0 -1 1342 -3.3204611390829086e-02 + + + -2.3152589797973633e-01 1.5932539477944374e-02 + + + <_> + + 0 -1 1343 -4.8097351100295782e-04 + + + 1.1043740063905716e-01 -1.1589460074901581e-01 + + + <_> + + 0 -1 1344 2.9704240150749683e-03 + + + -3.4243740141391754e-02 6.9107398390769958e-02 + + + <_> + + 0 -1 1345 1.1893190443515778e-02 + + + 8.0122880637645721e-02 -2.0503090322017670e-01 + + + <_> + + 0 -1 1346 -6.3963606953620911e-02 + + + -8.5530751943588257e-01 6.4783529378473759e-03 + + + <_> + + 0 -1 1347 -5.6093540042638779e-03 + + + 1.6278949379920959e-01 -1.0079070180654526e-01 + + + <_> + + 0 -1 1348 7.5979339890182018e-03 + + + 5.4123409092426300e-02 -1.2431269884109497e-01 + + + <_> + + 0 -1 1349 1.3480819761753082e-02 + + + -6.3751302659511566e-02 2.5250628590583801e-01 + + + <_> + + 0 -1 1350 -9.4613758847117424e-04 + + + 4.2835868895053864e-02 -7.6837100088596344e-02 + + + <_> + + 0 -1 1351 -3.8062490522861481e-02 + + + 1.9252179563045502e-01 -6.3947133719921112e-02 + + + <_> + + 0 -1 1352 1.2410899996757507e-01 + + + 7.9416595399379730e-03 -4.2653021216392517e-01 + + + <_> + + 0 -1 1353 -9.2228442430496216e-02 + + + -5.5210620164871216e-01 2.8964910656213760e-02 + + + <_> + + 0 -1 1354 1.5106770209968090e-02 + + + 2.7609340846538544e-02 -1.6688449680805206e-01 + + + <_> + + 0 -1 1355 -2.3654250428080559e-02 + + + -3.4379678964614868e-01 3.9513330906629562e-02 + + + <_> + + 0 -1 1356 4.7881390899419785e-02 + + + 8.0661084502935410e-03 -1.8185199797153473e-01 + + + <_> + + 0 -1 1357 8.5415288805961609e-02 + + + -4.6752408146858215e-02 2.7169001102447510e-01 + + + <_> + + 0 -1 1358 3.1524940859526396e-03 + + + -8.6421400308609009e-02 6.8336002528667450e-02 + + + <_> + + 0 -1 1359 -3.0099870637059212e-03 + + + 8.9336208999156952e-02 -1.3626849651336670e-01 + + + <_> + + 0 -1 1360 -5.8112520724534988e-02 + + + -1.9748120009899139e-01 2.6536440476775169e-02 + + + <_> + + 0 -1 1361 1.2775669991970062e-01 + + + -4.9838040024042130e-02 3.4896400570869446e-01 + + + <_> + + 0 -1 1362 1.2011290341615677e-01 + + + -6.3313432037830353e-03 3.7937548756599426e-01 + + + <_> + + 0 -1 1363 4.7567482106387615e-03 + + + 1.0490419715642929e-01 -1.3542570173740387e-01 + + + <_> + + 0 -1 1364 -1.5902349725365639e-02 + + + 6.1786301434040070e-02 -9.8376080393791199e-02 + + + <_> + + 0 -1 1365 -5.6423708796501160e-02 + + + -6.3371032476425171e-01 2.0224599167704582e-02 + + + <_> + + 0 -1 1366 -7.9641327261924744e-02 + + + -1. 8.7428308324888349e-04 + + + <_> + + 0 -1 1367 -2.0731301046907902e-03 + + + 1.3846459984779358e-01 -9.5865301787853241e-02 + + + <_> + + 0 -1 1368 5.8470368385314941e-03 + + + -5.7033840566873550e-02 1.1691799759864807e-01 + + + <_> + + 0 -1 1369 -2.6138950139284134e-02 + + + -2.2362439334392548e-01 5.5546630173921585e-02 + + + <_> + + 0 -1 1370 -6.5781630109995604e-04 + + + 9.2999227344989777e-02 -8.4152117371559143e-02 + + + <_> + + 0 -1 1371 -5.6041389703750610e-02 + + + 3.5072851181030273e-01 -3.1472280621528625e-02 + + + <_> + + 0 -1 1372 9.7799800336360931e-02 + + + 1.0124430060386658e-02 -3.7714061141014099e-01 + + + <_> + + 0 -1 1373 4.5515140518546104e-03 + + + -7.8311361372470856e-02 1.4166970551013947e-01 + + + <_> + + 0 -1 1374 1.0168380104005337e-02 + + + 5.2113991230726242e-02 -2.4422790110111237e-01 + + + <_> + + 0 -1 1375 6.2885403633117676e-02 + + + -1.8255509436130524e-02 6.2847292423248291e-01 + + + <_> + + 0 -1 1376 -4.8064131289720535e-02 + + + -8.6817431449890137e-01 6.6064838320016861e-03 + + + <_> + + 0 -1 1377 1.8479900434613228e-02 + + + 6.9977812469005585e-02 -1.5929399430751801e-01 + + + <_> + + 0 -1 1378 2.4549840018153191e-02 + + + -1.7519120126962662e-02 1.7961919307708740e-01 + + + <_> + + 0 -1 1379 3.9227470755577087e-02 + + + -4.7417990863323212e-02 2.7945789694786072e-01 + + + <_> + + 0 -1 1380 4.1248198598623276e-02 + + + 1.1459370143711567e-02 -4.3477478623390198e-01 + + + <_> + + 0 -1 1381 -8.4321142639964819e-04 + + + 1.2758859992027283e-01 -9.7010560333728790e-02 + + + <_> + + 0 -1 1382 -1.3688740320503712e-02 + + + -1.6236190497875214e-01 4.3290950357913971e-02 + + + <_> + + 0 -1 1383 -5.5982511490583420e-02 + + + -7.5431138277053833e-01 1.5797710046172142e-02 + + + <_> + + 0 -1 1384 7.3578268289566040e-02 + + + -1.4777439646422863e-03 -1.0000350475311279e+00 + + + <_> + + 0 -1 1385 3.7084969226270914e-03 + + + -9.7184643149375916e-02 1.2435329705476761e-01 + + + <_> + + 0 -1 1386 -1.4889879821566865e-05 + + + 7.1465343236923218e-02 -1.6840849816799164e-01 + + + <_> + + 0 -1 1387 1.0487560182809830e-01 + + + 1.5076650306582451e-02 -7.1159482002258301e-01 + + + <_> + + 0 -1 1388 1.2587489560246468e-02 + + + -2.0771300420165062e-02 1.7468680441379547e-01 + + + <_> + + 0 -1 1389 -2.2228389570955187e-04 + + + 1.1781640350818634e-01 -9.2627458274364471e-02 + + + <_> + + 0 -1 1390 -7.7760413289070129e-02 + + + -7.4605411291122437e-01 3.6328181158751249e-03 + + + <_> + + 0 -1 1391 4.5043420046567917e-02 + + + 2.2217869758605957e-02 -5.0052911043167114e-01 + + + <_> + + 0 -1 1392 3.5614410880953074e-03 + + + -5.1213219761848450e-02 8.9986503124237061e-02 + + + <_> + + 0 -1 1393 -7.4102368671447039e-04 + + + 1.3938049972057343e-01 -1.0272219777107239e-01 + + + + + <_> + 107 + -6.0689288377761841e-01 + + <_> + + 0 -1 1394 -8.5600130259990692e-03 + + + 1.6578909754753113e-01 -1.6412919759750366e-01 + + + <_> + + 0 -1 1395 3.0798809602856636e-02 + + + -3.3495649695396423e-02 2.8578650951385498e-01 + + + <_> + + 0 -1 1396 -3.7319411057978868e-04 + + + 1.2523449957370758e-01 -1.2115170061588287e-01 + + + <_> + + 0 -1 1397 -1.9253849983215332e-02 + + + -8.7740883231163025e-02 3.9066571742296219e-02 + + + <_> + + 0 -1 1398 -8.5401646792888641e-03 + + + 1.3152270019054413e-01 -1.3007740676403046e-01 + + + <_> + + 0 -1 1399 1.2424349784851074e-01 + + + 1.9019979983568192e-02 -7.8247052431106567e-01 + + + <_> + + 0 -1 1400 4.0093418210744858e-02 + + + -4.0743768215179443e-02 3.8851749897003174e-01 + + + <_> + + 0 -1 1401 -4.4169559259898961e-05 + + + 4.5526970177888870e-02 -8.8063806295394897e-02 + + + <_> + + 0 -1 1402 -1.7662849277257919e-02 + + + -3.1371811032295227e-01 5.1794338971376419e-02 + + + <_> + + 0 -1 1403 5.2368510514497757e-02 + + + -3.5845998674631119e-02 1.5009739995002747e-01 + + + <_> + + 0 -1 1404 -2.8719279915094376e-02 + + + -1.9849379360675812e-01 7.8099071979522705e-02 + + + <_> + + 0 -1 1405 6.9435790181159973e-02 + + + -5.5073730647563934e-02 2.1780849993228912e-01 + + + <_> + + 0 -1 1406 5.4794438183307648e-02 + + + -3.0223689973354340e-02 6.2993967533111572e-01 + + + <_> + + 0 -1 1407 -1.5315500088036060e-02 + + + -1.5052799880504608e-01 2.0194370299577713e-02 + + + <_> + + 0 -1 1408 2.9001969844102859e-02 + + + -2.0738989114761353e-02 4.5645099878311157e-01 + + + <_> + + 0 -1 1409 -2.3264769464731216e-02 + + + 1.4672529697418213e-01 -3.8081351667642593e-02 + + + <_> + + 0 -1 1410 1.9063109531998634e-02 + + + 7.2921238839626312e-02 -2.2723700106143951e-01 + + + <_> + + 0 -1 1411 1.2208239641040564e-03 + + + 7.3471322655677795e-02 -1.9122929871082306e-01 + + + <_> + + 0 -1 1412 -1.7565910518169403e-01 + + + 2.5924688577651978e-01 -5.6015118956565857e-02 + + + <_> + + 0 -1 1413 -3.8042131811380386e-02 + + + 1.6113610565662384e-01 -4.3758820742368698e-02 + + + <_> + + 0 -1 1414 3.0130259692668915e-02 + + + 5.7830829173326492e-02 -2.9774171113967896e-01 + + + <_> + + 0 -1 1415 2.0089220255613327e-02 + + + -6.0509629547595978e-02 3.3441681414842606e-02 + + + <_> + + 0 -1 1416 2.6193389203399420e-04 + + + -1.5175449848175049e-01 1.1094109714031219e-01 + + + <_> + + 0 -1 1417 4.0310628712177277e-02 + + + 1.7477119341492653e-02 -1.4185379445552826e-01 + + + <_> + + 0 -1 1418 -2.9343019705265760e-03 + + + -1.6960139572620392e-01 9.3530252575874329e-02 + + + <_> + + 0 -1 1419 1.4554520137608051e-02 + + + -7.5844526290893555e-02 2.7771660685539246e-01 + + + <_> + + 0 -1 1420 3.4086001105606556e-03 + + + 7.3933310806751251e-02 -1.9626590609550476e-01 + + + <_> + + 0 -1 1421 -6.7988429218530655e-03 + + + -2.0132480561733246e-01 5.8276038616895676e-02 + + + <_> + + 0 -1 1422 -5.0457930192351341e-03 + + + 1.9446060061454773e-01 -7.1691580116748810e-02 + + + <_> + + 0 -1 1423 1.0465010069310665e-02 + + + -4.7314591705799103e-02 1.9316110014915466e-01 + + + <_> + + 0 -1 1424 -1.6713530058041215e-03 + + + 9.2915147542953491e-02 -1.1890129745006561e-01 + + + <_> + + 0 -1 1425 -4.2704358696937561e-02 + + + 1.6961039602756500e-01 -2.0632650703191757e-02 + + + <_> + + 0 -1 1426 2.0367829501628876e-01 + + + 2.3246899247169495e-02 -4.9420261383056641e-01 + + + <_> + + 0 -1 1427 -8.3379482384771109e-04 + + + 5.0001069903373718e-02 -7.3779806494712830e-02 + + + <_> + + 0 -1 1428 1.7854769527912140e-01 + + + 1.5588290058076382e-02 -7.7650082111358643e-01 + + + <_> + + 0 -1 1429 -1.3535289466381073e-01 + + + -5.2299112081527710e-01 3.1595760956406593e-03 + + + <_> + + 0 -1 1430 4.6555269509553909e-02 + + + -4.1891060769557953e-02 3.0324798822402954e-01 + + + <_> + + 0 -1 1431 2.2663649171590805e-02 + + + 3.8851160556077957e-02 -8.5196226835250854e-02 + + + <_> + + 0 -1 1432 -2.3027729988098145e-01 + + + -9.3503099679946899e-01 1.3942349702119827e-02 + + + <_> + + 0 -1 1433 2.5714140385389328e-02 + + + -9.1460775583982468e-03 7.8063201904296875e-01 + + + <_> + + 0 -1 1434 -7.3728510869841557e-06 + + + 6.2730923295021057e-02 -2.0042170584201813e-01 + + + <_> + + 0 -1 1435 -1.9757889211177826e-02 + + + -2.3434729874134064e-01 1.4600900001823902e-02 + + + <_> + + 0 -1 1436 -4.1893101297318935e-03 + + + 1.4971399307250977e-01 -6.9368869066238403e-02 + + + <_> + + 0 -1 1437 1.1314969742670655e-03 + + + -6.9203592836856842e-02 1.0447440296411514e-01 + + + <_> + + 0 -1 1438 6.3914088532328606e-03 + + + 5.6134030222892761e-02 -1.9862769544124603e-01 + + + <_> + + 0 -1 1439 -3.7047569639980793e-03 + + + 9.6817292273044586e-02 -9.5282286405563354e-02 + + + <_> + + 0 -1 1440 3.0627459287643433e-02 + + + -5.0079640001058578e-02 2.6023888587951660e-01 + + + <_> + + 0 -1 1441 3.2444439828395844e-02 + + + 3.1099939718842506e-02 -2.0788609981536865e-01 + + + <_> + + 0 -1 1442 1.1651559732854366e-02 + + + -5.8311950415372849e-02 2.5374108552932739e-01 + + + <_> + + 0 -1 1443 -3.6515220999717712e-02 + + + -2.6749190688133240e-01 2.0536249503493309e-02 + + + <_> + + 0 -1 1444 1.7474630847573280e-02 + + + 4.7416981309652328e-02 -3.3719009160995483e-01 + + + <_> + + 0 -1 1445 -1.5204170485958457e-03 + + + 5.8933809399604797e-02 -9.5844946801662445e-02 + + + <_> + + 0 -1 1446 4.7761179506778717e-02 + + + 1.0849700309336185e-02 -8.6635017395019531e-01 + + + <_> + + 0 -1 1447 -6.3569113612174988e-02 + + + 2.5858598947525024e-01 -1.8156580626964569e-02 + + + <_> + + 0 -1 1448 -1.7476839711889625e-03 + + + 7.5750246644020081e-02 -1.4295279979705811e-01 + + + <_> + + 0 -1 1449 -4.6762558631598949e-03 + + + -9.1223396360874176e-02 1.3135279715061188e-01 + + + <_> + + 0 -1 1450 2.2202100604772568e-02 + + + -5.3397450596094131e-02 2.0743979513645172e-01 + + + <_> + + 0 -1 1451 -2.4647359549999237e-01 + + + -4.5610219240188599e-01 3.5777890589088202e-03 + + + <_> + + 0 -1 1452 5.0148782320320606e-03 + + + 8.8871829211711884e-02 -1.6236490011215210e-01 + + + <_> + + 0 -1 1453 -4.2023971676826477e-02 + + + 1.2805579602718353e-01 -1.1926759965717793e-02 + + + <_> + + 0 -1 1454 -1.0895519703626633e-01 + + + -6.6466122865676880e-01 1.5905549749732018e-02 + + + <_> + + 0 -1 1455 -3.6672928929328918e-01 + + + 3.6374801397323608e-01 -3.1206229701638222e-02 + + + <_> + + 0 -1 1456 9.5884501934051514e-03 + + + 9.1073550283908844e-02 -1.2492360174655914e-01 + + + <_> + + 0 -1 1457 1.6124530229717493e-03 + + + 3.3751979470252991e-02 -5.8749239891767502e-02 + + + <_> + + 0 -1 1458 -1.7882430925965309e-02 + + + 2.0992769300937653e-01 -6.3215233385562897e-02 + + + <_> + + 0 -1 1459 -6.6655018599703908e-05 + + + 5.5020030587911606e-02 -1.7908810079097748e-01 + + + <_> + + 0 -1 1460 -1.0912610217928886e-02 + + + -1.7878860235214233e-01 6.4088903367519379e-02 + + + <_> + + 0 -1 1461 -1.9031569827347994e-03 + + + 1.1012560129165649e-01 -6.2576442956924438e-02 + + + <_> + + 0 -1 1462 4.7322059981524944e-03 + + + 6.0611810535192490e-02 -1.7521250247955322e-01 + + + <_> + + 0 -1 1463 1.7955000698566437e-01 + + + -2.6413710787892342e-02 5.1463198661804199e-01 + + + <_> + + 0 -1 1464 -1.8869279883801937e-03 + + + 7.0732869207859039e-02 -1.8977560102939606e-01 + + + <_> + + 0 -1 1465 -3.5322420299053192e-03 + + + 9.5800288021564484e-02 -4.9251660704612732e-02 + + + <_> + + 0 -1 1466 1.0818409500643611e-03 + + + -9.7082488238811493e-02 1.4092449843883514e-01 + + + <_> + + 0 -1 1467 -9.5455259084701538e-02 + + + -6.8376517295837402e-01 8.8187018409371376e-03 + + + <_> + + 0 -1 1468 1.6179149970412254e-03 + + + -9.5129579305648804e-02 1.1351480334997177e-01 + + + <_> + + 0 -1 1469 6.5547877550125122e-01 + + + 9.7635984420776367e-03 -5.6581187248229980e-01 + + + <_> + + 0 -1 1470 -7.7973723411560059e-02 + + + 3.5573729872703552e-01 -3.3126130700111389e-02 + + + <_> + + 0 -1 1471 2.0209029316902161e-02 + + + 3.9301611483097076e-02 -1.3580250740051270e-01 + + + <_> + + 0 -1 1472 9.0323589742183685e-02 + + + -1.5932930633425713e-02 6.9409132003784180e-01 + + + <_> + + 0 -1 1473 -6.2048831023275852e-03 + + + -1.7037659883499146e-01 6.8090677261352539e-02 + + + <_> + + 0 -1 1474 -1.5737250447273254e-02 + + + 1.6250109672546387e-01 -6.6528938710689545e-02 + + + <_> + + 0 -1 1475 -3.5397041589021683e-02 + + + -8.9766547083854675e-02 4.9135740846395493e-02 + + + <_> + + 0 -1 1476 3.2850861549377441e-02 + + + 8.5158139467239380e-02 -1.3002319633960724e-01 + + + <_> + + 0 -1 1477 -8.4024056792259216e-02 + + + 3.0658489465713501e-01 -3.9313621819019318e-02 + + + <_> + + 0 -1 1478 2.1347659640014172e-03 + + + 8.3386950194835663e-02 -1.2239480018615723e-01 + + + <_> + + 0 -1 1479 1.7922610044479370e-01 + + + 2.6004109531641006e-03 -9.9989092350006104e-01 + + + <_> + + 0 -1 1480 1.1854390054941177e-01 + + + 1.1098369956016541e-02 -8.9629507064819336e-01 + + + <_> + + 0 -1 1481 -2.7351840399205685e-03 + + + 1.1589130014181137e-01 -6.3589207828044891e-02 + + + <_> + + 0 -1 1482 6.6092880442738533e-03 + + + -7.9491429030895233e-02 1.8501229584217072e-01 + + + <_> + + 0 -1 1483 -2.1072009578347206e-02 + + + -1.4708499610424042e-01 2.6071280241012573e-02 + + + <_> + + 0 -1 1484 1.3411619700491428e-02 + + + 4.8645589500665665e-02 -2.2041800618171692e-01 + + + <_> + + 0 -1 1485 -2.0661540329456329e-02 + + + 2.1374049782752991e-01 -2.2243229672312737e-02 + + + <_> + + 0 -1 1486 -1.0939250141382217e-01 + + + -7.9235088825225830e-01 1.1932499706745148e-02 + + + <_> + + 0 -1 1487 5.4573271423578262e-02 + + + -8.7064085528254509e-03 3.8226109743118286e-01 + + + <_> + + 0 -1 1488 -2.7845989912748337e-02 + + + 4.2096340656280518e-01 -3.4300819039344788e-02 + + + <_> + + 0 -1 1489 1.4973179996013641e-01 + + + 5.5857440456748009e-03 -7.1027070283889771e-01 + + + <_> + + 0 -1 1490 5.4548021405935287e-02 + + + 1.9289769232273102e-02 -5.5061852931976318e-01 + + + <_> + + 0 -1 1491 5.4990737698972225e-03 + + + 4.3643891811370850e-02 -1.2233699858188629e-01 + + + <_> + + 0 -1 1492 3.5988059244118631e-04 + + + -9.5005020499229431e-02 1.2501640617847443e-01 + + + <_> + + 0 -1 1493 -5.1003068685531616e-02 + + + -3.4648188948631287e-01 1.4124399982392788e-02 + + + <_> + + 0 -1 1494 -5.9379130601882935e-02 + + + 6.8840432167053223e-01 -2.0780999213457108e-02 + + + <_> + + 0 -1 1495 6.8976037204265594e-02 + + + 8.5678137838840485e-03 -6.9098550081253052e-01 + + + <_> + + 0 -1 1496 -4.3954830616712570e-03 + + + -1.7382889986038208e-01 6.9105990231037140e-02 + + + <_> + + 0 -1 1497 1.3838030397891998e-02 + + + -2.9398119077086449e-02 1.9685789942741394e-01 + + + <_> + + 0 -1 1498 -7.5316978618502617e-03 + + + -3.5790848731994629e-01 3.9685450494289398e-02 + + + <_> + + 0 -1 1499 -8.8299706578254700e-02 + + + -2.3770420253276825e-01 3.0232321005314589e-03 + + + <_> + + 0 -1 1500 -4.4138759374618530e-02 + + + 2.6541408896446228e-01 -5.1865179091691971e-02 + + + + + <_> + 107 + -5.6881058216094971e-01 + + <_> + + 0 -1 1501 -9.2582583427429199e-02 + + + 3.6183288693428040e-01 -7.8275963664054871e-02 + + + <_> + + 0 -1 1502 -4.8143980093300343e-03 + + + -1.2681719660758972e-01 6.7723788321018219e-02 + + + <_> + + 0 -1 1503 3.2365128397941589e-02 + + + -4.6087108552455902e-02 3.2692021131515503e-01 + + + <_> + + 0 -1 1504 -1.7028570175170898e-02 + + + 9.1306403279304504e-02 -1.1660590022802353e-01 + + + <_> + + 0 -1 1505 -1.1308620125055313e-01 + + + -7.9631358385086060e-01 5.8426991105079651e-02 + + + <_> + + 0 -1 1506 -3.5633759107440710e-03 + + + -8.2610622048377991e-02 1.0166700184345245e-01 + + + <_> + + 0 -1 1507 -2.4109560251235962e-01 + + + 2.7927228808403015e-01 -8.0744966864585876e-02 + + + <_> + + 0 -1 1508 2.2599289193749428e-02 + + + 5.1744598895311356e-02 -2.8865408897399902e-01 + + + <_> + + 0 -1 1509 2.0002270117402077e-02 + + + -5.7962361723184586e-02 2.9044789075851440e-01 + + + <_> + + 0 -1 1510 -1.9348099594935775e-03 + + + 9.8808683454990387e-02 -1.2368459999561310e-01 + + + <_> + + 0 -1 1511 -7.5757717713713646e-03 + + + -2.0071910321712494e-01 9.2741288244724274e-02 + + + <_> + + 0 -1 1512 3.3381819725036621e-02 + + + -3.4530758857727051e-02 3.0876499414443970e-01 + + + <_> + + 0 -1 1513 4.7418981790542603e-02 + + + -1.3563269376754761e-01 1.1016750335693359e-01 + + + <_> + + 0 -1 1514 -5.4173129610717297e-03 + + + -1.6050089895725250e-01 7.2612293064594269e-02 + + + <_> + + 0 -1 1515 -9.6942558884620667e-03 + + + -1.6376489400863647e-01 8.4426470100879669e-02 + + + <_> + + 0 -1 1516 -6.0632169246673584e-02 + + + 1.6474419832229614e-01 -2.6981400325894356e-02 + + + <_> + + 0 -1 1517 5.0302860327064991e-03 + + + -1.0996829718351364e-01 1.3480730354785919e-01 + + + <_> + + 0 -1 1518 -8.7792202830314636e-02 + + + -6.8317967653274536e-01 1.0834610089659691e-02 + + + <_> + + 0 -1 1519 3.0390409752726555e-02 + + + -4.2450569570064545e-02 3.0770599842071533e-01 + + + <_> + + 0 -1 1520 -5.1566340029239655e-02 + + + -6.2840008735656738e-01 9.7069833427667618e-03 + + + <_> + + 0 -1 1521 -4.2446999577805400e-04 + + + 8.4595613181591034e-02 -1.8075129389762878e-01 + + + <_> + + 0 -1 1522 -1.2135359644889832e-01 + + + -1.2717489898204803e-01 9.6575058996677399e-02 + + + <_> + + 0 -1 1523 -1.5150560066103935e-02 + + + 9.3037553131580353e-02 -1.3127900660037994e-01 + + + <_> + + 0 -1 1524 3.9446409791707993e-02 + + + 2.5543639436364174e-02 -1.1460640281438828e-01 + + + <_> + + 0 -1 1525 -8.2465475425124168e-03 + + + 2.4008710682392120e-01 -5.1680248230695724e-02 + + + <_> + + 0 -1 1526 3.5262361168861389e-02 + + + -3.3555049449205399e-02 2.0575499534606934e-01 + + + <_> + + 0 -1 1527 1.1703060008585453e-02 + + + 2.3529250174760818e-02 -4.9983900785446167e-01 + + + <_> + + 0 -1 1528 4.2969968169927597e-02 + + + -1.2683330103754997e-02 5.4043388366699219e-01 + + + <_> + + 0 -1 1529 -1.5811799094080925e-02 + + + 3.9564150571823120e-01 -3.5568390041589737e-02 + + + <_> + + 0 -1 1530 4.6253358013927937e-03 + + + 5.2370540797710419e-02 -2.2989930212497711e-01 + + + <_> + + 0 -1 1531 -1.5898230485618114e-03 + + + 1.3792009651660919e-01 -8.6783193051815033e-02 + + + <_> + + 0 -1 1532 6.2329089269042015e-04 + + + -8.6643829941749573e-02 5.7710029184818268e-02 + + + <_> + + 0 -1 1533 7.0994929410517216e-03 + + + 7.5797617435455322e-02 -1.6898870468139648e-01 + + + <_> + + 0 -1 1534 6.9608777761459351e-02 + + + -1.2454699724912643e-02 2.0845200121402740e-01 + + + <_> + + 0 -1 1535 -1.8759520724415779e-02 + + + -5.5008620023727417e-01 2.1040279418230057e-02 + + + <_> + + 0 -1 1536 4.6513788402080536e-02 + + + -2.5904009118676186e-02 1.8322019279003143e-01 + + + <_> + + 0 -1 1537 2.1638579666614532e-02 + + + -3.8873910903930664e-02 2.9919698834419250e-01 + + + <_> + + 0 -1 1538 -7.6772570610046387e-02 + + + -1. 3.9020550902932882e-03 + + + <_> + + 0 -1 1539 4.0535528212785721e-02 + + + 1.8880680203437805e-02 -6.6033887863159180e-01 + + + <_> + + 0 -1 1540 4.0338758379220963e-02 + + + 9.2877401039004326e-03 -3.4422031044960022e-01 + + + <_> + + 0 -1 1541 4.3404240161180496e-02 + + + -2.2111779078841209e-02 5.1227712631225586e-01 + + + <_> + + 0 -1 1542 1.6895130276679993e-02 + + + 3.0058480799198151e-02 -1.8648600578308105e-01 + + + <_> + + 0 -1 1543 3.0269259586930275e-03 + + + -1.3979099690914154e-01 8.7544560432434082e-02 + + + <_> + + 0 -1 1544 -3.7171840667724609e-01 + + + -2.9676678776741028e-01 1.6241550445556641e-02 + + + <_> + + 0 -1 1545 -2.5798739865422249e-02 + + + -4.3713501095771790e-01 2.6768149808049202e-02 + + + <_> + + 0 -1 1546 -9.0826600790023804e-03 + + + 9.9548496305942535e-02 -3.8500539958477020e-02 + + + <_> + + 0 -1 1547 -1.7977179959416389e-03 + + + 1.3810199499130249e-01 -7.5387232005596161e-02 + + + <_> + + 0 -1 1548 1.2435699999332428e-01 + + + 4.6064029447734356e-03 -3.6909800767898560e-01 + + + <_> + + 0 -1 1549 -1.2901489622890949e-02 + + + -2.0433300733566284e-01 5.3133610635995865e-02 + + + <_> + + 0 -1 1550 -1.3352099806070328e-02 + + + -1.0512170195579529e-01 5.9746239334344864e-02 + + + <_> + + 0 -1 1551 -3.0650520697236061e-02 + + + 3.4366500377655029e-01 -3.9617810398340225e-02 + + + <_> + + 0 -1 1552 2.0778391044586897e-03 + + + -5.0755288451910019e-02 7.2930753231048584e-02 + + + <_> + + 0 -1 1553 -6.1161179095506668e-02 + + + 7.8371667861938477e-01 -1.3940130360424519e-02 + + + <_> + + 0 -1 1554 -6.6681973636150360e-02 + + + -6.7010307312011719e-01 4.2770858854055405e-03 + + + <_> + + 0 -1 1555 2.7359850704669952e-02 + + + 2.4253180250525475e-02 -4.2671859264373779e-01 + + + <_> + + 0 -1 1556 -2.4731201119720936e-03 + + + 9.6493236720561981e-02 -5.7433839887380600e-02 + + + <_> + + 0 -1 1557 -1.0721489787101746e-02 + + + -2.1575610339641571e-01 4.4256970286369324e-02 + + + <_> + + 0 -1 1558 -1.3936980068683624e-01 + + + -3.6377531290054321e-01 1.0005139745771885e-02 + + + <_> + + 0 -1 1559 -5.6867711246013641e-02 + + + 3.0327269434928894e-01 -3.7230789661407471e-02 + + + <_> + + 0 -1 1560 -6.5776512026786804e-02 + + + -1. 1.2443619780242443e-03 + + + <_> + + 0 -1 1561 -1.5500129666179419e-03 + + + 1.2898580729961395e-01 -8.5528247058391571e-02 + + + <_> + + 0 -1 1562 8.7909551803022623e-04 + + + -7.9906381666660309e-02 1.2847130000591278e-01 + + + <_> + + 0 -1 1563 2.9614660888910294e-03 + + + 8.9433841407299042e-02 -1.7047980427742004e-01 + + + <_> + + 0 -1 1564 -5.0735038518905640e-01 + + + -8.4197628498077393e-01 2.3592109791934490e-03 + + + <_> + + 0 -1 1565 3.5409200936555862e-02 + + + 1.7137490212917328e-02 -5.9052079916000366e-01 + + + <_> + + 0 -1 1566 -4.6220239251852036e-02 + + + 4.7383689880371094e-01 -1.1423089541494846e-02 + + + <_> + + 0 -1 1567 4.0875099599361420e-02 + + + -2.6714079082012177e-02 4.2139878869056702e-01 + + + <_> + + 0 -1 1568 -5.7651810348033905e-02 + + + 5.6021291017532349e-01 -9.5757292583584785e-03 + + + <_> + + 0 -1 1569 3.3733060117810965e-03 + + + 7.2323620319366455e-02 -1.5510480105876923e-01 + + + <_> + + 0 -1 1570 -3.4096160531044006e-01 + + + -1. -3.1605950789526105e-04 + + + <_> + + 0 -1 1571 -5.5850511416792870e-03 + + + -1.5768070518970490e-01 7.3625743389129639e-02 + + + <_> + + 0 -1 1572 -1.1067239940166473e-01 + + + 2.3640440404415131e-01 -1.2670779600739479e-02 + + + <_> + + 0 -1 1573 4.3246410787105560e-02 + + + -4.9346420913934708e-02 3.0113101005554199e-01 + + + <_> + + 0 -1 1574 -5.8916499838232994e-03 + + + -1.4727650582790375e-01 6.1345700174570084e-02 + + + <_> + + 0 -1 1575 -2.8674090572167188e-05 + + + 1.1539240181446075e-01 -1.4692650735378265e-01 + + + <_> + + 0 -1 1576 2.6174910366535187e-02 + + + -2.2960580885410309e-02 2.1004410088062286e-01 + + + <_> + + 0 -1 1577 -1.9902619533240795e-03 + + + 9.7250632941722870e-02 -1.3244929909706116e-01 + + + <_> + + 0 -1 1578 -1.6960840672254562e-02 + + + -3.1949061155319214e-01 3.6188289523124695e-02 + + + <_> + + 0 -1 1579 -1.5634739398956299e-01 + + + 3.1934529542922974e-01 -4.1917070746421814e-02 + + + <_> + + 0 -1 1580 -2.3863950371742249e-01 + + + 3.8183578848838806e-01 -8.6567532271146774e-03 + + + <_> + + 0 -1 1581 -7.7641502022743225e-02 + + + -3.3156651258468628e-01 3.3491149544715881e-02 + + + <_> + + 0 -1 1582 -4.5257899910211563e-02 + + + 4.6058529615402222e-01 -3.1354859471321106e-02 + + + <_> + + 0 -1 1583 -3.3390790224075317e-02 + + + -7.2974747419357300e-01 1.6206990927457809e-02 + + + <_> + + 0 -1 1584 7.3079466819763184e-02 + + + -1.9201450049877167e-02 3.4011909365653992e-01 + + + <_> + + 0 -1 1585 -5.4536230862140656e-02 + + + 3.3227160573005676e-01 -3.3163428306579590e-02 + + + <_> + + 0 -1 1586 3.9552688598632812e-02 + + + 1.1817559599876404e-02 -3.2131719589233398e-01 + + + <_> + + 0 -1 1587 5.9160130331292748e-04 + + + -1.1766350269317627e-01 8.8002361357212067e-02 + + + <_> + + 0 -1 1588 3.5379730165004730e-02 + + + 1.8286190927028656e-02 -1.6206890344619751e-01 + + + <_> + + 0 -1 1589 2.0152490586042404e-02 + + + 2.2825939580798149e-02 -4.3034788966178894e-01 + + + <_> + + 0 -1 1590 -2.9185289517045021e-02 + + + 1.8256959319114685e-01 -1.6376309096813202e-02 + + + <_> + + 0 -1 1591 -2.1705780178308487e-02 + + + -6.6977721452713013e-01 1.6782360151410103e-02 + + + <_> + + 0 -1 1592 4.2584270238876343e-02 + + + -1.6852499917149544e-02 3.4360399842262268e-01 + + + <_> + + 0 -1 1593 -1.2663739919662476e-01 + + + 2.6748588681221008e-01 -3.6107789725065231e-02 + + + <_> + + 0 -1 1594 1.4260070025920868e-01 + + + 1.4445270411670208e-02 -1.9729509949684143e-01 + + + <_> + + 0 -1 1595 5.3560931235551834e-02 + + + 1.7324799671769142e-02 -5.9609222412109375e-01 + + + <_> + + 0 -1 1596 -5.9380959719419479e-03 + + + -6.5156273543834686e-02 5.9645600616931915e-02 + + + <_> + + 0 -1 1597 -6.6497321240603924e-03 + + + 1.4270019531250000e-01 -7.9669818282127380e-02 + + + <_> + + 0 -1 1598 -3.0137640424072742e-03 + + + 1.3996289670467377e-01 -9.4831757247447968e-02 + + + <_> + + 0 -1 1599 -1.7213050276041031e-02 + + + -1.7265740036964417e-01 6.9451652467250824e-02 + + + <_> + + 0 -1 1600 1.0775709897279739e-01 + + + -4.6757548116147518e-03 9.2161870002746582e-01 + + + <_> + + 0 -1 1601 5.8738540858030319e-02 + + + -4.2458981275558472e-02 2.8832349181175232e-01 + + + <_> + + 0 -1 1602 -3.0475479364395142e-01 + + + -1. 2.6918480216409080e-05 + + + <_> + + 0 -1 1603 2.0395779609680176e-01 + + + 2.5317989289760590e-02 -5.0275158882141113e-01 + + + <_> + + 0 -1 1604 -9.7794281318783760e-03 + + + -1.9060879945755005e-01 3.0577139928936958e-02 + + + <_> + + 0 -1 1605 -2.2775499150156975e-02 + + + 2.7048370242118835e-01 -5.1001209765672684e-02 + + + <_> + + 0 -1 1606 9.8080374300479889e-03 + + + 2.4180250242352486e-02 -7.5000837445259094e-02 + + + <_> + + 0 -1 1607 -1.1130969971418381e-02 + + + -2.3825749754905701e-01 6.4388722181320190e-02 + + + + + <_> + 123 + -6.5824240446090698e-01 + + <_> + + 0 -1 1608 -2.1380689740180969e-01 + + + 2.7686640620231628e-01 -9.2777818441390991e-02 + + + <_> + + 0 -1 1609 -3.3374479971826077e-03 + + + 1.4119230210781097e-01 -5.1907159388065338e-02 + + + <_> + + 0 -1 1610 -2.8738550841808319e-02 + + + -3.6243250966072083e-01 3.1938020139932632e-02 + + + <_> + + 0 -1 1611 -3.5554158966988325e-03 + + + 1.1969120055437088e-01 -5.2306748926639557e-02 + + + <_> + + 0 -1 1612 -1.0732459835708141e-02 + + + 2.8602668642997742e-01 -6.0555059462785721e-02 + + + <_> + + 0 -1 1613 8.7310239672660828e-02 + + + -3.3613391220569611e-02 4.7786781191825867e-01 + + + <_> + + 0 -1 1614 2.1971999667584896e-03 + + + 6.0207970440387726e-02 -2.1543750166893005e-01 + + + <_> + + 0 -1 1615 -7.4302748544141650e-05 + + + 1.4141289889812469e-01 -1.2711560726165771e-01 + + + <_> + + 0 -1 1616 -2.9314011335372925e-01 + + + -5.5598288774490356e-01 7.8105749562382698e-03 + + + <_> + + 0 -1 1617 7.7996537089347839e-02 + + + -2.0238140597939491e-02 2.2233769297599792e-01 + + + <_> + + 0 -1 1618 4.9733570776879787e-03 + + + -1.5410329401493073e-01 9.8874516785144806e-02 + + + <_> + + 0 -1 1619 -6.2232650816440582e-02 + + + -2.5253909826278687e-01 2.5864329189062119e-02 + + + <_> + + 0 -1 1620 -7.4750548228621483e-03 + + + -1.9071790575981140e-01 8.4528200328350067e-02 + + + <_> + + 0 -1 1621 2.2246010601520538e-02 + + + -3.1024629250168800e-02 1.5289239585399628e-01 + + + <_> + + 0 -1 1622 -1.2305259704589844e-02 + + + 1.1693249642848969e-01 -1.1092559993267059e-01 + + + <_> + + 0 -1 1623 -1.3985290424898267e-03 + + + -2.0435670018196106e-01 8.7592259049415588e-02 + + + <_> + + 0 -1 1624 3.6361250281333923e-01 + + + -1.8750319257378578e-02 8.5054528713226318e-01 + + + <_> + + 0 -1 1625 -3.8815739098936319e-03 + + + 8.0643877387046814e-02 -1.0520999878644943e-01 + + + <_> + + 0 -1 1626 -5.2500631660223007e-02 + + + 3.8002520799636841e-01 -3.6049079149961472e-02 + + + <_> + + 0 -1 1627 -7.9602311598137021e-04 + + + 3.3794969320297241e-02 -7.5603879988193512e-02 + + + <_> + + 0 -1 1628 -2.0066089928150177e-02 + + + -4.3842989206314087e-01 3.3389199525117874e-02 + + + <_> + + 0 -1 1629 -2.4233239237219095e-03 + + + -9.3005247414112091e-02 4.9772828817367554e-02 + + + <_> + + 0 -1 1630 -6.8737422116100788e-03 + + + 2.0374830067157745e-01 -5.8165848255157471e-02 + + + <_> + + 0 -1 1631 6.5535600297152996e-03 + + + -7.0293396711349487e-02 1.4400149881839752e-01 + + + <_> + + 0 -1 1632 -1.6780680045485497e-02 + + + -3.2226520776748657e-01 4.3717250227928162e-02 + + + <_> + + 0 -1 1633 2.5448070839047432e-02 + + + 4.3461918830871582e-02 -1.5376989543437958e-01 + + + <_> + + 0 -1 1634 3.4656568896025419e-03 + + + -6.3119992613792419e-02 2.1394529938697815e-01 + + + <_> + + 0 -1 1635 1.0132250189781189e-01 + + + -1.7095830291509628e-02 1.8853299319744110e-01 + + + <_> + + 0 -1 1636 1.0714309662580490e-01 + + + 3.5406891256570816e-02 -3.4869039058685303e-01 + + + <_> + + 0 -1 1637 -1.4500999823212624e-02 + + + 3.7903580814599991e-02 -4.9169208854436874e-02 + + + <_> + + 0 -1 1638 -1.5354759991168976e-01 + + + 3.5048320889472961e-01 -3.2774008810520172e-02 + + + <_> + + 0 -1 1639 -6.5137587487697601e-02 + + + -4.1380020976066589e-01 7.3137627914547920e-03 + + + <_> + + 0 -1 1640 -2.9204839374870062e-03 + + + -1.3756680488586426e-01 9.0795390307903290e-02 + + + <_> + + 0 -1 1641 -3.4104570746421814e-01 + + + -6.7252027988433838e-01 1.5200230292975903e-02 + + + <_> + + 0 -1 1642 -4.4478259951574728e-05 + + + 9.6579946577548981e-02 -1.0403420031070709e-01 + + + <_> + + 0 -1 1643 -1.1172229796648026e-01 + + + -4.2234420776367188e-01 4.9457307904958725e-03 + + + <_> + + 0 -1 1644 2.0429869182407856e-03 + + + 9.9474698305130005e-02 -1.0384540259838104e-01 + + + <_> + + 0 -1 1645 -7.2571309283375740e-03 + + + -1.5049630403518677e-01 2.9724840074777603e-02 + + + <_> + + 0 -1 1646 -8.4451176226139069e-03 + + + 9.5648579299449921e-02 -1.1805369704961777e-01 + + + <_> + + 0 -1 1647 -3.0194969847798347e-02 + + + 4.6570628881454468e-01 -1.4386899769306183e-02 + + + <_> + + 0 -1 1648 5.7423918042331934e-04 + + + -1.0382310301065445e-01 1.5052829682826996e-01 + + + <_> + + 0 -1 1649 8.2014611689373851e-04 + + + -7.5132526457309723e-02 1.0363759845495224e-01 + + + <_> + + 0 -1 1650 7.0748180150985718e-03 + + + 6.6062167286872864e-02 -1.7638419568538666e-01 + + + <_> + + 0 -1 1651 4.8304669559001923e-02 + + + -1.7767660319805145e-02 2.6820158958435059e-01 + + + <_> + + 0 -1 1652 7.9041812568902969e-03 + + + 5.1522739231586456e-02 -2.0632369816303253e-01 + + + <_> + + 0 -1 1653 8.4705486893653870e-02 + + + 7.2250380180776119e-03 -5.9514737129211426e-01 + + + <_> + + 0 -1 1654 3.9120440487749875e-04 + + + -1.0663530230522156e-01 1.1103810369968414e-01 + + + <_> + + 0 -1 1655 1.5959320589900017e-02 + + + -4.8573691397905350e-02 2.5832009315490723e-01 + + + <_> + + 0 -1 1656 -1.8649259582161903e-03 + + + 1.1551269888877869e-01 -1.5048590302467346e-01 + + + <_> + + 0 -1 1657 1.2727979570627213e-02 + + + 4.7930240631103516e-02 -3.0310231447219849e-01 + + + <_> + + 0 -1 1658 -1.5954229747876525e-03 + + + -1.5537570416927338e-01 8.3214886486530304e-02 + + + <_> + + 0 -1 1659 2.0234890282154083e-01 + + + 1.1625860352069139e-03 -1.0000209808349609e+00 + + + <_> + + 0 -1 1660 -3.9196871221065521e-02 + + + 3.0884549021720886e-01 -4.4524021446704865e-02 + + + <_> + + 0 -1 1661 1.5810640528798103e-02 + + + -1.5927329659461975e-02 1.0144449770450592e-01 + + + <_> + + 0 -1 1662 -2.1568681113421917e-03 + + + 9.5205381512641907e-02 -1.2910960614681244e-01 + + + <_> + + 0 -1 1663 -3.4604359418153763e-02 + + + 2.7843558788299561e-01 -1.0775060392916203e-02 + + + <_> + + 0 -1 1664 -2.6206790935248137e-03 + + + -1.3744530081748962e-01 9.2945456504821777e-02 + + + <_> + + 0 -1 1665 4.6692821197211742e-03 + + + -5.8331821113824844e-02 1.5733839571475983e-01 + + + <_> + + 0 -1 1666 7.8623533248901367e-02 + + + 1.1130830273032188e-02 -9.7138148546218872e-01 + + + <_> + + 0 -1 1667 3.9556730538606644e-02 + + + 2.1708509884774685e-03 -4.3425449728965759e-01 + + + <_> + + 0 -1 1668 4.0571438148617744e-03 + + + 8.6120717227458954e-02 -1.5579399466514587e-01 + + + <_> + + 0 -1 1669 -1.5014669857919216e-02 + + + 1.3523979485034943e-01 -2.5724019855260849e-02 + + + <_> + + 0 -1 1670 4.6183250378817320e-04 + + + -1.0766889899969101e-01 1.3633869588375092e-01 + + + <_> + + 0 -1 1671 5.2875209599733353e-02 + + + 5.4555749520659447e-03 -3.9382910728454590e-01 + + + <_> + + 0 -1 1672 -5.9510860592126846e-02 + + + 2.8690820932388306e-01 -4.2876079678535461e-02 + + + <_> + + 0 -1 1673 1.6650360077619553e-02 + + + 2.8605299070477486e-02 -3.0349490046501160e-01 + + + <_> + + 0 -1 1674 1.4959629625082016e-02 + + + -5.2699029445648193e-02 2.1825259923934937e-01 + + + <_> + + 0 -1 1675 -9.6224267035722733e-03 + + + -2.1431450545787811e-01 4.8350628465414047e-02 + + + <_> + + 0 -1 1676 -4.5304261147975922e-02 + + + -8.7308478355407715e-01 1.2449770234525204e-02 + + + <_> + + 0 -1 1677 -7.4465242214500904e-03 + + + -1.3586209714412689e-01 3.3087320625782013e-02 + + + <_> + + 0 -1 1678 -1.1953880311921239e-03 + + + 1.4848570525646210e-01 -8.5291646420955658e-02 + + + <_> + + 0 -1 1679 5.6622507981956005e-03 + + + -5.3212448954582214e-02 1.2967950105667114e-01 + + + <_> + + 0 -1 1680 1.3971360400319099e-02 + + + 2.5338830426335335e-02 -4.2097410559654236e-01 + + + <_> + + 0 -1 1681 -4.5216218568384647e-03 + + + 1.2621529400348663e-01 -6.3135430216789246e-02 + + + <_> + + 0 -1 1682 4.7776158899068832e-03 + + + -6.2899917364120483e-02 1.7724449932575226e-01 + + + <_> + + 0 -1 1683 -5.8305878192186356e-03 + + + 8.7906002998352051e-02 -1.5553380548954010e-01 + + + <_> + + 0 -1 1684 -1.5879280865192413e-02 + + + -1.2694430351257324e-01 1.0280299931764603e-01 + + + <_> + + 0 -1 1685 1.9526369869709015e-03 + + + -7.6803453266620636e-02 4.7297749668359756e-02 + + + <_> + + 0 -1 1686 2.4521650746464729e-02 + + + -2.7714680880308151e-02 4.0350469946861267e-01 + + + <_> + + 0 -1 1687 -8.4529399871826172e-02 + + + 1. -2.1367999725043774e-03 + + + <_> + + 0 -1 1688 1.6844070050865412e-03 + + + 7.4043400585651398e-02 -1.6334819793701172e-01 + + + <_> + + 0 -1 1689 1.3399059884250164e-02 + + + -4.2453180998563766e-02 2.4164129793643951e-01 + + + <_> + + 0 -1 1690 4.4182639569044113e-02 + + + 1.8039569258689880e-02 -6.4396840333938599e-01 + + + <_> + + 0 -1 1691 3.8327239453792572e-02 + + + 7.5849238783121109e-03 -3.6534211039543152e-01 + + + <_> + + 0 -1 1692 2.5997089687734842e-03 + + + -8.8553480803966522e-02 1.3763660192489624e-01 + + + <_> + + 0 -1 1693 1.0775480419397354e-02 + + + 4.5753169804811478e-02 -1.1956000328063965e-01 + + + <_> + + 0 -1 1694 -2.0433649420738220e-02 + + + 2.2020170092582703e-01 -5.1925841718912125e-02 + + + <_> + + 0 -1 1695 -1.2402729690074921e-01 + + + 8.8846582174301147e-01 -5.1234480924904346e-03 + + + <_> + + 0 -1 1696 4.7838478349149227e-03 + + + 5.3047031164169312e-02 -2.1085900068283081e-01 + + + <_> + + 0 -1 1697 -4.5895349234342575e-02 + + + 4.4482690095901489e-01 -1.5117119997739792e-02 + + + <_> + + 0 -1 1698 1.4473790302872658e-02 + + + -4.5201409608125687e-02 2.3556250333786011e-01 + + + <_> + + 0 -1 1699 1.8887920305132866e-03 + + + 7.6443381607532501e-02 -1.6385370492935181e-01 + + + <_> + + 0 -1 1700 -1.9082069396972656e-01 + + + 6.4662021398544312e-01 -1.8242619931697845e-02 + + + <_> + + 0 -1 1701 7.2158463299274445e-02 + + + 6.2836478464305401e-03 -7.4822348356246948e-01 + + + <_> + + 0 -1 1702 9.7802944947034121e-04 + + + 7.9063102602958679e-02 -1.3163650035858154e-01 + + + <_> + + 0 -1 1703 4.8602250171825290e-04 + + + -4.2594909667968750e-02 6.9462761282920837e-02 + + + <_> + + 0 -1 1704 -1.0882800444960594e-02 + + + -2.4503070116043091e-01 5.2326161414384842e-02 + + + <_> + + 0 -1 1705 1.1573769734241068e-04 + + + -6.6729307174682617e-02 8.7088912725448608e-02 + + + <_> + + 0 -1 1706 2.0960739348083735e-03 + + + -7.6154567301273346e-02 1.3598169386386871e-01 + + + <_> + + 0 -1 1707 4.3664351105690002e-02 + + + 8.4812156856060028e-03 -8.1097167730331421e-01 + + + <_> + + 0 -1 1708 -1.1464370181784034e-03 + + + 1.2721230089664459e-01 -8.4783419966697693e-02 + + + <_> + + 0 -1 1709 -5.5613541044294834e-03 + + + -1.9722530245780945e-01 5.4411068558692932e-02 + + + <_> + + 0 -1 1710 3.4083850681781769e-02 + + + -3.2338548451662064e-02 3.4062281250953674e-01 + + + <_> + + 0 -1 1711 5.1227081567049026e-02 + + + -1.3262039981782436e-02 2.3953630030155182e-01 + + + <_> + + 0 -1 1712 3.3531729131937027e-02 + + + 2.0279919728636742e-02 -4.8339051008224487e-01 + + + <_> + + 0 -1 1713 1.5396219678223133e-02 + + + -2.9320189729332924e-02 1.5866099298000336e-01 + + + <_> + + 0 -1 1714 -1.7550770193338394e-02 + + + 2.7488970756530762e-01 -3.7798319011926651e-02 + + + <_> + + 0 -1 1715 -7.5705647468566895e-02 + + + -8.2214397192001343e-01 3.8814740255475044e-03 + + + <_> + + 0 -1 1716 -5.3475350141525269e-03 + + + -1.6710759699344635e-01 7.7180616557598114e-02 + + + <_> + + 0 -1 1717 -3.3435279037803411e-03 + + + -1.0673490166664124e-01 4.7575470060110092e-02 + + + <_> + + 0 -1 1718 1.9328270107507706e-02 + + + -4.6563290059566498e-02 2.4716560542583466e-01 + + + <_> + + 0 -1 1719 8.5368983447551727e-02 + + + 2.3296920582652092e-02 -5.0002247095108032e-01 + + + <_> + + 0 -1 1720 2.5927850510925055e-03 + + + -1.1182250082492828e-01 1.1046089977025986e-01 + + + <_> + + 0 -1 1721 -9.1061238199472427e-03 + + + 4.7107011079788208e-02 -5.5807661265134811e-02 + + + <_> + + 0 -1 1722 1.0170699656009674e-01 + + + -1.5966609120368958e-02 6.9857317209243774e-01 + + + <_> + + 0 -1 1723 2.2854980081319809e-02 + + + -1.7226219177246094e-02 1.2225689738988876e-01 + + + <_> + + 0 -1 1724 -1.6577079892158508e-02 + + + -2.2225829958915710e-01 5.6578300893306732e-02 + + + <_> + + 0 -1 1725 -2.3641420528292656e-02 + + + -2.7734050154685974e-01 1.6076890751719475e-02 + + + <_> + + 0 -1 1726 5.6385230273008347e-03 + + + 4.5439280569553375e-02 -2.2549630701541901e-01 + + + <_> + + 0 -1 1727 5.7422029785811901e-03 + + + -7.8568778932094574e-02 1.5234960615634918e-01 + + + <_> + + 0 -1 1728 -4.3363519944250584e-04 + + + 9.5920950174331665e-02 -1.1274240165948868e-01 + + + <_> + + 0 -1 1729 1.0267919860780239e-02 + + + -4.9332991242408752e-02 2.4810829758644104e-01 + + + <_> + + 0 -1 1730 1.3865719549357891e-02 + + + 7.0547938346862793e-02 -1.8594330549240112e-01 + + + + + <_> + 127 + -3.0620599746704102e+01 + + <_> + + 0 -1 1731 -4.6980630606412888e-02 + + + 1.7078550159931183e-01 -1.5687310695648193e-01 + + + <_> + + 0 -1 1732 -1.1967960000038147e-01 + + + 5.1738417148590088e-01 -1.1747590266168118e-02 + + + <_> + + 0 -1 1733 -2.8477180749177933e-02 + + + 2.3505200445652008e-01 -5.7424411177635193e-02 + + + <_> + + 0 -1 1734 1.9697479903697968e-01 + + + -9.3123828992247581e-04 1.0037239789962769e+00 + + + <_> + + 0 -1 1735 7.9039083793759346e-03 + + + 8.3357498049736023e-02 -1.6527499258518219e-01 + + + <_> + + 0 -1 1736 3.9338979870080948e-02 + + + -6.5605872077867389e-04 3.2361468672752380e-01 + + + <_> + + 0 -1 1737 -1.5762429684400558e-03 + + + 9.1129466891288757e-02 -1.4164330065250397e-01 + + + <_> + + 0 -1 1738 2.0851049339398742e-04 + + + -1.3802680373191833e-01 7.7212989330291748e-02 + + + <_> + + 0 -1 1739 -2.6843539671972394e-04 + + + 1.3646720349788666e-01 -9.4255752861499786e-02 + + + <_> + + 0 -1 1740 8.8506387546658516e-03 + + + 2.4603420868515968e-02 -1.6884680092334747e-01 + + + <_> + + 0 -1 1741 -8.4813922876492143e-04 + + + -1.3972400128841400e-01 1.1566729843616486e-01 + + + <_> + + 0 -1 1742 -3.7090150726726279e-05 + + + 7.5284272432327271e-02 -1.7708149552345276e-01 + + + <_> + + 0 -1 1743 -2.1533910185098648e-02 + + + 2.0233030617237091e-01 -6.6978476941585541e-02 + + + <_> + + 0 -1 1744 1.1713660322129726e-02 + + + 8.6853489279747009e-02 -1.1251810193061829e-01 + + + <_> + + 0 -1 1745 -9.8365638405084610e-03 + + + 3.0164790153503418e-01 -5.0179660320281982e-02 + + + <_> + + 0 -1 1746 -6.2104999087750912e-03 + + + 6.8224228918552399e-02 -9.4441823661327362e-02 + + + <_> + + 0 -1 1747 -2.0034300163388252e-02 + + + -2.8657549619674683e-01 4.5728500932455063e-02 + + + <_> + + 0 -1 1748 -2.2154829639475793e-04 + + + 7.1603760123252869e-02 -8.7115049362182617e-02 + + + <_> + + 0 -1 1749 -5.2436119876801968e-03 + + + 1.3439500331878662e-01 -9.0288907289505005e-02 + + + <_> + + 0 -1 1750 -1.1711229570209980e-02 + + + 1.4874699711799622e-01 -2.5951780378818512e-02 + + + <_> + + 0 -1 1751 5.8587929233908653e-03 + + + -6.6982023417949677e-02 1.8096329271793365e-01 + + + <_> + + 0 -1 1752 1.0432569682598114e-01 + + + 1.0209330357611179e-02 -7.9540812969207764e-01 + + + <_> + + 0 -1 1753 -1.7049130052328110e-02 + + + -2.0516310632228851e-01 6.4470991492271423e-02 + + + <_> + + 0 -1 1754 2.5877699255943298e-02 + + + -3.0079720541834831e-02 1.6041970252990723e-01 + + + <_> + + 0 -1 1755 -4.0637338533997536e-03 + + + 1.0870960354804993e-01 -1.1665400117635727e-01 + + + <_> + + 0 -1 1756 -1.9286720082163811e-02 + + + -1.2503950297832489e-01 2.8055189177393913e-02 + + + <_> + + 0 -1 1757 -7.2130301305151079e-06 + + + 1.1845260113477707e-01 -1.2367019802331924e-01 + + + <_> + + 0 -1 1758 -2.6098350062966347e-03 + + + -1.4498670399188995e-01 8.2318760454654694e-02 + + + <_> + + 0 -1 1759 3.2303779153153300e-04 + + + -9.5855496823787689e-02 1.1992660164833069e-01 + + + <_> + + 0 -1 1760 -1.1308960383757949e-03 + + + 1.2882959842681885e-01 -8.2697473466396332e-02 + + + <_> + + 0 -1 1761 1.7176469787955284e-02 + + + 3.6024659872055054e-02 -3.0873811244964600e-01 + + + <_> + + 0 -1 1762 -1.0515330359339714e-02 + + + 9.6330337226390839e-02 -1.0785780102014542e-01 + + + <_> + + 0 -1 1763 5.0583500415086746e-02 + + + -3.4715801477432251e-02 4.5134508609771729e-01 + + + <_> + + 0 -1 1764 8.7582931155338883e-04 + + + -9.5677152276039124e-02 7.3631688952445984e-02 + + + <_> + + 0 -1 1765 -3.1957220286130905e-02 + + + -3.1473490595817566e-01 3.6329280585050583e-02 + + + <_> + + 0 -1 1766 5.9863331262022257e-04 + + + -4.2676690965890884e-02 5.4342899471521378e-02 + + + <_> + + 0 -1 1767 -6.6270949319005013e-03 + + + 7.3510922491550446e-02 -1.7309080064296722e-01 + + + <_> + + 0 -1 1768 -7.3186516761779785e-02 + + + 6.8777692317962646e-01 -5.6781149469316006e-03 + + + <_> + + 0 -1 1769 2.0290840417146683e-02 + + + -4.0720541030168533e-02 3.0450868606567383e-01 + + + <_> + + 0 -1 1770 -3.0989840161055326e-03 + + + -1.2787370383739471e-01 5.4329689592123032e-02 + + + <_> + + 0 -1 1771 -1.1258859885856509e-03 + + + 1.1980079859495163e-01 -8.3477236330509186e-02 + + + <_> + + 0 -1 1772 3.9993048994801939e-04 + + + -9.5427073538303375e-02 7.6952911913394928e-02 + + + <_> + + 0 -1 1773 1.1202540248632431e-02 + + + 2.5125309824943542e-02 -4.0314701199531555e-01 + + + <_> + + 0 -1 1774 -2.1753970533609390e-02 + + + -2.3042400181293488e-01 1.5338519588112831e-02 + + + <_> + + 0 -1 1775 7.6912459917366505e-05 + + + -9.5581486821174622e-02 1.0388170182704926e-01 + + + <_> + + 0 -1 1776 9.1011539101600647e-02 + + + -8.7168300524353981e-03 7.5593751668930054e-01 + + + <_> + + 0 -1 1777 -4.3160789646208286e-03 + + + 1.3494439423084259e-01 -7.0152096450328827e-02 + + + <_> + + 0 -1 1778 -5.0581190735101700e-02 + + + -6.6112691164016724e-01 2.2676400840282440e-03 + + + <_> + + 0 -1 1779 -8.3926003426313400e-03 + + + -1.2883609533309937e-01 7.7920481562614441e-02 + + + <_> + + 0 -1 1780 5.5040661245584488e-02 + + + 7.7853789553046227e-03 -2.7820050716400146e-01 + + + <_> + + 0 -1 1781 -4.1862551122903824e-02 + + + 4.3335449695587158e-01 -2.9194639995694160e-02 + + + <_> + + 0 -1 1782 -7.4230520986020565e-03 + + + 1.3154500722885132e-01 -3.2047510147094727e-02 + + + <_> + + 0 -1 1783 1.9948489498347044e-03 + + + 8.3299688994884491e-02 -1.1662559956312180e-01 + + + <_> + + 0 -1 1784 4.1851431131362915e-02 + + + 4.1461169719696045e-02 -1.2815159559249878e-01 + + + <_> + + 0 -1 1785 2.7844381332397461e-01 + + + -2.2612810134887695e-02 5.2236318588256836e-01 + + + <_> + + 0 -1 1786 -7.1095931343734264e-03 + + + 1.2902510166168213e-01 -2.7944799512624741e-02 + + + <_> + + 0 -1 1787 1.1175610125064850e-02 + + + 5.1366660743951797e-02 -1.9559539854526520e-01 + + + <_> + + 0 -1 1788 -1.0364210233092308e-02 + + + -7.2631381452083588e-02 1.5199509263038635e-01 + + + <_> + + 0 -1 1789 -9.4094304367899895e-03 + + + -2.0993369817733765e-01 5.3346861153841019e-02 + + + <_> + + 0 -1 1790 -1.0375010222196579e-01 + + + -3.3693191409111023e-01 3.9442018605768681e-03 + + + <_> + + 0 -1 1791 -9.5977628370746970e-04 + + + 1.0307610034942627e-01 -1.0574100166559219e-01 + + + <_> + + 0 -1 1792 -5.5816810578107834e-02 + + + 2.6074001193046570e-01 -4.4885180890560150e-02 + + + <_> + + 0 -1 1793 -1.3430939614772797e-01 + + + -8.1660747528076172e-01 1.5410860069096088e-02 + + + <_> + + 0 -1 1794 6.0456950217485428e-02 + + + -3.0265029054135084e-03 -9.9991780519485474e-01 + + + <_> + + 0 -1 1795 2.4359079077839851e-02 + + + 2.4191310629248619e-02 -4.6632158756256104e-01 + + + <_> + + 0 -1 1796 5.2735779434442520e-02 + + + -2.4266760796308517e-02 2.1460479497909546e-01 + + + <_> + + 0 -1 1797 -5.5626039393246174e-03 + + + 1.0879939794540405e-01 -1.2120909988880157e-01 + + + <_> + + 0 -1 1798 9.0855263173580170e-02 + + + 1.0956900223391131e-04 -9.9975770711898804e-01 + + + <_> + + 0 -1 1799 -3.4681189805269241e-02 + + + -4.5409980416297913e-01 2.3691149428486824e-02 + + + <_> + + 0 -1 1800 -2.9579090551123954e-05 + + + 4.8031318932771683e-02 -4.9872968345880508e-02 + + + <_> + + 0 -1 1801 2.6277130469679832e-02 + + + -2.9456760734319687e-02 3.3974370360374451e-01 + + + <_> + + 0 -1 1802 -4.6276021748781204e-02 + + + 4.5496609807014465e-01 -1.0359579697251320e-02 + + + <_> + + 0 -1 1803 1.2048200005665421e-04 + + + -1.0575199872255325e-01 1.0096730291843414e-01 + + + <_> + + 0 -1 1804 6.8154390901327133e-03 + + + 2.8495609760284424e-02 -9.9765069782733917e-02 + + + <_> + + 0 -1 1805 1.6169620212167501e-03 + + + -1.3256169855594635e-01 8.7828978896141052e-02 + + + <_> + + 0 -1 1806 1.4563379809260368e-02 + + + -4.3079901486635208e-02 2.5113260746002197e-01 + + + <_> + + 0 -1 1807 2.0352909341454506e-02 + + + 3.9463639259338379e-02 -3.2518970966339111e-01 + + + <_> + + 0 -1 1808 -2.0789269357919693e-02 + + + 1.8993359804153442e-01 -2.1271999925374985e-02 + + + <_> + + 0 -1 1809 3.1780101358890533e-02 + + + -2.3768220096826553e-02 4.3957829475402832e-01 + + + <_> + + 0 -1 1810 1.2459229677915573e-01 + + + 6.5275398083031178e-03 -9.9991798400878906e-01 + + + <_> + + 0 -1 1811 -8.4007039666175842e-02 + + + -3.5620281100273132e-01 2.8916560113430023e-02 + + + <_> + + 0 -1 1812 9.6772145479917526e-03 + + + 6.4073942601680756e-02 -1.5482710301876068e-01 + + + <_> + + 0 -1 1813 1.0405039787292480e-01 + + + -2.2652050480246544e-02 5.7623207569122314e-01 + + + <_> + + 0 -1 1814 4.0814410895109177e-02 + + + -3.7368569523096085e-02 7.7298507094383240e-02 + + + <_> + + 0 -1 1815 -4.6916189789772034e-01 + + + -7.7304631471633911e-01 1.3607080094516277e-02 + + + <_> + + 0 -1 1816 -1.3723419606685638e-01 + + + -1. -1.7328710528090596e-03 + + + <_> + + 0 -1 1817 3.7569448351860046e-02 + + + 3.1412709504365921e-02 -3.5512429475784302e-01 + + + <_> + + 0 -1 1818 -1.2645379640161991e-02 + + + -7.1322880685329437e-02 4.1889548301696777e-02 + + + <_> + + 0 -1 1819 3.9933860301971436e-02 + + + -3.3447001129388809e-02 3.5932940244674683e-01 + + + <_> + + 0 -1 1820 1.7207439988851547e-02 + + + 2.6126530021429062e-02 -7.7634379267692566e-02 + + + <_> + + 0 -1 1821 5.9702228754758835e-02 + + + -2.3717980831861496e-02 5.7321798801422119e-01 + + + <_> + + 0 -1 1822 7.9917803406715393e-02 + + + -9.7547564655542374e-03 4.3467441201210022e-01 + + + <_> + + 0 -1 1823 1.1351720243692398e-01 + + + -3.8921970874071121e-02 2.6120808720588684e-01 + + + <_> + + 0 -1 1824 4.8379451036453247e-01 + + + 7.8452667221426964e-03 -6.5024161338806152e-01 + + + <_> + + 0 -1 1825 -1.0045070201158524e-01 + + + -8.0072021484375000e-01 1.2250199913978577e-02 + + + <_> + + 0 -1 1826 2.7176019549369812e-01 + + + 4.4636582024395466e-03 -6.9393122196197510e-01 + + + <_> + + 0 -1 1827 -1.2301249802112579e-01 + + + 3.2483839988708496e-01 -3.3841550350189209e-02 + + + <_> + + 0 -1 1828 6.1188749969005585e-02 + + + 7.1536018513143063e-03 -7.7817517518997192e-01 + + + <_> + + 0 -1 1829 -7.8828241676092148e-03 + + + -1.9754239916801453e-01 6.7795433104038239e-02 + + + <_> + + 0 -1 1830 -2.5584879517555237e-01 + + + -1. 1.4300020411610603e-03 + + + <_> + + 0 -1 1831 1.3098469376564026e-01 + + + -1.6668310388922691e-02 7.4547207355499268e-01 + + + <_> + + 0 -1 1832 -8.4553077816963196e-02 + + + -6.3423901796340942e-01 8.3142798393964767e-03 + + + <_> + + 0 -1 1833 -8.8297717273235321e-02 + + + -8.5705971717834473e-01 1.0549940168857574e-02 + + + <_> + + 0 -1 1834 -1.0374879837036133e-01 + + + 1.2073180079460144e-01 -2.2488579154014587e-02 + + + <_> + + 0 -1 1835 1.4872249448671937e-03 + + + -1.1096440255641937e-01 1.0405410081148148e-01 + + + <_> + + 0 -1 1836 2.1364030241966248e-01 + + + 7.3841079138219357e-03 -4.9760338664054871e-01 + + + <_> + + 0 -1 1837 2.6294309645891190e-02 + + + -6.3212700188159943e-02 2.6284760236740112e-01 + + + <_> + + 0 -1 1838 -2.6777000166475773e-03 + + + 5.6488350033760071e-02 -1.0174310207366943e-01 + + + <_> + + 0 -1 1839 -2.1261540241539478e-03 + + + -1.6442880034446716e-01 6.6159963607788086e-02 + + + <_> + + 0 -1 1840 -8.2200914621353149e-03 + + + -1.6132779419422150e-01 8.3515472710132599e-02 + + + <_> + + 0 -1 1841 -1.1701880022883415e-02 + + + 2.1516199409961700e-01 -5.9116050601005554e-02 + + + <_> + + 0 -1 1842 -7.0460740244016051e-04 + + + 9.6142299473285675e-02 -1.3008759915828705e-01 + + + <_> + + 0 -1 1843 -1.9671309273689985e-03 + + + 1.2605039775371552e-01 -8.8542640209197998e-02 + + + <_> + + 0 -1 1844 -9.5004076138138771e-03 + + + -2.3604579269886017e-01 4.5922629535198212e-02 + + + <_> + + 0 -1 1845 2.6802370324730873e-02 + + + -4.8966769129037857e-02 2.3887130618095398e-01 + + + <_> + + 0 -1 1846 2.2177420556545258e-02 + + + -1.2560590170323849e-02 2.7084270119667053e-01 + + + <_> + + 0 -1 1847 9.3382880091667175e-02 + + + 3.3835850656032562e-02 -3.9707890152931213e-01 + + + <_> + + 0 -1 1848 -1.3151080347597599e-02 + + + -1.1364260315895081e-01 2.5930739939212799e-02 + + + <_> + + 0 -1 1849 2.6929581072181463e-03 + + + 6.8202346563339233e-02 -1.6290910542011261e-01 + + + <_> + + 0 -1 1850 -5.7519129477441311e-03 + + + 1.3197720050811768e-01 -5.7711899280548096e-02 + + + <_> + + 0 -1 1851 -1.1071159970015287e-03 + + + 1.4550089836120605e-01 -7.7300041913986206e-02 + + + <_> + + 0 -1 1852 3.1805180013179779e-02 + + + 1.4181279577314854e-02 -2.1803429722785950e-01 + + + <_> + + 0 -1 1853 4.0729498863220215e-01 + + + -1.3772940263152122e-02 7.4853348731994629e-01 + + + <_> + + 0 -1 1854 7.0173077285289764e-02 + + + 1.1535810306668282e-02 -8.6094629764556885e-01 + + + <_> + + 0 -1 1855 -1.9437450100667775e-04 + + + 6.3009992241859436e-02 -1.5111440420150757e-01 + + + <_> + + 0 -1 1856 3.9425559341907501e-02 + + + 2.4115329608321190e-02 -4.7253820300102234e-01 + + + <_> + + 0 -1 1857 2.6128459721803665e-03 + + + 5.3963150829076767e-02 -1.7429760098457336e-01 + + + + + <_> + 152 + -3.0691600799560547e+01 + + <_> + + 0 -1 1858 1.0468430072069168e-01 + + + -4.7570109367370605e-02 4.2454048991203308e-01 + + + <_> + + 0 -1 1859 -4.2946420609951019e-02 + + + 1.6328890621662140e-01 -1.2655169703066349e-02 + + + <_> + + 0 -1 1860 -8.1577729433774948e-03 + + + 1.0235799849033356e-01 -1.0876630246639252e-01 + + + <_> + + 0 -1 1861 2.1813691128045321e-03 + + + 8.7985247373580933e-02 -5.5899761617183685e-02 + + + <_> + + 0 -1 1862 -6.5157511271536350e-03 + + + 8.2863852381706238e-02 -1.3736319541931152e-01 + + + <_> + + 0 -1 1863 2.4716500192880630e-02 + + + 1.6755210235714912e-02 1.3371250033378601e-01 + + + <_> + + 0 -1 1864 -5.9396267170086503e-04 + + + -1.3771370053291321e-01 1.0501290112733841e-01 + + + <_> + + 0 -1 1865 2.9373820871114731e-02 + + + -4.4581398367881775e-02 4.2731860280036926e-01 + + + <_> + + 0 -1 1866 -1.6576919704675674e-02 + + + -2.9827460646629333e-01 2.9718369245529175e-02 + + + <_> + + 0 -1 1867 9.4569493085145950e-03 + + + 5.3616948425769806e-02 -7.6675526797771454e-02 + + + <_> + + 0 -1 1868 7.4581913650035858e-02 + + + -4.6554408967494965e-02 3.0179610848426819e-01 + + + <_> + + 0 -1 1869 -3.8055621087551117e-02 + + + -2.8255119919776917e-01 2.0355690270662308e-02 + + + <_> + + 0 -1 1870 1.1065539903938770e-02 + + + -5.3942598402500153e-02 2.3132629692554474e-01 + + + <_> + + 0 -1 1871 1.3538219965994358e-02 + + + 2.8102980926632881e-02 -2.1802890300750732e-01 + + + <_> + + 0 -1 1872 4.6914750710129738e-03 + + + 6.3617020845413208e-02 -1.7460820078849792e-01 + + + <_> + + 0 -1 1873 4.3054440617561340e-01 + + + -2.1062379702925682e-02 5.7197797298431396e-01 + + + <_> + + 0 -1 1874 1.4298999449238181e-03 + + + -1.6780039668083191e-01 7.6851062476634979e-02 + + + <_> + + 0 -1 1875 2.7855230495333672e-02 + + + -3.5647969692945480e-02 2.8956910967826843e-01 + + + <_> + + 0 -1 1876 1.4391670003533363e-02 + + + 8.3300426602363586e-02 -1.2951320409774780e-01 + + + <_> + + 0 -1 1877 -7.7637381851673126e-02 + + + -1. 8.1426621181890368e-04 + + + <_> + + 0 -1 1878 1.6051199287176132e-02 + + + -5.4008588194847107e-02 2.1967799961566925e-01 + + + <_> + + 0 -1 1879 -7.0988729596138000e-02 + + + 6.1602139472961426e-01 -1.6476400196552277e-02 + + + <_> + + 0 -1 1880 -5.8310989290475845e-02 + + + -9.5955359935760498e-01 1.2517100200057030e-02 + + + <_> + + 0 -1 1881 -7.9547446221113205e-03 + + + -9.3684002757072449e-02 3.3896960318088531e-02 + + + <_> + + 0 -1 1882 -4.9685798585414886e-02 + + + 3.1466799974441528e-01 -2.9716050252318382e-02 + + + <_> + + 0 -1 1883 9.7751528024673462e-02 + + + 7.5905729318037629e-04 -6.7009872198104858e-01 + + + <_> + + 0 -1 1884 7.5908802449703217e-02 + + + 1.6073329374194145e-02 -6.6251361370086670e-01 + + + <_> + + 0 -1 1885 1.3333460083231330e-03 + + + 5.2241399884223938e-02 -1.8808710575103760e-01 + + + <_> + + 0 -1 1886 6.9728610105812550e-04 + + + -8.9044801890850067e-02 1.6642339527606964e-01 + + + <_> + + 0 -1 1887 2.0889509469270706e-02 + + + 2.1368719637393951e-02 -1.6083440184593201e-01 + + + <_> + + 0 -1 1888 -1.7649700166657567e-03 + + + 1.2398529797792435e-01 -8.5922397673130035e-02 + + + <_> + + 0 -1 1889 2.7779850643128157e-03 + + + -4.4366151094436646e-02 2.9322549700737000e-02 + + + <_> + + 0 -1 1890 7.9974532127380371e-04 + + + -1.2351520359516144e-01 8.8818296790122986e-02 + + + <_> + + 0 -1 1891 7.0215959567576647e-04 + + + -8.0154180526733398e-02 1.4544290304183960e-01 + + + <_> + + 0 -1 1892 -4.0604420006275177e-02 + + + -3.6047580838203430e-01 3.4314859658479691e-02 + + + <_> + + 0 -1 1893 -4.1686851531267166e-02 + + + -2.0927760004997253e-01 8.5808392614126205e-03 + + + <_> + + 0 -1 1894 -4.6390198171138763e-02 + + + 5.3768527507781982e-01 -2.2632500156760216e-02 + + + <_> + + 0 -1 1895 -1.5822030603885651e-01 + + + -1. 1.4312319690361619e-03 + + + <_> + + 0 -1 1896 -7.5683370232582092e-02 + + + -8.0503028631210327e-01 1.2843839824199677e-02 + + + <_> + + 0 -1 1897 -5.7808328419923782e-02 + + + 3.8675680756568909e-01 -1.2630320154130459e-02 + + + <_> + + 0 -1 1898 -4.5112581574358046e-05 + + + 7.4958987534046173e-02 -1.3433749973773956e-01 + + + <_> + + 0 -1 1899 3.9205480366945267e-02 + + + 2.1980579942464828e-02 -4.5748621225357056e-01 + + + <_> + + 0 -1 1900 4.4945240020751953e-02 + + + -2.3763459175825119e-02 4.8715281486511230e-01 + + + <_> + + 0 -1 1901 -5.7849191129207611e-02 + + + 3.5563638806343079e-01 -6.2380530871450901e-03 + + + <_> + + 0 -1 1902 -1.0397239774465561e-01 + + + -6.2262791395187378e-01 1.5022880397737026e-02 + + + <_> + + 0 -1 1903 -2.5238281488418579e-01 + + + -5.9059482812881470e-01 -1.9238379900343716e-04 + + + <_> + + 0 -1 1904 1.9675880670547485e-01 + + + 1.2625159695744514e-02 -7.2753208875656128e-01 + + + <_> + + 0 -1 1905 3.7412419915199280e-02 + + + -2.3478340357542038e-02 1.2147639691829681e-01 + + + <_> + + 0 -1 1906 -8.0470675602555275e-03 + + + -1.8167789280414581e-01 4.9743499606847763e-02 + + + <_> + + 0 -1 1907 4.1297491639852524e-02 + + + 1.0259049944579601e-02 -1.4679500460624695e-01 + + + <_> + + 0 -1 1908 -5.0735730677843094e-02 + + + 2.2679640352725983e-01 -4.9807049334049225e-02 + + + <_> + + 0 -1 1909 -3.6145109334029257e-04 + + + 4.1798278689384460e-02 -7.0410832762718201e-02 + + + <_> + + 0 -1 1910 -1.2359450012445450e-01 + + + 5.8283501863479614e-01 -1.6822429373860359e-02 + + + <_> + + 0 -1 1911 5.7071618735790253e-02 + + + -4.0532071143388748e-02 1.7078270018100739e-01 + + + <_> + + 0 -1 1912 5.8561540208756924e-03 + + + -1.3827900588512421e-01 8.2565233111381531e-02 + + + <_> + + 0 -1 1913 -1.1472850292921066e-01 + + + -4.6754041314125061e-01 3.4348990302532911e-03 + + + <_> + + 0 -1 1914 2.0518699660897255e-02 + + + 8.1507943570613861e-02 -1.6894109547138214e-01 + + + <_> + + 0 -1 1915 5.4629769176244736e-02 + + + -7.4763749726116657e-03 2.3640379309654236e-01 + + + <_> + + 0 -1 1916 -6.9312967360019684e-02 + + + 3.0071571469306946e-01 -3.4785300493240356e-02 + + + <_> + + 0 -1 1917 -7.4176848866045475e-03 + + + -2.8766560554504395e-01 4.7531820833683014e-02 + + + <_> + + 0 -1 1918 1.0223260149359703e-02 + + + -3.0834799632430077e-02 3.9249539375305176e-01 + + + <_> + + 0 -1 1919 -2.7346659451723099e-02 + + + -1.5695489943027496e-01 1.3967529870569706e-02 + + + <_> + + 0 -1 1920 3.3875100314617157e-02 + + + 2.6063309982419014e-02 -3.9006409049034119e-01 + + + <_> + + 0 -1 1921 4.5174721628427505e-02 + + + 8.9199207723140717e-03 -5.6769150495529175e-01 + + + <_> + + 0 -1 1922 1.1488229967653751e-02 + + + -4.5491419732570648e-02 2.5109928846359253e-01 + + + <_> + + 0 -1 1923 -1.0496149770915508e-02 + + + 6.4895443618297577e-02 -1.0623539984226227e-01 + + + <_> + + 0 -1 1924 6.0881208628416061e-03 + + + 8.0929182469844818e-02 -1.4776149392127991e-01 + + + <_> + + 0 -1 1925 -2.6524660643190145e-03 + + + 1.2062519788742065e-01 -7.2674863040447235e-02 + + + <_> + + 0 -1 1926 2.3559860419481993e-03 + + + -8.1811271607875824e-02 1.4126540720462799e-01 + + + <_> + + 0 -1 1927 -2.6777219772338867e-01 + + + -7.8083831071853638e-01 4.4526048004627228e-03 + + + <_> + + 0 -1 1928 1.5965799987316132e-01 + + + 2.8381649404764175e-02 -3.8967838883399963e-01 + + + <_> + + 0 -1 1929 5.1899369806051254e-02 + + + -3.4305319190025330e-02 1.5921010076999664e-01 + + + <_> + + 0 -1 1930 -1.3652780326083302e-03 + + + -1.3755479454994202e-01 7.2719998657703400e-02 + + + <_> + + 0 -1 1931 2.2497299313545227e-01 + + + -4.8017292283475399e-03 9.9994850158691406e-01 + + + <_> + + 0 -1 1932 3.1434150878340006e-03 + + + 5.5151570588350296e-02 -1.6643160581588745e-01 + + + <_> + + 0 -1 1933 -6.2940339557826519e-03 + + + 6.2896028161048889e-02 -6.0436379164457321e-02 + + + <_> + + 0 -1 1934 5.1301911473274231e-02 + + + -3.1671810895204544e-02 3.8534939289093018e-01 + + + <_> + + 0 -1 1935 -6.6980808973312378e-02 + + + -1.0925900191068649e-01 8.9958757162094116e-03 + + + <_> + + 0 -1 1936 5.1464758813381195e-02 + + + 2.6210019364953041e-02 -4.2159339785575867e-01 + + + <_> + + 0 -1 1937 -9.0982139110565186e-02 + + + 3.2760378718376160e-01 -7.8134387731552124e-03 + + + <_> + + 0 -1 1938 5.2848970517516136e-03 + + + -7.9399570822715759e-02 1.4998179674148560e-01 + + + <_> + + 0 -1 1939 -1.5017699915915728e-03 + + + 9.7703106701374054e-02 -7.3532037436962128e-02 + + + <_> + + 0 -1 1940 -2.5415199343115091e-03 + + + 6.7801132798194885e-02 -1.4883249998092651e-01 + + + <_> + + 0 -1 1941 4.4252820312976837e-02 + + + 1.6475830227136612e-02 -2.2880180180072784e-01 + + + <_> + + 0 -1 1942 -3.3457159996032715e-02 + + + 4.1966789960861206e-01 -3.2553531229496002e-02 + + + <_> + + 0 -1 1943 1.3529899716377258e-01 + + + 9.0894084423780441e-03 -7.3839122056961060e-01 + + + <_> + + 0 -1 1944 -3.7440970540046692e-02 + + + -4.2613020539283752e-01 2.3972390219569206e-02 + + + <_> + + 0 -1 1945 -1.4479730452876538e-05 + + + 5.6783780455589294e-02 -1.5888829529285431e-01 + + + <_> + + 0 -1 1946 -1.1839280277490616e-01 + + + 5.0500631332397461e-01 -2.1859649568796158e-02 + + + <_> + + 0 -1 1947 -8.5000684484839439e-03 + + + 5.2339930087327957e-02 -4.5925021171569824e-02 + + + <_> + + 0 -1 1948 -1.4189509674906731e-02 + + + -2.3597060143947601e-01 4.0358349680900574e-02 + + + <_> + + 0 -1 1949 7.3599420487880707e-02 + + + 3.2680039294064045e-03 -5.8853602409362793e-01 + + + <_> + + 0 -1 1950 5.4971270263195038e-02 + + + -2.0196519792079926e-02 5.5482727289199829e-01 + + + <_> + + 0 -1 1951 -2.2816160693764687e-02 + + + -1.7589579522609711e-01 1.7851740121841431e-02 + + + <_> + + 0 -1 1952 2.3204670287668705e-03 + + + -8.1749923527240753e-02 1.2833079695701599e-01 + + + <_> + + 0 -1 1953 -1.0797909647226334e-01 + + + -1. 1.7423679819330573e-03 + + + <_> + + 0 -1 1954 -4.1111931204795837e-02 + + + 5.8432698249816895e-01 -1.8878869712352753e-02 + + + <_> + + 0 -1 1955 -3.5695650149136782e-03 + + + -1.7558470368385315e-01 6.4731426537036896e-02 + + + <_> + + 0 -1 1956 -6.6358670592308044e-02 + + + -1. 9.2067662626504898e-03 + + + <_> + + 0 -1 1957 -1.8944580107927322e-02 + + + 2.5783088803291321e-01 -1.8944939598441124e-02 + + + <_> + + 0 -1 1958 -1.2871269881725311e-01 + + + -5.8477258682250977e-01 1.4466489665210247e-02 + + + <_> + + 0 -1 1959 2.4218629114329815e-03 + + + -7.3590897023677826e-02 7.0332102477550507e-02 + + + <_> + + 0 -1 1960 2.9718460515141487e-02 + + + -2.3011969402432442e-02 4.0542769432067871e-01 + + + <_> + + 0 -1 1961 1.7555029690265656e-01 + + + 2.0808730274438858e-02 -3.7285649776458740e-01 + + + <_> + + 0 -1 1962 3.7122450768947601e-02 + + + -2.7959629893302917e-02 3.5908779501914978e-01 + + + <_> + + 0 -1 1963 -3.8044541142880917e-03 + + + -1.3337990641593933e-01 9.2061348259449005e-02 + + + <_> + + 0 -1 1964 -1.0930700227618217e-02 + + + 2.3196309804916382e-01 -4.4535879045724869e-02 + + + <_> + + 0 -1 1965 1.6103629767894745e-01 + + + -8.7691349908709526e-03 2.2045169770717621e-01 + + + <_> + + 0 -1 1966 2.5971230119466782e-02 + + + 6.4421012997627258e-02 -1.8919080495834351e-01 + + + <_> + + 0 -1 1967 1.2638209760189056e-01 + + + -1.0362179949879646e-02 1.7057189345359802e-01 + + + <_> + + 0 -1 1968 -9.1393403708934784e-03 + + + -1.3828249275684357e-01 8.6790062487125397e-02 + + + <_> + + 0 -1 1969 1.7722090706229210e-02 + + + 3.9719890803098679e-02 -1.2294259667396545e-01 + + + <_> + + 0 -1 1970 -8.2425750792026520e-02 + + + 3.0023100972175598e-01 -3.3165920525789261e-02 + + + <_> + + 0 -1 1971 4.3892528861761093e-02 + + + -1.3056339696049690e-02 9.8728686571121216e-02 + + + <_> + + 0 -1 1972 3.5575369838625193e-03 + + + 1.1186280101537704e-01 -9.2797823250293732e-02 + + + <_> + + 0 -1 1973 -1.5298820100724697e-02 + + + -1.3007879257202148e-01 2.3159010335803032e-02 + + + <_> + + 0 -1 1974 -2.6504450943320990e-03 + + + 1.3526280224323273e-01 -7.3355458676815033e-02 + + + <_> + + 0 -1 1975 4.1636861860752106e-02 + + + -1.9068980589509010e-02 3.5857999324798584e-01 + + + <_> + + 0 -1 1976 -7.5290258973836899e-03 + + + -1.8672360479831696e-01 5.8248449116945267e-02 + + + <_> + + 0 -1 1977 -4.0031488984823227e-02 + + + 2.2969779372215271e-01 -1.4608230441808701e-02 + + + <_> + + 0 -1 1978 -1.3624709844589233e-01 + + + -8.7086462974548340e-01 1.1211199685931206e-02 + + + <_> + + 0 -1 1979 4.5124008320271969e-03 + + + -3.5644959658384323e-02 1.0103099793195724e-01 + + + <_> + + 0 -1 1980 5.4118070751428604e-02 + + + -1.4689410105347633e-02 6.7652267217636108e-01 + + + <_> + + 0 -1 1981 -3.4553959965705872e-02 + + + 2.1854560077190399e-01 -9.7846649587154388e-03 + + + <_> + + 0 -1 1982 -2.5520840659737587e-02 + + + -4.6898001432418823e-01 2.4060370400547981e-02 + + + <_> + + 0 -1 1983 -3.5473700612783432e-02 + + + 1.3427549600601196e-01 -2.1438699215650558e-02 + + + <_> + + 0 -1 1984 2.8683411073870957e-04 + + + -9.7300283610820770e-02 1.0760939866304398e-01 + + + <_> + + 0 -1 1985 -7.8717589378356934e-02 + + + -1. 2.7187850791960955e-03 + + + <_> + + 0 -1 1986 -1.5701749362051487e-04 + + + 1.1199659854173660e-01 -9.9441379308700562e-02 + + + <_> + + 0 -1 1987 1.6026569530367851e-02 + + + 3.4198261797428131e-02 -1.9100490212440491e-01 + + + <_> + + 0 -1 1988 -1.9164729863405228e-02 + + + 8.9024826884269714e-02 -1.1919700354337692e-01 + + + <_> + + 0 -1 1989 -3.9445150643587112e-02 + + + -1.0717990249395370e-01 3.7615209817886353e-02 + + + <_> + + 0 -1 1990 2.2417430300265551e-03 + + + -9.0581007301807404e-02 1.7547470331192017e-01 + + + <_> + + 0 -1 1991 -3.8842540234327316e-03 + + + 9.2697329819202423e-02 -4.2431369423866272e-02 + + + <_> + + 0 -1 1992 -2.1914629265666008e-02 + + + -2.8017508983612061e-01 3.7537671625614166e-02 + + + <_> + + 0 -1 1993 -3.7512119859457016e-02 + + + 3.6218520998954773e-01 -1.7507450655102730e-02 + + + <_> + + 0 -1 1994 -8.4374047582969069e-04 + + + 1.2348400056362152e-01 -8.0245867371559143e-02 + + + <_> + + 0 -1 1995 -2.6424999814480543e-03 + + + 5.2565738558769226e-02 -8.3335436880588531e-02 + + + <_> + + 0 -1 1996 -9.2836812138557434e-02 + + + -4.2060381174087524e-01 2.3360429331660271e-02 + + + <_> + + 0 -1 1997 8.2463070750236511e-02 + + + -2.9815400484949350e-03 7.8999197483062744e-01 + + + <_> + + 0 -1 1998 -6.9864951074123383e-02 + + + 7.3802971839904785e-01 -1.4021299779415131e-02 + + + <_> + + 0 -1 1999 4.5439340174198151e-02 + + + -1.1321160010993481e-02 1.9973699748516083e-01 + + + <_> + + 0 -1 2000 -5.0297789275646210e-02 + + + 6.0764670372009277e-01 -1.7632890492677689e-02 + + + <_> + + 0 -1 2001 6.0456149280071259e-02 + + + -5.9354598633944988e-03 3.1622889637947083e-01 + + + <_> + + 0 -1 2002 -4.6769347973167896e-03 + + + -1.8090610206127167e-01 5.9660188853740692e-02 + + + <_> + + 0 -1 2003 3.6530068609863520e-04 + + + -9.1220043599605560e-02 1.1092729866504669e-01 + + + <_> + + 0 -1 2004 -1.9491260871291161e-02 + + + -3.7075570225715637e-01 2.8416309505701065e-02 + + + <_> + + 0 -1 2005 2.0056450739502907e-02 + + + -5.8159679174423218e-02 7.8105233609676361e-02 + + + <_> + + 0 -1 2006 -3.9371181279420853e-02 + + + 2.9012489318847656e-01 -4.1875660419464111e-02 + + + <_> + + 0 -1 2007 2.1523650735616684e-02 + + + 1.6573080793023109e-02 -2.3614850640296936e-01 + + + <_> + + 0 -1 2008 -3.1294699292629957e-03 + + + -1.6466400027275085e-01 6.2233809381723404e-02 + + + <_> + + 0 -1 2009 2.8589619323611259e-03 + + + -3.8098409771919250e-02 5.5751629173755646e-02 + + + + + <_> + 135 + -3.0609300613403320e+01 + + <_> + + 0 -1 2010 -2.0576130598783493e-02 + + + 1.7351129651069641e-01 -1.5058030188083649e-01 + + + <_> + + 0 -1 2011 1.6125949099659920e-02 + + + -4.1612371802330017e-02 2.3984450101852417e-01 + + + <_> + + 0 -1 2012 -1.2352580204606056e-02 + + + 9.7780853509902954e-02 -1.2391830235719681e-01 + + + <_> + + 0 -1 2013 -5.7473899796605110e-03 + + + 7.7615208923816681e-02 -9.6236728131771088e-02 + + + <_> + + 0 -1 2014 2.9579061083495617e-03 + + + -6.7683719098567963e-02 2.6594209671020508e-01 + + + <_> + + 0 -1 2015 -8.3472225815057755e-03 + + + -1.1188179999589920e-01 1.3736370205879211e-01 + + + <_> + + 0 -1 2016 -5.8408780023455620e-04 + + + 4.5943111181259155e-02 -1.6486530005931854e-01 + + + <_> + + 0 -1 2017 -3.5136839142069221e-04 + + + 9.7791008651256561e-02 -6.4357861876487732e-02 + + + <_> + + 0 -1 2018 8.4126877482049167e-05 + + + -1.3847629725933075e-01 8.8727742433547974e-02 + + + <_> + + 0 -1 2019 -2.6592490077018738e-01 + + + -6.7525398731231689e-01 1.6188669949769974e-02 + + + <_> + + 0 -1 2020 4.3727741576731205e-03 + + + 7.2884798049926758e-02 -1.2560360133647919e-01 + + + <_> + + 0 -1 2021 -2.2660531103610992e-03 + + + 8.7269246578216553e-02 -6.8355433642864227e-02 + + + <_> + + 0 -1 2022 -6.5290732309222221e-03 + + + -1.2197560071945190e-01 8.0927930772304535e-02 + + + <_> + + 0 -1 2023 9.6436247229576111e-02 + + + -8.2637304440140724e-03 4.9127399921417236e-01 + + + <_> + + 0 -1 2024 -4.3594818562269211e-02 + + + 4.5575308799743652e-01 -2.5600390508770943e-02 + + + <_> + + 0 -1 2025 -2.1098319441080093e-02 + + + -1.1892750114202499e-01 2.3539589717984200e-02 + + + <_> + + 0 -1 2026 -2.5200019590556622e-03 + + + 1.2724469602108002e-01 -9.0751722455024719e-02 + + + <_> + + 0 -1 2027 -8.9241685345768929e-03 + + + -1.1514320224523544e-01 4.3497029691934586e-02 + + + <_> + + 0 -1 2028 3.4590170253068209e-03 + + + 6.3537172973155975e-02 -1.8261429667472839e-01 + + + <_> + + 0 -1 2029 -3.6076800897717476e-03 + + + 1.2005910277366638e-01 -5.2449110895395279e-02 + + + <_> + + 0 -1 2030 5.3778890520334244e-02 + + + -1.8675789237022400e-02 5.2313017845153809e-01 + + + <_> + + 0 -1 2031 4.5245189219713211e-02 + + + -1.7504919320344925e-02 2.1871849894523621e-01 + + + <_> + + 0 -1 2032 1.3272929936647415e-03 + + + 7.8659959137439728e-02 -1.3551670312881470e-01 + + + <_> + + 0 -1 2033 1.2393640354275703e-02 + + + 2.8952300548553467e-02 -7.2149537503719330e-02 + + + <_> + + 0 -1 2034 -3.7702780216932297e-02 + + + 4.1850051283836365e-01 -3.0355349183082581e-02 + + + <_> + + 0 -1 2035 -4.8910409212112427e-02 + + + 3.7365001440048218e-01 -5.6771109811961651e-03 + + + <_> + + 0 -1 2036 -5.9961699880659580e-03 + + + -2.0756420493125916e-01 7.0438846945762634e-02 + + + <_> + + 0 -1 2037 5.6631930172443390e-02 + + + -1.7292939126491547e-02 2.5498399138450623e-01 + + + <_> + + 0 -1 2038 3.1650230288505554e-02 + + + -2.0658250898122787e-02 4.8398271203041077e-01 + + + <_> + + 0 -1 2039 -2.1152989938855171e-02 + + + 2.0028789341449738e-01 -2.4872610345482826e-02 + + + <_> + + 0 -1 2040 8.7676532566547394e-02 + + + -2.4999700486660004e-02 4.1126599907875061e-01 + + + <_> + + 0 -1 2041 5.3299881517887115e-02 + + + -8.6766229942440987e-03 3.7446591258049011e-01 + + + <_> + + 0 -1 2042 -2.6251509552821517e-04 + + + 9.9231846630573273e-02 -1.1989200115203857e-01 + + + <_> + + 0 -1 2043 -8.5897604003548622e-03 + + + -1.8593010306358337e-01 3.4370779991149902e-02 + + + <_> + + 0 -1 2044 1.6940470784902573e-02 + + + -3.4768261015415192e-02 2.7288261055946350e-01 + + + <_> + + 0 -1 2045 5.0596110522747040e-02 + + + 3.6170349922031164e-03 -3.9460760354995728e-01 + + + <_> + + 0 -1 2046 -8.3048436790704727e-03 + + + 9.8577797412872314e-02 -1.1666280031204224e-01 + + + <_> + + 0 -1 2047 1.0586270131170750e-02 + + + 3.9117150008678436e-02 -8.5843667387962341e-02 + + + <_> + + 0 -1 2048 -3.2558601349592209e-02 + + + -3.7352150678634644e-01 2.5410100817680359e-02 + + + <_> + + 0 -1 2049 -3.2352130860090256e-02 + + + 2.6129978895187378e-01 -2.8631040826439857e-02 + + + <_> + + 0 -1 2050 2.5547049939632416e-02 + + + 3.3884890377521515e-02 -3.0452328920364380e-01 + + + <_> + + 0 -1 2051 4.2252440005540848e-02 + + + 8.9510334655642509e-03 -2.4091260135173798e-01 + + + <_> + + 0 -1 2052 3.8109479937702417e-03 + + + -7.2638936340808868e-02 1.4634390175342560e-01 + + + <_> + + 0 -1 2053 2.0821709185838699e-02 + + + -3.6271940916776657e-02 1.8324719369411469e-01 + + + <_> + + 0 -1 2054 2.6497790589928627e-02 + + + 2.8160110116004944e-02 -3.9517199993133545e-01 + + + <_> + + 0 -1 2055 2.0283530652523041e-01 + + + -9.3782292678952217e-03 4.4868949055671692e-01 + + + <_> + + 0 -1 2056 -1.7996610701084137e-01 + + + -7.9595959186553955e-01 1.2027840130031109e-02 + + + <_> + + 0 -1 2057 -7.0968091487884521e-02 + + + -7.6951277256011963e-01 1.0918079642578959e-03 + + + <_> + + 0 -1 2058 2.7555041015148163e-03 + + + 7.0150263607501984e-02 -1.2915180623531342e-01 + + + <_> + + 0 -1 2059 -7.7004402875900269e-02 + + + -4.9155071377754211e-01 2.8067480307072401e-03 + + + <_> + + 0 -1 2060 -2.0257910713553429e-02 + + + 2.3568239808082581e-01 -4.3432798236608505e-02 + + + <_> + + 0 -1 2061 -8.6421817541122437e-02 + + + -3.4541681408882141e-01 1.1248850263655186e-02 + + + <_> + + 0 -1 2062 -6.7245952785015106e-02 + + + -6.8752902746200562e-01 1.1868669651448727e-02 + + + <_> + + 0 -1 2063 -1.2990389764308929e-01 + + + -7.9069268703460693e-01 2.5537670589983463e-03 + + + <_> + + 0 -1 2064 -3.0394670367240906e-01 + + + -8.9989352226257324e-01 8.1501724198460579e-03 + + + <_> + + 0 -1 2065 -4.1988548636436462e-01 + + + -7.7303320169448853e-01 1.3665149454027414e-03 + + + <_> + + 0 -1 2066 -1.6851289570331573e-01 + + + 2.4319399893283844e-01 -4.1280739009380341e-02 + + + <_> + + 0 -1 2067 2.8788880445063114e-03 + + + 2.0577169954776764e-02 -1.8590900301933289e-01 + + + <_> + + 0 -1 2068 -4.0223840624094009e-02 + + + 4.3099269270896912e-01 -2.3104710504412651e-02 + + + <_> + + 0 -1 2069 3.9687040261924267e-03 + + + 4.3601520359516144e-02 -9.2233568429946899e-02 + + + <_> + + 0 -1 2070 -2.7650719508528709e-02 + + + -6.1707872152328491e-01 1.4680569991469383e-02 + + + <_> + + 0 -1 2071 -2.3034301120787859e-03 + + + 9.0349592268466949e-02 -6.1664551496505737e-02 + + + <_> + + 0 -1 2072 -2.9040789231657982e-02 + + + 2.7737939357757568e-01 -3.9218869060277939e-02 + + + <_> + + 0 -1 2073 1.3288260437548161e-02 + + + 3.1138259917497635e-02 -1.3558749854564667e-01 + + + <_> + + 0 -1 2074 3.3968928619287908e-05 + + + -1.3562929630279541e-01 7.6467581093311310e-02 + + + <_> + + 0 -1 2075 -6.8583860993385315e-03 + + + -1.0365810245275497e-01 2.5939159095287323e-02 + + + <_> + + 0 -1 2076 -1.4360919594764709e-02 + + + -2.1136499941349030e-01 5.2973140031099319e-02 + + + <_> + + 0 -1 2077 -1.7468679696321487e-02 + + + -1.0518109798431396e-01 1.7715079709887505e-02 + + + <_> + + 0 -1 2078 -9.8544567823410034e-02 + + + 2.5649461150169373e-01 -4.4229641556739807e-02 + + + <_> + + 0 -1 2079 -2.8123459778726101e-03 + + + -7.3800362646579742e-02 1.5400940179824829e-01 + + + <_> + + 0 -1 2080 2.1941340528428555e-03 + + + -1.4216299355030060e-01 8.9139223098754883e-02 + + + <_> + + 0 -1 2081 4.6820759773254395e-02 + + + 2.9364090412855148e-02 -6.2754891812801361e-02 + + + <_> + + 0 -1 2082 3.2891759276390076e-01 + + + 1.3015690259635448e-02 -7.8347128629684448e-01 + + + <_> + + 0 -1 2083 -2.0470520481467247e-02 + + + -7.6814353466033936e-02 3.9800468832254410e-02 + + + <_> + + 0 -1 2084 8.8677026331424713e-02 + + + -4.0312368422746658e-02 2.8453868627548218e-01 + + + <_> + + 0 -1 2085 -1.1557979742065072e-03 + + + 4.2199321091175079e-02 -4.1446208953857422e-02 + + + <_> + + 0 -1 2086 6.0524538159370422e-02 + + + -1.6918700188398361e-02 6.7237138748168945e-01 + + + <_> + + 0 -1 2087 4.0830459445714951e-02 + + + 1.3364840298891068e-02 -3.1113299727439880e-01 + + + <_> + + 0 -1 2088 -3.1132870353758335e-03 + + + -1.7262780666351318e-01 5.9382218867540359e-02 + + + <_> + + 0 -1 2089 -4.3638627976179123e-03 + + + 1.7265330255031586e-01 -6.2423970550298691e-02 + + + <_> + + 0 -1 2090 -3.2834090292453766e-02 + + + 4.0275371074676514e-01 -2.5799039751291275e-02 + + + <_> + + 0 -1 2091 6.4377002418041229e-02 + + + -4.7380630858242512e-03 7.5221067667007446e-01 + + + <_> + + 0 -1 2092 2.7642730623483658e-02 + + + 3.7644479423761368e-02 -2.9220271110534668e-01 + + + <_> + + 0 -1 2093 2.2171199321746826e-02 + + + -2.4654069915413857e-02 2.0533810555934906e-01 + + + <_> + + 0 -1 2094 1.5859310515224934e-03 + + + 8.9463792741298676e-02 -1.2611730396747589e-01 + + + <_> + + 0 -1 2095 -1.8872050568461418e-02 + + + 1.3072650134563446e-01 -3.6953710019588470e-02 + + + <_> + + 0 -1 2096 -1.3306169770658016e-02 + + + -2.2963209450244904e-01 4.2687188833951950e-02 + + + <_> + + 0 -1 2097 -7.0407122373580933e-02 + + + -7.1117508411407471e-01 6.6957580856978893e-03 + + + <_> + + 0 -1 2098 4.1748929768800735e-02 + + + -3.2927870750427246e-02 3.0035281181335449e-01 + + + <_> + + 0 -1 2099 5.3282231092453003e-03 + + + 5.1811750978231430e-02 -1.9069090485572815e-01 + + + <_> + + 0 -1 2100 2.4094989057630301e-03 + + + -8.0687969923019409e-02 1.2510129809379578e-01 + + + <_> + + 0 -1 2101 -6.2405979260802269e-03 + + + 1.0740630328655243e-01 -3.9979010820388794e-02 + + + <_> + + 0 -1 2102 -6.7312467098236084e-01 + + + -1. 1.0070810094475746e-02 + + + <_> + + 0 -1 2103 -9.2983558773994446e-02 + + + -1. -2.4261360522359610e-03 + + + <_> + + 0 -1 2104 3.3629760146141052e-02 + + + 2.4122869595885277e-02 -4.1387900710105896e-01 + + + <_> + + 0 -1 2105 2.3880619555711746e-02 + + + 9.6614202484488487e-03 -2.1973779797554016e-01 + + + <_> + + 0 -1 2106 1.2738780351355672e-03 + + + -8.3555117249488831e-02 1.2269689887762070e-01 + + + <_> + + 0 -1 2107 1.8414139747619629e-02 + + + 3.0798140913248062e-02 -3.5609170794487000e-01 + + + <_> + + 0 -1 2108 -5.6469578295946121e-02 + + + 8.8631778955459595e-01 -1.2698300182819366e-02 + + + <_> + + 0 -1 2109 -4.6219761134125292e-04 + + + 3.4681901335716248e-02 -8.2850828766822815e-02 + + + <_> + + 0 -1 2110 -1.9060859456658363e-02 + + + 3.5369411110877991e-01 -2.7611760422587395e-02 + + + <_> + + 0 -1 2111 1.5762279508635402e-03 + + + 4.0939908474683762e-02 -2.2517409920692444e-01 + + + <_> + + 0 -1 2112 2.0101880654692650e-02 + + + -2.3995550349354744e-02 4.1091251373291016e-01 + + + <_> + + 0 -1 2113 2.7211669366806746e-03 + + + 2.8122449293732643e-02 -1.4200119674205780e-01 + + + <_> + + 0 -1 2114 -1.0944429785013199e-01 + + + 9.5085740089416504e-01 -9.4355372712016106e-03 + + + <_> + + 0 -1 2115 -1.2755279894918203e-03 + + + 5.6902900338172913e-02 -8.3429783582687378e-02 + + + <_> + + 0 -1 2116 -8.0578401684761047e-02 + + + -9.5139288902282715e-01 8.2268668338656425e-03 + + + <_> + + 0 -1 2117 -1.2047989666461945e-01 + + + -3.0273869633674622e-01 2.8489340096712112e-02 + + + <_> + + 0 -1 2118 -1.8294970691204071e-01 + + + 2.3866130411624908e-01 -6.2773942947387695e-02 + + + <_> + + 0 -1 2119 -1.7106409370899200e-01 + + + -5.9394681453704834e-01 3.1515269074589014e-03 + + + <_> + + 0 -1 2120 -7.3414877057075500e-02 + + + -8.6933082342147827e-01 1.0084389708936214e-02 + + + <_> + + 0 -1 2121 2.4238299578428268e-02 + + + -2.1756110712885857e-02 1.6218559443950653e-01 + + + <_> + + 0 -1 2122 -7.1713668294250965e-03 + + + -9.7345590591430664e-02 9.2148497700691223e-02 + + + <_> + + 0 -1 2123 -3.3344399183988571e-02 + + + 7.4645392596721649e-02 -2.2160679101943970e-02 + + + <_> + + 0 -1 2124 7.2907900903373957e-04 + + + -9.4971813261508942e-02 1.1826740205287933e-01 + + + <_> + + 0 -1 2125 -1.0217289673164487e-03 + + + 5.6426230818033218e-02 -3.7573829293251038e-02 + + + <_> + + 0 -1 2126 -8.4900937508791685e-04 + + + -1.3883149623870850e-01 7.0047326385974884e-02 + + + <_> + + 0 -1 2127 9.9850513041019440e-02 + + + -1.4011589810252190e-02 2.6115679740905762e-01 + + + <_> + + 0 -1 2128 -1.3090069591999054e-01 + + + 7.1379351615905762e-01 -1.1643799953162670e-02 + + + <_> + + 0 -1 2129 9.1210529208183289e-03 + + + 4.5402809977531433e-02 -2.1830010414123535e-01 + + + <_> + + 0 -1 2130 2.0106479525566101e-01 + + + -2.0753270015120506e-02 5.1230221986770630e-01 + + + <_> + + 0 -1 2131 4.7389309853315353e-02 + + + 9.4779124483466148e-03 -4.7942391037940979e-01 + + + <_> + + 0 -1 2132 -5.7118538767099380e-02 + + + 3.9166051149368286e-01 -2.6703910902142525e-02 + + + <_> + + 0 -1 2133 -8.3700623363256454e-03 + + + -1.3399459421634674e-01 4.8460900783538818e-02 + + + <_> + + 0 -1 2134 4.0913890115916729e-03 + + + -5.9489779174327850e-02 1.7438539862632751e-01 + + + <_> + + 0 -1 2135 7.1899488568305969e-02 + + + 1.1723180301487446e-02 -3.6274778842926025e-01 + + + <_> + + 0 -1 2136 -3.6888250615447760e-03 + + + 7.5763627886772156e-02 -1.5033599734306335e-01 + + + <_> + + 0 -1 2137 -7.4795219115912914e-03 + + + 1.5027859807014465e-01 -4.5870490372180939e-02 + + + <_> + + 0 -1 2138 -1.2582589872181416e-02 + + + -1.9915549457073212e-01 6.3917450606822968e-02 + + + <_> + + 0 -1 2139 3.5687079653143883e-03 + + + -1.2117239832878113e-01 1.0956080257892609e-01 + + + <_> + + 0 -1 2140 1.7363800434395671e-03 + + + 1.2258529663085938e-01 -9.3556262552738190e-02 + + + <_> + + 0 -1 2141 -1.4523629797622561e-03 + + + 9.6722528338432312e-02 -8.0739699304103851e-02 + + + <_> + + 0 -1 2142 3.1017749570310116e-03 + + + -6.9076471030712128e-02 1.5396459400653839e-01 + + + <_> + + 0 -1 2143 -8.5509587079286575e-03 + + + -1.5186290442943573e-01 4.0346920490264893e-02 + + + <_> + + 0 -1 2144 -1.8966189818456769e-03 + + + 1.2172549962997437e-01 -9.8543442785739899e-02 + + + + + <_> + 135 + -3.0601499557495117e+01 + + <_> + + 0 -1 2145 -2.3754740133881569e-02 + + + 1.7095300555229187e-01 -1.1534280329942703e-01 + + + <_> + + 0 -1 2146 -7.3806629516184330e-03 + + + 8.8067196309566498e-02 -4.0317770093679428e-02 + + + <_> + + 0 -1 2147 1.1198900174349546e-03 + + + -7.9895302653312683e-02 1.3448899984359741e-01 + + + <_> + + 0 -1 2148 3.3718731254339218e-02 + + + -1.5220030210912228e-02 2.9914170503616333e-01 + + + <_> + + 0 -1 2149 -2.8022660990245640e-04 + + + 6.3599728047847748e-02 -1.5619190037250519e-01 + + + <_> + + 0 -1 2150 -3.9523928426206112e-03 + + + -9.7961323335766792e-03 1.0571649670600891e-01 + + + <_> + + 0 -1 2151 2.1397129166871309e-03 + + + 8.9953586459159851e-02 -1.4483779668807983e-01 + + + <_> + + 0 -1 2152 -6.7521296441555023e-02 + + + 2.0932430028915405e-01 -5.3923811763525009e-02 + + + <_> + + 0 -1 2153 1.0378950275480747e-02 + + + -6.4177162945270538e-02 2.7814629673957825e-01 + + + <_> + + 0 -1 2154 6.2903137877583504e-03 + + + -4.9253720790147781e-02 8.2168422639369965e-02 + + + <_> + + 0 -1 2155 9.3974275514483452e-03 + + + 8.4537737071514130e-02 -2.2885300219058990e-01 + + + <_> + + 0 -1 2156 1.0120930150151253e-02 + + + 3.3337119966745377e-02 -8.1664256751537323e-02 + + + <_> + + 0 -1 2157 3.1531939748674631e-03 + + + -1.0220990329980850e-01 1.1837360262870789e-01 + + + <_> + + 0 -1 2158 7.5137287378311157e-02 + + + 2.7504051104187965e-03 -1.0000959634780884e+00 + + + <_> + + 0 -1 2159 -2.3692219983786345e-03 + + + 9.9092483520507812e-02 -1.1425189673900604e-01 + + + <_> + + 0 -1 2160 -2.4510379880666733e-02 + + + 2.8708320856094360e-01 -1.6148800030350685e-02 + + + <_> + + 0 -1 2161 -1.9670750480145216e-03 + + + -1.1531370133161545e-01 8.6816556751728058e-02 + + + <_> + + 0 -1 2162 3.0845379456877708e-02 + + + -2.4090610444545746e-02 1.9607549905776978e-01 + + + <_> + + 0 -1 2163 2.3816309869289398e-02 + + + 3.2824039459228516e-02 -3.5710439085960388e-01 + + + <_> + + 0 -1 2164 -4.0199130773544312e-02 + + + -5.2850788831710815e-01 6.0749719850718975e-03 + + + <_> + + 0 -1 2165 -6.8876100704073906e-03 + + + 2.2058850526809692e-01 -5.9151489287614822e-02 + + + <_> + + 0 -1 2166 -2.5466730585321784e-04 + + + 7.1897879242897034e-02 -8.4962032735347748e-02 + + + <_> + + 0 -1 2167 9.8468195647001266e-03 + + + 4.1366759687662125e-02 -2.3984520137310028e-01 + + + <_> + + 0 -1 2168 2.7934400364756584e-02 + + + -2.3647159337997437e-02 2.4738009274005890e-01 + + + <_> + + 0 -1 2169 -2.2960390895605087e-02 + + + -4.5187929272651672e-01 2.2305779159069061e-02 + + + <_> + + 0 -1 2170 3.2323438790626824e-04 + + + -8.7536007165908813e-02 7.8490957617759705e-02 + + + <_> + + 0 -1 2171 3.1954899430274963e-02 + + + -2.6202389970421791e-02 3.9204901456832886e-01 + + + <_> + + 0 -1 2172 1.9027979578822851e-03 + + + 6.2762781977653503e-02 -1.6107350587844849e-01 + + + <_> + + 0 -1 2173 -3.2691629603505135e-03 + + + 1.0168000310659409e-01 -1.0432480275630951e-01 + + + <_> + + 0 -1 2174 1.0040200315415859e-02 + + + -2.8046580031514168e-02 1.2117899954319000e-01 + + + <_> + + 0 -1 2175 -3.4158680588006973e-02 + + + -2.8974449634552002e-01 3.5282660275697708e-02 + + + <_> + + 0 -1 2176 1.7615250544622540e-03 + + + -5.5583070963621140e-02 7.4158452451229095e-02 + + + <_> + + 0 -1 2177 -2.1134650334715843e-02 + + + 2.5130590796470642e-01 -4.0354639291763306e-02 + + + <_> + + 0 -1 2178 2.9759369790554047e-02 + + + 3.8029540330171585e-02 -1.4226369559764862e-01 + + + <_> + + 0 -1 2179 1.4866080135107040e-02 + + + -3.9721690118312836e-02 2.7522540092468262e-01 + + + <_> + + 0 -1 2180 -3.5829428583383560e-02 + + + -3.3451971411705017e-01 9.6839247271418571e-03 + + + <_> + + 0 -1 2181 -3.2887340057641268e-03 + + + -1.4258219301700592e-01 6.8576209247112274e-02 + + + <_> + + 0 -1 2182 4.2714878916740417e-02 + + + -1.4240439981222153e-02 3.8765299320220947e-01 + + + <_> + + 0 -1 2183 1.2328879674896598e-03 + + + 7.8623853623867035e-02 -1.1869420111179352e-01 + + + <_> + + 0 -1 2184 -1.0447620414197445e-02 + + + -1.4882990717887878e-01 3.1571168452501297e-02 + + + <_> + + 0 -1 2185 1.2656359933316708e-02 + + + -4.6572461724281311e-02 2.6212608814239502e-01 + + + <_> + + 0 -1 2186 4.9849718809127808e-02 + + + 1.7015339806675911e-02 -1.4268730580806732e-01 + + + <_> + + 0 -1 2187 -1.8607240170240402e-02 + + + 2.3338650166988373e-01 -4.7094941139221191e-02 + + + <_> + + 0 -1 2188 -5.4397370666265488e-02 + + + -4.0511301159858704e-01 8.1606470048427582e-03 + + + <_> + + 0 -1 2189 2.9153900686651468e-03 + + + -8.9313946664333344e-02 1.3335379958152771e-01 + + + <_> + + 0 -1 2190 -5.9154080227017403e-03 + + + -2.0414529740810394e-01 4.8475701361894608e-02 + + + <_> + + 0 -1 2191 -1.9841329194605350e-03 + + + 1.3428109884262085e-01 -7.5892791152000427e-02 + + + <_> + + 0 -1 2192 -4.4047520495951176e-03 + + + 4.1852138936519623e-02 -1.0119090229272842e-01 + + + <_> + + 0 -1 2193 1.7982879653573036e-02 + + + 4.3978679925203323e-02 -2.5054019689559937e-01 + + + <_> + + 0 -1 2194 -7.8059501945972443e-02 + + + -3.3025071024894714e-01 6.3089421018958092e-03 + + + <_> + + 0 -1 2195 7.2548650205135345e-03 + + + -1.0872170329093933e-01 9.9411018192768097e-02 + + + <_> + + 0 -1 2196 -2.7871869970113039e-03 + + + 1.3659299910068512e-01 -8.4799639880657196e-02 + + + <_> + + 0 -1 2197 -9.3798413872718811e-03 + + + -1.1872450262308121e-01 7.9108059406280518e-02 + + + <_> + + 0 -1 2198 -5.4926410317420959e-02 + + + 1.4382070302963257e-01 -3.0072269961237907e-02 + + + <_> + + 0 -1 2199 -4.4219079427421093e-03 + + + 1.0666429996490479e-01 -1.0838100314140320e-01 + + + <_> + + 0 -1 2200 1.0763059835880995e-03 + + + 2.7380989864468575e-02 -5.5446051061153412e-02 + + + <_> + + 0 -1 2201 -7.2514012455940247e-02 + + + -1.0893449932336807e-01 1.0097540169954300e-01 + + + <_> + + 0 -1 2202 -1.6472190618515015e-01 + + + 3.0365368723869324e-01 -4.3666210025548935e-02 + + + <_> + + 0 -1 2203 7.9837806522846222e-02 + + + -1.0828680358827114e-02 8.9977437257766724e-01 + + + <_> + + 0 -1 2204 -5.2413612138479948e-04 + + + 8.5230633616447449e-02 -1.2053979933261871e-01 + + + <_> + + 0 -1 2205 -2.1632270887494087e-02 + + + -2.1092039346694946e-01 6.5582543611526489e-02 + + + <_> + + 0 -1 2206 1.2691530585289001e-01 + + + -4.5935749076306820e-03 4.5089641213417053e-01 + + + <_> + + 0 -1 2207 9.5472350716590881e-02 + + + -2.0798899233341217e-02 5.2474659681320190e-01 + + + <_> + + 0 -1 2208 -8.2936078310012817e-02 + + + 8.4976738691329956e-01 -5.0510508008301258e-03 + + + <_> + + 0 -1 2209 7.7482969500124454e-03 + + + -5.5318288505077362e-02 1.7145830392837524e-01 + + + <_> + + 0 -1 2210 -2.1768439561128616e-02 + + + -1.5947930514812469e-01 6.0873799026012421e-02 + + + <_> + + 0 -1 2211 -1.1072609777329490e-04 + + + 7.8877292573451996e-02 -1.3177630305290222e-01 + + + <_> + + 0 -1 2212 3.1122909858822823e-03 + + + -4.3046839535236359e-02 6.2392581254243851e-02 + + + <_> + + 0 -1 2213 -2.8692940250039101e-03 + + + 1.3746979832649231e-01 -8.0494217574596405e-02 + + + <_> + + 0 -1 2214 1.0575760155916214e-01 + + + 1.0569440200924873e-03 -9.9993818998336792e-01 + + + <_> + + 0 -1 2215 4.6192679554224014e-02 + + + 1.7228020355105400e-02 -5.2604919672012329e-01 + + + <_> + + 0 -1 2216 -2.5476190447807312e-01 + + + -6.2927299737930298e-01 1.3698619790375233e-02 + + + <_> + + 0 -1 2217 -2.7374029159545898e-03 + + + 1.2747539579868317e-01 -6.9591522216796875e-02 + + + <_> + + 0 -1 2218 2.1854760125279427e-03 + + + 4.1854761540889740e-02 -2.6481458544731140e-01 + + + <_> + + 0 -1 2219 -2.4050710722804070e-02 + + + -2.6191109418869019e-01 3.4489940851926804e-02 + + + <_> + + 0 -1 2220 1.0211429744958878e-01 + + + -1.5302860178053379e-02 3.9992758631706238e-01 + + + <_> + + 0 -1 2221 1.0281659662723541e-01 + + + -2.9020670801401138e-02 3.6887159943580627e-01 + + + <_> + + 0 -1 2222 3.9206489920616150e-02 + + + 8.9045017957687378e-03 -4.3242999911308289e-01 + + + <_> + + 0 -1 2223 -3.7830859422683716e-02 + + + -6.2731212377548218e-01 1.4882829971611500e-02 + + + <_> + + 0 -1 2224 1.2507890351116657e-02 + + + -1.7865059897303581e-02 1.4156140387058258e-01 + + + <_> + + 0 -1 2225 -1.5477590262889862e-02 + + + 3.1676650047302246e-01 -3.3510830253362656e-02 + + + <_> + + 0 -1 2226 -4.5885699801146984e-03 + + + -1.5222150087356567e-01 7.3211863636970520e-02 + + + <_> + + 0 -1 2227 -2.0505970343947411e-02 + + + 1.1725380271673203e-01 -9.7457922995090485e-02 + + + <_> + + 0 -1 2228 -1.3098320364952087e-01 + + + 5.4338067770004272e-01 -5.8803129941225052e-03 + + + <_> + + 0 -1 2229 4.7888278961181641e-02 + + + -2.7120810002088547e-02 3.5723638534545898e-01 + + + <_> + + 0 -1 2230 2.5441530346870422e-01 + + + 2.5680949911475182e-03 -9.9988257884979248e-01 + + + <_> + + 0 -1 2231 2.0652529783546925e-03 + + + -9.4255000352859497e-02 1.0068359971046448e-01 + + + <_> + + 0 -1 2232 3.0141780152916908e-02 + + + -1.5984520316123962e-02 2.4209509789943695e-01 + + + <_> + + 0 -1 2233 1.2305500358343124e-01 + + + 4.3902460485696793e-02 -2.9046860337257385e-01 + + + <_> + + 0 -1 2234 1.1436889879405499e-02 + + + 3.1826701015233994e-02 -1.0569609701633453e-01 + + + <_> + + 0 -1 2235 1.4229659922420979e-02 + + + -6.4518727362155914e-02 1.6178989410400391e-01 + + + <_> + + 0 -1 2236 -1.9808039069175720e-02 + + + 2.0909899473190308e-01 -2.7245460078120232e-02 + + + <_> + + 0 -1 2237 -3.2634709030389786e-02 + + + -4.6265149116516113e-01 2.3877989500761032e-02 + + + <_> + + 0 -1 2238 8.1568211317062378e-02 + + + -1.0983820073306561e-02 7.4517530202865601e-01 + + + <_> + + 0 -1 2239 1.7331159906461835e-03 + + + 6.2832579016685486e-02 -1.5800160169601440e-01 + + + <_> + + 0 -1 2240 4.1524558328092098e-03 + + + 2.8520949184894562e-02 -8.3923816680908203e-02 + + + <_> + + 0 -1 2241 2.0917340589221567e-04 + + + -1.6536650061607361e-01 8.3170376718044281e-02 + + + <_> + + 0 -1 2242 -6.9550168700516224e-04 + + + 5.7298898696899414e-02 -9.8668128252029419e-02 + + + <_> + + 0 -1 2243 1.0114730149507523e-01 + + + -2.7031859382987022e-02 5.0937288999557495e-01 + + + <_> + + 0 -1 2244 2.0371530205011368e-02 + + + -1.5991339460015297e-02 2.1110190451145172e-01 + + + <_> + + 0 -1 2245 1.9490359723567963e-01 + + + 1.1169149540364742e-02 -8.0626577138900757e-01 + + + <_> + + 0 -1 2246 -1.5187750104814768e-03 + + + 8.8670432567596436e-02 -6.5779693424701691e-02 + + + <_> + + 0 -1 2247 -2.2300280761555769e-05 + + + 7.0237100124359131e-02 -1.3656799495220184e-01 + + + <_> + + 0 -1 2248 7.0241810753941536e-03 + + + 4.5264270156621933e-02 -1.2246630340814590e-01 + + + <_> + + 0 -1 2249 -5.8513730764389038e-03 + + + 1.4548699557781219e-01 -7.7512867748737335e-02 + + + <_> + + 0 -1 2250 -1.2228869833052158e-02 + + + -1.5762320160865784e-01 3.3091600984334946e-02 + + + <_> + + 0 -1 2251 -2.7475339174270630e-01 + + + 4.1415899991989136e-01 -2.3306179791688919e-02 + + + <_> + + 0 -1 2252 -8.3073312416672707e-03 + + + -6.6158972680568695e-02 4.5423369854688644e-02 + + + <_> + + 0 -1 2253 1.4967099763453007e-02 + + + 3.9580021053552628e-02 -2.4474979937076569e-01 + + + <_> + + 0 -1 2254 3.5121920518577099e-03 + + + -3.2608591020107269e-02 7.2080552577972412e-02 + + + <_> + + 0 -1 2255 6.0676191933453083e-03 + + + -6.6284246742725372e-02 1.6455779969692230e-01 + + + <_> + + 0 -1 2256 -6.0948841273784637e-03 + + + -1.6784119606018066e-01 6.8097747862339020e-02 + + + <_> + + 0 -1 2257 -4.4710501097142696e-03 + + + 1.4348860085010529e-01 -7.5286053121089935e-02 + + + <_> + + 0 -1 2258 2.7629999443888664e-02 + + + -6.0715568251907825e-03 4.6235299110412598e-01 + + + <_> + + 0 -1 2259 -4.1778348386287689e-03 + + + -9.4480186700820923e-02 1.0268689692020416e-01 + + + <_> + + 0 -1 2260 -1.4997010293882340e-04 + + + 4.5903969556093216e-02 -1.2689989805221558e-01 + + + <_> + + 0 -1 2261 9.3421656638383865e-03 + + + -4.7851350158452988e-02 2.3776920139789581e-01 + + + <_> + + 0 -1 2262 -9.0454798191785812e-03 + + + -1.4881759881973267e-01 2.5717660784721375e-02 + + + <_> + + 0 -1 2263 -1.0563050163909793e-03 + + + -1.2465219944715500e-01 8.2118943333625793e-02 + + + <_> + + 0 -1 2264 -1.5602169558405876e-02 + + + 3.0471551418304443e-01 -2.4503290653228760e-02 + + + <_> + + 0 -1 2265 -8.9588612318038940e-03 + + + -2.3624059557914734e-01 4.6290140599012375e-02 + + + <_> + + 0 -1 2266 -7.6452922075986862e-03 + + + 1.1393140256404877e-01 -2.6573060080409050e-02 + + + <_> + + 0 -1 2267 -1.9294900819659233e-02 + + + 2.8820019960403442e-01 -3.5906881093978882e-02 + + + <_> + + 0 -1 2268 8.6250286549329758e-03 + + + 6.1006020754575729e-02 -1.6832630336284637e-01 + + + <_> + + 0 -1 2269 2.5883490219712257e-02 + + + -4.0142849087715149e-02 2.3263120651245117e-01 + + + <_> + + 0 -1 2270 -7.4946112930774689e-02 + + + 7.1168798208236694e-01 -6.0237408615648746e-03 + + + <_> + + 0 -1 2271 -2.6808120310306549e-04 + + + 7.7717900276184082e-02 -1.5358750522136688e-01 + + + <_> + + 0 -1 2272 6.1041440814733505e-02 + + + -3.4070160239934921e-02 2.5833290815353394e-01 + + + <_> + + 0 -1 2273 -4.7920648939907551e-03 + + + -1.5077829360961914e-01 8.4577240049839020e-02 + + + <_> + + 0 -1 2274 -1.2610630691051483e-01 + + + -4.8404538631439209e-01 8.6965439841151237e-03 + + + <_> + + 0 -1 2275 -2.2879270836710930e-02 + + + 6.7734187841415405e-01 -1.4856100082397461e-02 + + + <_> + + 0 -1 2276 -6.2760512810200453e-04 + + + 5.0910349935293198e-02 -1.4076440036296844e-01 + + + <_> + + 0 -1 2277 -1.0543179698288441e-02 + + + -9.0707249939441681e-02 1.1281900107860565e-01 + + + <_> + + 0 -1 2278 -2.4953829124569893e-03 + + + 8.9523762464523315e-02 -7.5541287660598755e-02 + + + <_> + + 0 -1 2279 6.0986150056123734e-02 + + + -3.2006978988647461e-02 3.3000910282135010e-01 + + + + + <_> + 143 + -3.0555000305175781e+01 + + <_> + + 0 -1 2280 -4.1241809725761414e-02 + + + 2.4841840565204620e-01 -6.9879129528999329e-02 + + + <_> + + 0 -1 2281 -7.4663497507572174e-02 + + + -7.5433689355850220e-01 4.0493709966540337e-03 + + + <_> + + 0 -1 2282 -2.3803679272532463e-02 + + + 2.4313099682331085e-01 -4.5283928513526917e-02 + + + <_> + + 0 -1 2283 3.2028619199991226e-02 + + + -1.2230539694428444e-02 3.9811220765113831e-01 + + + <_> + + 0 -1 2284 3.8454410969279706e-04 + + + 6.9244839251041412e-02 -1.7288799583911896e-01 + + + <_> + + 0 -1 2285 -2.0599530544131994e-03 + + + 4.5083250850439072e-02 -6.3824482262134552e-02 + + + <_> + + 0 -1 2286 5.9174500405788422e-02 + + + 1.3756089843809605e-02 5.8063977956771851e-01 + + + <_> + + 0 -1 2287 -8.1204501911997795e-03 + + + -7.9060196876525879e-02 3.2097879797220230e-02 + + + <_> + + 0 -1 2288 -5.4362448863685131e-03 + + + 8.0285012722015381e-02 -1.3880789279937744e-01 + + + <_> + + 0 -1 2289 4.0768779814243317e-02 + + + 3.5265129059553146e-02 -1.6821040213108063e-01 + + + <_> + + 0 -1 2290 -1.0705769993364811e-02 + + + -1.3227799534797668e-01 9.7147703170776367e-02 + + + <_> + + 0 -1 2291 -2.1374409552663565e-03 + + + -1.1135129630565643e-01 1.0501199960708618e-01 + + + <_> + + 0 -1 2292 -6.0069030150771141e-03 + + + 7.9701423645019531e-02 -1.4503550529479980e-01 + + + <_> + + 0 -1 2293 6.8584359250962734e-03 + + + -2.8629170730710030e-02 1.5494349598884583e-01 + + + <_> + + 0 -1 2294 8.4308702498674393e-03 + + + -6.8725876510143280e-02 1.3571439683437347e-01 + + + <_> + + 0 -1 2295 -3.1918209046125412e-02 + + + -9.0021647512912750e-02 7.0172756910324097e-02 + + + <_> + + 0 -1 2296 1.4346960186958313e-01 + + + 3.7936199456453323e-02 -3.3849731087684631e-01 + + + <_> + + 0 -1 2297 -5.3501531481742859e-02 + + + -1. -1.3069049455225468e-03 + + + <_> + + 0 -1 2298 -4.3198501225560904e-04 + + + 6.3140459358692169e-02 -1.4891080558300018e-01 + + + <_> + + 0 -1 2299 -3.6825511604547501e-02 + + + 1.6418960690498352e-01 -3.6547198891639709e-02 + + + <_> + + 0 -1 2300 -9.3230612576007843e-02 + + + -8.1855481863021851e-01 1.0488729923963547e-02 + + + <_> + + 0 -1 2301 -7.5886500999331474e-03 + + + 9.6189923584461212e-02 -3.2392729073762894e-02 + + + <_> + + 0 -1 2302 1.9316580146551132e-03 + + + -9.7133457660675049e-02 9.6836537122726440e-02 + + + <_> + + 0 -1 2303 -1.7610849440097809e-01 + + + -1. 3.9064860902726650e-04 + + + <_> + + 0 -1 2304 -4.5753358863294125e-03 + + + -1.4245940744876862e-01 7.2629533708095551e-02 + + + <_> + + 0 -1 2305 -7.1555696427822113e-02 + + + 7.0124769210815430e-01 -8.1192785874009132e-03 + + + <_> + + 0 -1 2306 -5.1939189434051514e-03 + + + -1.7593400180339813e-01 6.6920258104801178e-02 + + + <_> + + 0 -1 2307 9.7410175949335098e-03 + + + -4.0632858872413635e-02 1.5366269648075104e-01 + + + <_> + + 0 -1 2308 -1.9197730347514153e-02 + + + 8.8404722511768341e-02 -1.1119589954614639e-01 + + + <_> + + 0 -1 2309 7.7713979408144951e-03 + + + -5.1531080156564713e-02 2.3341870307922363e-01 + + + <_> + + 0 -1 2310 4.6741779893636703e-02 + + + 5.8658950030803680e-02 -2.1825340390205383e-01 + + + <_> + + 0 -1 2311 -6.7051820456981659e-02 + + + -7.6968950033187866e-01 2.2733330260962248e-03 + + + <_> + + 0 -1 2312 1.0403609834611416e-02 + + + -5.7208269834518433e-02 1.9874769449234009e-01 + + + <_> + + 0 -1 2313 6.8136617541313171e-02 + + + 1.0924750007688999e-02 -2.3514769971370697e-01 + + + <_> + + 0 -1 2314 5.5462731979787350e-03 + + + 7.6430208981037140e-02 -1.5048150718212128e-01 + + + <_> + + 0 -1 2315 3.5827890038490295e-02 + + + 5.2330200560390949e-03 -9.0509557723999023e-01 + + + <_> + + 0 -1 2316 1.0099080391228199e-02 + + + -4.9438349902629852e-02 1.9236649572849274e-01 + + + <_> + + 0 -1 2317 -7.3000352131202817e-04 + + + 8.0038689076900482e-02 -5.9875860810279846e-02 + + + <_> + + 0 -1 2318 -6.2627308070659637e-02 + + + -6.8771952390670776e-01 1.4409339986741543e-02 + + + <_> + + 0 -1 2319 4.1463607922196388e-03 + + + 6.2068879604339600e-02 -1.4138600230216980e-01 + + + <_> + + 0 -1 2320 -1.4136059582233429e-01 + + + 5.9439867734909058e-01 -1.6910530626773834e-02 + + + <_> + + 0 -1 2321 7.0147067308425903e-02 + + + 3.5781029146164656e-03 -8.4541380405426025e-01 + + + <_> + + 0 -1 2322 1.8181180348619819e-03 + + + -5.9031128883361816e-02 1.7709979414939880e-01 + + + <_> + + 0 -1 2323 6.3149541616439819e-02 + + + -7.9691512510180473e-03 2.4575470387935638e-01 + + + <_> + + 0 -1 2324 1.7065559513866901e-03 + + + -1.3776679337024689e-01 7.2286598384380341e-02 + + + <_> + + 0 -1 2325 -4.1844159364700317e-02 + + + -1.0204549878835678e-01 1.9412880763411522e-02 + + + <_> + + 0 -1 2326 6.1876028776168823e-02 + + + 1.7572570592164993e-02 -5.9611201286315918e-01 + + + <_> + + 0 -1 2327 8.6206607520580292e-02 + + + -8.3246696740388870e-03 5.9274739027023315e-01 + + + <_> + + 0 -1 2328 1.5561250038444996e-02 + + + 5.5908791720867157e-02 -2.0174680650234222e-01 + + + <_> + + 0 -1 2329 1.9683360587805510e-03 + + + 8.4109783172607422e-02 -9.5114283263683319e-02 + + + <_> + + 0 -1 2330 -3.2295130658894777e-03 + + + 1.9859789311885834e-01 -6.0371041297912598e-02 + + + <_> + + 0 -1 2331 4.3861459940671921e-02 + + + -7.5495638884603977e-03 2.7785310149192810e-01 + + + <_> + + 0 -1 2332 -7.1588042192161083e-04 + + + 1.0671679675579071e-01 -1.1605340242385864e-01 + + + <_> + + 0 -1 2333 -1.1585080064833164e-02 + + + 1.3923209905624390e-01 -7.2681717574596405e-02 + + + <_> + + 0 -1 2334 -2.4132030084729195e-02 + + + -3.4343299269676208e-01 2.8587639331817627e-02 + + + <_> + + 0 -1 2335 -5.9670167975127697e-03 + + + 6.2854968011379242e-02 -6.3237912952899933e-02 + + + <_> + + 0 -1 2336 -5.7298261672258377e-02 + + + 3.3512100577354431e-01 -3.4425679594278336e-02 + + + <_> + + 0 -1 2337 -1.4440530538558960e-01 + + + -1. -2.0486500579863787e-04 + + + <_> + + 0 -1 2338 -1.6152009367942810e-02 + + + -1.8017260730266571e-01 6.0698080807924271e-02 + + + <_> + + 0 -1 2339 3.1132341246120632e-04 + + + -8.7393969297409058e-02 1.0814479738473892e-01 + + + <_> + + 0 -1 2340 -3.4905138891190290e-03 + + + 1.3089099526405334e-01 -8.2502506673336029e-02 + + + <_> + + 0 -1 2341 -5.1078200340270996e-02 + + + -6.6744989156723022e-01 9.7670806571841240e-03 + + + <_> + + 0 -1 2342 2.3027899861335754e-01 + + + 8.9318687096238136e-03 -8.8892549276351929e-01 + + + <_> + + 0 -1 2343 3.3260289579629898e-02 + + + -3.8846820592880249e-02 1.1871550232172012e-01 + + + <_> + + 0 -1 2344 3.6332090385258198e-03 + + + -8.1865288317203522e-02 1.2006369978189468e-01 + + + <_> + + 0 -1 2345 -1.3659459364134818e-04 + + + 2.9094040393829346e-02 -8.6412712931632996e-02 + + + <_> + + 0 -1 2346 4.2663831263780594e-03 + + + 5.9642590582370758e-02 -1.6777870059013367e-01 + + + <_> + + 0 -1 2347 -3.7726368755102158e-02 + + + 2.5201418995857239e-01 -1.1480459943413734e-02 + + + <_> + + 0 -1 2348 -3.7723951041698456e-02 + + + 3.6150801181793213e-01 -2.5164980441331863e-02 + + + <_> + + 0 -1 2349 -3.5217531025409698e-02 + + + -2.0768259465694427e-01 1.5659499913454056e-02 + + + <_> + + 0 -1 2350 -2.6250150054693222e-02 + + + 6.4363038539886475e-01 -1.3971080072224140e-02 + + + <_> + + 0 -1 2351 7.1132831275463104e-02 + + + 5.0701410509645939e-03 -8.1053668260574341e-01 + + + <_> + + 0 -1 2352 2.8358760755509138e-03 + + + 8.0034732818603516e-02 -1.1766050010919571e-01 + + + <_> + + 0 -1 2353 3.4837881103157997e-03 + + + 6.9709457457065582e-02 -1.2136720120906830e-01 + + + <_> + + 0 -1 2354 2.9538539820350707e-05 + + + -1.7090520262718201e-01 7.0092067122459412e-02 + + + <_> + + 0 -1 2355 2.6345230638980865e-02 + + + -1.1046449653804302e-02 3.5467839241027832e-01 + + + <_> + + 0 -1 2356 3.3180779428221285e-04 + + + -8.9763849973678589e-02 1.0402739793062210e-01 + + + <_> + + 0 -1 2357 9.9607985466718674e-03 + + + -1.0574670135974884e-01 8.7481163442134857e-02 + + + <_> + + 0 -1 2358 6.9068476557731628e-02 + + + -2.3135760799050331e-02 3.7765979766845703e-01 + + + <_> + + 0 -1 2359 -3.3804871141910553e-02 + + + -8.0052927136421204e-02 6.6171988844871521e-02 + + + <_> + + 0 -1 2360 -2.1103899925947189e-03 + + + 7.2913236916065216e-02 -1.6986669600009918e-01 + + + <_> + + 0 -1 2361 7.1675583720207214e-02 + + + -2.2668020799756050e-02 4.3757459521293640e-01 + + + <_> + + 0 -1 2362 -1.7637129873037338e-02 + + + 1.4710550010204315e-01 -7.7648147940635681e-02 + + + <_> + + 0 -1 2363 2.1559430751949549e-03 + + + -4.4561479240655899e-02 8.0616250634193420e-02 + + + <_> + + 0 -1 2364 -2.9923371039330959e-03 + + + 1.6013230383396149e-01 -7.2628170251846313e-02 + + + <_> + + 0 -1 2365 -2.8351619839668274e-02 + + + -2.4835529923439026e-01 7.8493626788258553e-03 + + + <_> + + 0 -1 2366 -5.3842412307858467e-03 + + + -1.3290390372276306e-01 7.8615352511405945e-02 + + + <_> + + 0 -1 2367 1.6513720154762268e-02 + + + -3.0867580324411392e-02 2.2910499572753906e-01 + + + <_> + + 0 -1 2368 -2.3480059579014778e-02 + + + -3.4656900167465210e-01 2.8477910906076431e-02 + + + <_> + + 0 -1 2369 6.4804457128047943e-02 + + + 3.2681180164217949e-03 -8.1848317384719849e-01 + + + <_> + + 0 -1 2370 2.9363438952714205e-03 + + + 6.8371996283531189e-02 -1.6038259863853455e-01 + + + <_> + + 0 -1 2371 1.9352639093995094e-02 + + + 1.2330809608101845e-02 -1.7751510441303253e-01 + + + <_> + + 0 -1 2372 -1.4157049590721726e-03 + + + 1.6248740255832672e-01 -8.4821969270706177e-02 + + + <_> + + 0 -1 2373 -3.2165680080652237e-02 + + + 2.5495579838752747e-01 -1.5387820079922676e-02 + + + <_> + + 0 -1 2374 9.9883928894996643e-02 + + + 1.1630980297923088e-02 -8.6939221620559692e-01 + + + <_> + + 0 -1 2375 -8.5509859491139650e-04 + + + 3.7509139627218246e-02 -4.1315130889415741e-02 + + + <_> + + 0 -1 2376 1.9948679953813553e-02 + + + -3.3211439847946167e-02 2.6546698808670044e-01 + + + <_> + + 0 -1 2377 -1.6821360215544701e-02 + + + -1.9504530727863312e-01 4.5578271150588989e-02 + + + <_> + + 0 -1 2378 -8.1685081124305725e-02 + + + 8.0823719501495361e-01 -1.0028379969298840e-02 + + + <_> + + 0 -1 2379 -3.9467110764235258e-04 + + + 3.7868868559598923e-02 -7.4321702122688293e-02 + + + <_> + + 0 -1 2380 -4.1939578950405121e-02 + + + -7.5310271978378296e-01 1.2494780123233795e-02 + + + <_> + + 0 -1 2381 1.2319780141115189e-01 + + + 1.5212129801511765e-03 -8.7456828355789185e-01 + + + <_> + + 0 -1 2382 4.3162349611520767e-03 + + + 9.5917366445064545e-02 -9.8286882042884827e-02 + + + <_> + + 0 -1 2383 1.7064419807866216e-03 + + + -6.7283846437931061e-02 5.8372668921947479e-02 + + + <_> + + 0 -1 2384 6.8853497505187988e-02 + + + 3.9853271096944809e-02 -2.7014040946960449e-01 + + + <_> + + 0 -1 2385 1.5133110573515296e-03 + + + 3.6803830415010452e-02 -7.8638777136802673e-02 + + + <_> + + 0 -1 2386 1.6671700403094292e-02 + + + -5.2208479493856430e-02 2.5476139783859253e-01 + + + <_> + + 0 -1 2387 -2.4927379563450813e-03 + + + -6.8352922797203064e-02 3.9182528853416443e-02 + + + <_> + + 0 -1 2388 1.7946650041267276e-03 + + + 7.5641617178916931e-02 -1.8443019688129425e-01 + + + <_> + + 0 -1 2389 6.5764516592025757e-02 + + + -2.7957379817962646e-02 1.3770729303359985e-01 + + + <_> + + 0 -1 2390 -3.2415628433227539e-02 + + + 2.4957719445228577e-01 -3.8401741534471512e-02 + + + <_> + + 0 -1 2391 1.5985220670700073e-01 + + + 2.3139530792832375e-02 -4.5876979827880859e-01 + + + <_> + + 0 -1 2392 3.3003050833940506e-02 + + + -2.8549650683999062e-02 3.6482268571853638e-01 + + + <_> + + 0 -1 2393 8.3292415365576744e-03 + + + 2.3422110825777054e-02 -1.2992739677429199e-01 + + + <_> + + 0 -1 2394 -1.4707380533218384e-01 + + + -1. 1.0342770256102085e-02 + + + <_> + + 0 -1 2395 1.0625930130481720e-01 + + + 2.8901589103043079e-03 -6.2105101346969604e-01 + + + <_> + + 0 -1 2396 4.7905001789331436e-02 + + + -2.5437310338020325e-02 3.8595038652420044e-01 + + + <_> + + 0 -1 2397 4.3562948703765869e-02 + + + 1.2963670305907726e-02 -3.1574508547782898e-01 + + + <_> + + 0 -1 2398 -6.6401511430740356e-02 + + + 3.7184339761734009e-01 -2.4248229339718819e-02 + + + <_> + + 0 -1 2399 1.0357169667258859e-03 + + + -3.3857159316539764e-02 7.2818137705326080e-02 + + + <_> + + 0 -1 2400 -1.0010260343551636e-01 + + + -2.6162430644035339e-01 4.0561348199844360e-02 + + + <_> + + 0 -1 2401 -1.4029429852962494e-01 + + + 1.6186380386352539e-01 -3.7463869899511337e-02 + + + <_> + + 0 -1 2402 -3.6629181355237961e-02 + + + -3.7988689541816711e-01 2.2493759170174599e-02 + + + <_> + + 0 -1 2403 1.8527939915657043e-01 + + + -3.4648380242288113e-03 9.9972921609878540e-01 + + + <_> + + 0 -1 2404 1.3452930375933647e-02 + + + 6.6191017627716064e-02 -1.5208050608634949e-01 + + + <_> + + 0 -1 2405 8.4628060460090637e-02 + + + -3.2134260982275009e-02 2.2877800464630127e-01 + + + <_> + + 0 -1 2406 -8.7568372488021851e-02 + + + 4.3229681253433228e-01 -2.4735029786825180e-02 + + + <_> + + 0 -1 2407 2.6502339169383049e-02 + + + 2.3526629433035851e-02 -2.9849499464035034e-01 + + + <_> + + 0 -1 2408 -1.8273059278726578e-02 + + + 5.0878030061721802e-01 -1.9735949113965034e-02 + + + <_> + + 0 -1 2409 -1.1995369568467140e-03 + + + 7.4867762625217438e-02 -7.3861390352249146e-02 + + + <_> + + 0 -1 2410 3.1381230801343918e-02 + + + -2.6280479505658150e-02 3.6583951115608215e-01 + + + <_> + + 0 -1 2411 2.3178670555353165e-02 + + + 3.7155259400606155e-02 -2.5468569993972778e-01 + + + <_> + + 0 -1 2412 -1.3644699938595295e-02 + + + 2.0717699825763702e-01 -4.2792771011590958e-02 + + + <_> + + 0 -1 2413 7.8315278515219688e-03 + + + 3.6028519272804260e-02 -8.0337040126323700e-02 + + + <_> + + 0 -1 2414 -1.0035780258476734e-02 + + + -2.2253769636154175e-01 4.2950030416250229e-02 + + + <_> + + 0 -1 2415 -5.1132131367921829e-02 + + + 3.0586650967597961e-01 -2.7054589241743088e-02 + + + <_> + + 0 -1 2416 -6.9544702768325806e-02 + + + 3.4688460826873779e-01 -3.1736221164464951e-02 + + + <_> + + 0 -1 2417 -2.4079360067844391e-02 + + + 1.3291560113430023e-01 -3.0277779325842857e-02 + + + <_> + + 0 -1 2418 -6.6630518995225430e-03 + + + -1.8473480641841888e-01 7.8750252723693848e-02 + + + <_> + + 0 -1 2419 4.3147690594196320e-02 + + + -9.1566536575555801e-03 2.9485818743705750e-01 + + + <_> + + 0 -1 2420 -1.3808339834213257e-02 + + + -2.8479158878326416e-01 3.2622188329696655e-02 + + + <_> + + 0 -1 2421 1.6351899504661560e-01 + + + -3.7377059925347567e-03 5.6042182445526123e-01 + + + <_> + + 0 -1 2422 -2.4086149409413338e-02 + + + 1.5841430425643921e-01 -6.6294513642787933e-02 + + + + + + + <_> + + <_> + 5 5 12 6 -1. + + <_> + 9 5 4 6 3. + + + + <_> + + <_> + 7 13 10 4 -1. + + <_> + 7 15 10 2 2. + + + + <_> + + <_> + 3 14 9 4 -1. + + <_> + 6 14 3 4 3. + + + + <_> + + <_> + 15 6 5 6 -1. + + <_> + 15 6 5 3 2. + + + 1 + + <_> + + <_> + 0 1 22 14 -1. + + <_> + 11 1 11 14 2. + + + + <_> + + <_> + 1 11 20 4 -1. + + <_> + 6 11 10 4 2. + + + + <_> + + <_> + 7 6 6 5 -1. + + <_> + 7 6 3 5 2. + + + 1 + + <_> + + <_> + 5 13 12 4 -1. + + <_> + 11 13 6 2 2. + + <_> + 5 15 6 2 2. + + + + <_> + + <_> + 7 12 8 6 -1. + + <_> + 7 12 4 3 2. + + <_> + 11 15 4 3 2. + + + + <_> + + <_> + 20 0 2 18 -1. + + <_> + 20 9 2 9 2. + + + + <_> + + <_> + 8 6 6 12 -1. + + <_> + 10 6 2 12 3. + + + + <_> + + <_> + 8 5 6 6 -1. + + <_> + 10 5 2 6 3. + + + + <_> + + <_> + 5 15 12 2 -1. + + <_> + 5 16 12 1 2. + + + + <_> + + <_> + 20 0 2 18 -1. + + <_> + 20 9 2 9 2. + + + + <_> + + <_> + 0 0 2 18 -1. + + <_> + 0 9 2 9 2. + + + + <_> + + <_> + 13 7 6 4 -1. + + <_> + 13 7 6 2 2. + + + 1 + + <_> + + <_> + 2 14 7 4 -1. + + <_> + 2 16 7 2 2. + + + + <_> + + <_> + 13 7 7 4 -1. + + <_> + 13 7 7 2 2. + + + 1 + + <_> + + <_> + 4 6 4 12 -1. + + <_> + 4 10 4 4 3. + + + + <_> + + <_> + 8 4 6 10 -1. + + <_> + 11 4 3 5 2. + + <_> + 8 9 3 5 2. + + + + <_> + + <_> + 6 8 6 10 -1. + + <_> + 6 8 3 5 2. + + <_> + 9 13 3 5 2. + + + + <_> + + <_> + 11 12 6 6 -1. + + <_> + 11 15 6 3 2. + + + + <_> + + <_> + 1 15 8 3 -1. + + <_> + 5 15 4 3 2. + + + + <_> + + <_> + 6 9 10 4 -1. + + <_> + 6 11 10 2 2. + + + + <_> + + <_> + 11 5 8 3 -1. + + <_> + 10 6 8 1 3. + + + 1 + + <_> + + <_> + 0 13 22 5 -1. + + <_> + 0 13 11 5 2. + + + + <_> + + <_> + 2 13 14 3 -1. + + <_> + 9 13 7 3 2. + + + + <_> + + <_> + 11 5 2 10 -1. + + <_> + 11 5 1 10 2. + + + 1 + + <_> + + <_> + 11 5 10 2 -1. + + <_> + 11 5 10 1 2. + + + 1 + + <_> + + <_> + 14 0 8 8 -1. + + <_> + 18 0 4 4 2. + + <_> + 14 4 4 4 2. + + + + <_> + + <_> + 5 0 3 10 -1. + + <_> + 5 5 3 5 2. + + + + <_> + + <_> + 16 0 3 12 -1. + + <_> + 16 6 3 6 2. + + + + <_> + + <_> + 3 3 12 4 -1. + + <_> + 3 3 6 2 2. + + <_> + 9 5 6 2 2. + + + + <_> + + <_> + 2 2 20 3 -1. + + <_> + 7 2 10 3 2. + + + + <_> + + <_> + 11 7 3 8 -1. + + <_> + 11 7 3 4 2. + + + 1 + + <_> + + <_> + 4 9 18 3 -1. + + <_> + 4 10 18 1 3. + + + + <_> + + <_> + 3 3 16 14 -1. + + <_> + 3 3 8 7 2. + + <_> + 11 10 8 7 2. + + + + <_> + + <_> + 7 14 8 4 -1. + + <_> + 7 14 4 4 2. + + + + <_> + + <_> + 10 7 4 7 -1. + + <_> + 10 7 2 7 2. + + + 1 + + <_> + + <_> + 11 9 6 5 -1. + + <_> + 11 9 3 5 2. + + + + <_> + + <_> + 0 6 22 4 -1. + + <_> + 11 6 11 4 2. + + + + <_> + + <_> + 14 6 6 12 -1. + + <_> + 17 6 3 6 2. + + <_> + 14 12 3 6 2. + + + + <_> + + <_> + 4 14 6 4 -1. + + <_> + 4 16 6 2 2. + + + + <_> + + <_> + 12 14 6 4 -1. + + <_> + 12 16 6 2 2. + + + + <_> + + <_> + 4 14 6 4 -1. + + <_> + 4 16 6 2 2. + + + + <_> + + <_> + 10 6 6 6 -1. + + <_> + 12 6 2 6 3. + + + + <_> + + <_> + 9 0 11 3 -1. + + <_> + 8 1 11 1 3. + + + 1 + + <_> + + <_> + 7 0 12 4 -1. + + <_> + 13 0 6 2 2. + + <_> + 7 2 6 2 2. + + + + <_> + + <_> + 6 6 6 6 -1. + + <_> + 8 6 2 6 3. + + + + <_> + + <_> + 15 5 3 8 -1. + + <_> + 15 9 3 4 2. + + + + <_> + + <_> + 5 2 12 7 -1. + + <_> + 9 2 4 7 3. + + + + <_> + + <_> + 5 5 12 4 -1. + + <_> + 9 5 4 4 3. + + + + <_> + + <_> + 7 3 4 7 -1. + + <_> + 7 3 2 7 2. + + + 1 + + <_> + + <_> + 2 14 6 4 -1. + + <_> + 5 14 3 4 2. + + + + <_> + + <_> + 11 4 6 6 -1. + + <_> + 13 4 2 6 3. + + + + <_> + + <_> + 5 14 12 4 -1. + + <_> + 5 14 6 2 2. + + <_> + 11 16 6 2 2. + + + + <_> + + <_> + 3 12 16 6 -1. + + <_> + 11 12 8 3 2. + + <_> + 3 15 8 3 2. + + + + <_> + + <_> + 1 11 20 4 -1. + + <_> + 6 11 10 4 2. + + + + <_> + + <_> + 9 0 10 10 -1. + + <_> + 14 0 5 5 2. + + <_> + 9 5 5 5 2. + + + + <_> + + <_> + 8 8 4 6 -1. + + <_> + 8 8 2 6 2. + + + 1 + + <_> + + <_> + 1 7 20 11 -1. + + <_> + 1 7 10 11 2. + + + + <_> + + <_> + 9 0 12 3 -1. + + <_> + 9 0 6 3 2. + + + 1 + + <_> + + <_> + 13 0 6 6 -1. + + <_> + 13 0 3 6 2. + + + + <_> + + <_> + 5 0 12 8 -1. + + <_> + 5 2 12 4 2. + + + + <_> + + <_> + 14 0 8 6 -1. + + <_> + 18 0 4 3 2. + + <_> + 14 3 4 3 2. + + + + <_> + + <_> + 7 6 8 6 -1. + + <_> + 9 6 4 6 2. + + + + <_> + + <_> + 11 3 6 6 -1. + + <_> + 13 3 2 6 3. + + + + <_> + + <_> + 5 3 6 6 -1. + + <_> + 7 3 2 6 3. + + + + <_> + + <_> + 13 0 8 6 -1. + + <_> + 17 0 4 3 2. + + <_> + 13 3 4 3 2. + + + + <_> + + <_> + 0 0 8 6 -1. + + <_> + 0 0 4 3 2. + + <_> + 4 3 4 3 2. + + + + <_> + + <_> + 7 0 10 6 -1. + + <_> + 12 0 5 3 2. + + <_> + 7 3 5 3 2. + + + + <_> + + <_> + 0 15 22 2 -1. + + <_> + 11 15 11 2 2. + + + + <_> + + <_> + 5 14 12 4 -1. + + <_> + 5 15 12 2 2. + + + + <_> + + <_> + 5 13 6 4 -1. + + <_> + 5 15 6 2 2. + + + + <_> + + <_> + 3 9 17 3 -1. + + <_> + 3 10 17 1 3. + + + + <_> + + <_> + 3 8 16 10 -1. + + <_> + 3 8 8 5 2. + + <_> + 11 13 8 5 2. + + + + <_> + + <_> + 9 0 10 6 -1. + + <_> + 14 0 5 3 2. + + <_> + 9 3 5 3 2. + + + + <_> + + <_> + 3 0 12 4 -1. + + <_> + 3 0 6 2 2. + + <_> + 9 2 6 2 2. + + + + <_> + + <_> + 4 10 14 3 -1. + + <_> + 4 10 7 3 2. + + + + <_> + + <_> + 1 14 11 4 -1. + + <_> + 1 16 11 2 2. + + + + <_> + + <_> + 7 0 12 6 -1. + + <_> + 13 0 6 3 2. + + <_> + 7 3 6 3 2. + + + + <_> + + <_> + 3 0 10 6 -1. + + <_> + 3 0 5 3 2. + + <_> + 8 3 5 3 2. + + + + <_> + + <_> + 6 0 10 3 -1. + + <_> + 6 0 5 3 2. + + + 1 + + <_> + + <_> + 14 8 6 4 -1. + + <_> + 14 8 6 2 2. + + + 1 + + <_> + + <_> + 0 2 5 16 -1. + + <_> + 0 10 5 8 2. + + + + <_> + + <_> + 0 3 22 5 -1. + + <_> + 0 3 11 5 2. + + + + <_> + + <_> + 6 15 8 3 -1. + + <_> + 10 15 4 3 2. + + + + <_> + + <_> + 15 0 2 14 -1. + + <_> + 15 0 1 14 2. + + + 1 + + <_> + + <_> + 7 0 14 2 -1. + + <_> + 7 0 14 1 2. + + + 1 + + <_> + + <_> + 1 11 20 5 -1. + + <_> + 6 11 10 5 2. + + + + <_> + + <_> + 5 3 12 9 -1. + + <_> + 9 6 4 3 9. + + + + <_> + + <_> + 10 1 12 3 -1. + + <_> + 14 1 4 3 3. + + + + <_> + + <_> + 0 1 12 3 -1. + + <_> + 4 1 4 3 3. + + + + <_> + + <_> + 14 12 4 6 -1. + + <_> + 14 12 2 6 2. + + + + <_> + + <_> + 0 10 22 7 -1. + + <_> + 11 10 11 7 2. + + + + <_> + + <_> + 11 2 4 11 -1. + + <_> + 11 2 2 11 2. + + + 1 + + <_> + + <_> + 3 14 16 4 -1. + + <_> + 3 14 8 2 2. + + <_> + 11 16 8 2 2. + + + + <_> + + <_> + 12 12 6 6 -1. + + <_> + 14 12 2 6 3. + + + + <_> + + <_> + 4 12 6 6 -1. + + <_> + 6 12 2 6 3. + + + + <_> + + <_> + 11 14 6 4 -1. + + <_> + 11 16 6 2 2. + + + + <_> + + <_> + 0 0 12 4 -1. + + <_> + 0 0 6 2 2. + + <_> + 6 2 6 2 2. + + + + <_> + + <_> + 15 11 4 6 -1. + + <_> + 15 11 2 6 2. + + + + <_> + + <_> + 3 11 4 6 -1. + + <_> + 5 11 2 6 2. + + + + <_> + + <_> + 18 5 4 7 -1. + + <_> + 18 5 2 7 2. + + + 1 + + <_> + + <_> + 4 5 7 4 -1. + + <_> + 4 5 7 2 2. + + + 1 + + <_> + + <_> + 9 6 12 3 -1. + + <_> + 13 6 4 3 3. + + + + <_> + + <_> + 1 6 12 3 -1. + + <_> + 5 6 4 3 3. + + + + <_> + + <_> + 0 0 22 10 -1. + + <_> + 11 0 11 5 2. + + <_> + 0 5 11 5 2. + + + + <_> + + <_> + 2 4 14 3 -1. + + <_> + 2 5 14 1 3. + + + + <_> + + <_> + 13 3 8 6 -1. + + <_> + 17 3 4 3 2. + + <_> + 13 6 4 3 2. + + + + <_> + + <_> + 4 14 14 4 -1. + + <_> + 4 14 7 2 2. + + <_> + 11 16 7 2 2. + + + + <_> + + <_> + 11 2 4 11 -1. + + <_> + 11 2 2 11 2. + + + 1 + + <_> + + <_> + 11 2 11 4 -1. + + <_> + 11 2 11 2 2. + + + 1 + + <_> + + <_> + 10 7 12 3 -1. + + <_> + 10 7 6 3 2. + + + + <_> + + <_> + 9 7 4 6 -1. + + <_> + 9 7 2 6 2. + + + 1 + + <_> + + <_> + 3 11 16 6 -1. + + <_> + 11 11 8 3 2. + + <_> + 3 14 8 3 2. + + + + <_> + + <_> + 1 3 8 6 -1. + + <_> + 1 3 4 3 2. + + <_> + 5 6 4 3 2. + + + + <_> + + <_> + 5 4 12 3 -1. + + <_> + 5 5 12 1 3. + + + + <_> + + <_> + 7 14 8 4 -1. + + <_> + 11 14 4 4 2. + + + + <_> + + <_> + 7 3 15 3 -1. + + <_> + 7 4 15 1 3. + + + + <_> + + <_> + 6 8 6 4 -1. + + <_> + 6 8 6 2 2. + + + 1 + + <_> + + <_> + 10 7 12 3 -1. + + <_> + 10 7 6 3 2. + + + + <_> + + <_> + 0 7 12 3 -1. + + <_> + 6 7 6 3 2. + + + + <_> + + <_> + 7 7 9 4 -1. + + <_> + 10 7 3 4 3. + + + + <_> + + <_> + 6 2 4 16 -1. + + <_> + 6 10 4 8 2. + + + + <_> + + <_> + 8 4 6 6 -1. + + <_> + 10 4 2 6 3. + + + + <_> + + <_> + 1 11 20 3 -1. + + <_> + 6 11 10 3 2. + + + + <_> + + <_> + 14 9 6 8 -1. + + <_> + 17 9 3 4 2. + + <_> + 14 13 3 4 2. + + + + <_> + + <_> + 11 0 9 4 -1. + + <_> + 11 0 9 2 2. + + + 1 + + <_> + + <_> + 11 10 6 8 -1. + + <_> + 14 10 3 4 2. + + <_> + 11 14 3 4 2. + + + + <_> + + <_> + 5 16 12 2 -1. + + <_> + 5 17 12 1 2. + + + + <_> + + <_> + 5 9 14 4 -1. + + <_> + 5 11 14 2 2. + + + + <_> + + <_> + 2 9 6 8 -1. + + <_> + 2 9 3 4 2. + + <_> + 5 13 3 4 2. + + + + <_> + + <_> + 15 8 6 4 -1. + + <_> + 15 8 3 4 2. + + + + <_> + + <_> + 1 8 6 4 -1. + + <_> + 4 8 3 4 2. + + + + <_> + + <_> + 13 5 8 5 -1. + + <_> + 13 5 4 5 2. + + + 1 + + <_> + + <_> + 11 5 9 2 -1. + + <_> + 11 5 9 1 2. + + + 1 + + <_> + + <_> + 12 6 9 12 -1. + + <_> + 15 10 3 4 9. + + + + <_> + + <_> + 5 10 6 8 -1. + + <_> + 5 10 3 4 2. + + <_> + 8 14 3 4 2. + + + + <_> + + <_> + 9 5 5 12 -1. + + <_> + 9 8 5 6 2. + + + + <_> + + <_> + 11 5 9 2 -1. + + <_> + 11 5 9 1 2. + + + 1 + + <_> + + <_> + 5 0 15 12 -1. + + <_> + 10 4 5 4 9. + + + + <_> + + <_> + 1 13 8 5 -1. + + <_> + 5 13 4 5 2. + + + + <_> + + <_> + 14 8 6 4 -1. + + <_> + 14 8 3 4 2. + + + 1 + + <_> + + <_> + 8 8 4 6 -1. + + <_> + 8 8 4 3 2. + + + 1 + + <_> + + <_> + 7 0 12 9 -1. + + <_> + 11 3 4 3 9. + + + + <_> + + <_> + 7 13 6 4 -1. + + <_> + 7 15 6 2 2. + + + + <_> + + <_> + 10 7 6 10 -1. + + <_> + 13 7 3 5 2. + + <_> + 10 12 3 5 2. + + + + <_> + + <_> + 6 7 6 10 -1. + + <_> + 6 7 3 5 2. + + <_> + 9 12 3 5 2. + + + + <_> + + <_> + 7 0 12 2 -1. + + <_> + 7 0 6 2 2. + + + + <_> + + <_> + 2 0 18 9 -1. + + <_> + 2 3 18 3 3. + + + + <_> + + <_> + 12 2 6 15 -1. + + <_> + 12 2 3 15 2. + + + + <_> + + <_> + 4 2 6 15 -1. + + <_> + 7 2 3 15 2. + + + + <_> + + <_> + 7 12 12 4 -1. + + <_> + 7 13 12 2 2. + + + + <_> + + <_> + 4 4 4 14 -1. + + <_> + 4 4 2 7 2. + + <_> + 6 11 2 7 2. + + + + <_> + + <_> + 12 6 9 12 -1. + + <_> + 15 10 3 4 9. + + + + <_> + + <_> + 1 6 9 12 -1. + + <_> + 4 10 3 4 9. + + + + <_> + + <_> + 13 6 8 12 -1. + + <_> + 17 6 4 6 2. + + <_> + 13 12 4 6 2. + + + + <_> + + <_> + 7 14 8 3 -1. + + <_> + 11 14 4 3 2. + + + + <_> + + <_> + 5 5 12 3 -1. + + <_> + 9 5 4 3 3. + + + + <_> + + <_> + 10 0 2 18 -1. + + <_> + 10 6 2 6 3. + + + + <_> + + <_> + 4 14 14 2 -1. + + <_> + 4 14 7 2 2. + + + + <_> + + <_> + 3 0 6 4 -1. + + <_> + 6 0 3 4 2. + + + + <_> + + <_> + 13 12 6 4 -1. + + <_> + 13 12 3 4 2. + + + + <_> + + <_> + 1 0 8 4 -1. + + <_> + 5 0 4 4 2. + + + + <_> + + <_> + 7 9 14 4 -1. + + <_> + 14 9 7 2 2. + + <_> + 7 11 7 2 2. + + + + <_> + + <_> + 1 0 8 18 -1. + + <_> + 1 0 4 9 2. + + <_> + 5 9 4 9 2. + + + + <_> + + <_> + 13 8 6 4 -1. + + <_> + 13 8 3 4 2. + + + 1 + + <_> + + <_> + 9 8 4 6 -1. + + <_> + 9 8 4 3 2. + + + 1 + + <_> + + <_> + 3 13 6 4 -1. + + <_> + 6 13 3 4 2. + + + + <_> + + <_> + 11 4 6 7 -1. + + <_> + 13 4 2 7 3. + + + + <_> + + <_> + 6 8 6 4 -1. + + <_> + 6 8 3 4 2. + + + 1 + + <_> + + <_> + 10 7 12 5 -1. + + <_> + 13 7 6 5 2. + + + + <_> + + <_> + 3 5 12 3 -1. + + <_> + 9 5 6 3 2. + + + + <_> + + <_> + 13 5 4 6 -1. + + <_> + 13 8 4 3 2. + + + + <_> + + <_> + 5 5 4 6 -1. + + <_> + 5 8 4 3 2. + + + + <_> + + <_> + 13 12 6 6 -1. + + <_> + 15 12 2 6 3. + + + + <_> + + <_> + 10 2 4 10 -1. + + <_> + 10 2 4 5 2. + + + 1 + + <_> + + <_> + 13 12 6 6 -1. + + <_> + 15 12 2 6 3. + + + + <_> + + <_> + 3 12 6 6 -1. + + <_> + 5 12 2 6 3. + + + + <_> + + <_> + 11 12 6 6 -1. + + <_> + 11 14 6 2 3. + + + + <_> + + <_> + 5 12 8 6 -1. + + <_> + 5 12 4 3 2. + + <_> + 9 15 4 3 2. + + + + <_> + + <_> + 5 11 12 6 -1. + + <_> + 11 11 6 3 2. + + <_> + 5 14 6 3 2. + + + + <_> + + <_> + 0 9 22 8 -1. + + <_> + 0 9 11 4 2. + + <_> + 11 13 11 4 2. + + + + <_> + + <_> + 6 9 13 3 -1. + + <_> + 6 10 13 1 3. + + + + <_> + + <_> + 0 2 8 6 -1. + + <_> + 0 2 4 3 2. + + <_> + 4 5 4 3 2. + + + + <_> + + <_> + 4 9 16 3 -1. + + <_> + 4 10 16 1 3. + + + + <_> + + <_> + 4 9 12 3 -1. + + <_> + 4 10 12 1 3. + + + + <_> + + <_> + 16 2 5 16 -1. + + <_> + 16 10 5 8 2. + + + + <_> + + <_> + 6 13 7 4 -1. + + <_> + 6 15 7 2 2. + + + + <_> + + <_> + 1 7 20 8 -1. + + <_> + 11 7 10 4 2. + + <_> + 1 11 10 4 2. + + + + <_> + + <_> + 5 2 12 3 -1. + + <_> + 5 3 12 1 3. + + + + <_> + + <_> + 13 13 6 4 -1. + + <_> + 13 15 6 2 2. + + + + <_> + + <_> + 1 0 5 8 -1. + + <_> + 1 4 5 4 2. + + + + <_> + + <_> + 5 0 13 8 -1. + + <_> + 5 4 13 4 2. + + + + <_> + + <_> + 9 1 4 8 -1. + + <_> + 9 5 4 4 2. + + + + <_> + + <_> + 11 2 8 8 -1. + + <_> + 9 4 8 4 2. + + + 1 + + <_> + + <_> + 11 2 8 8 -1. + + <_> + 13 4 4 8 2. + + + 1 + + <_> + + <_> + 8 0 14 4 -1. + + <_> + 15 0 7 2 2. + + <_> + 8 2 7 2 2. + + + + <_> + + <_> + 0 10 12 4 -1. + + <_> + 0 10 6 2 2. + + <_> + 6 12 6 2 2. + + + + <_> + + <_> + 8 0 14 4 -1. + + <_> + 15 0 7 2 2. + + <_> + 8 2 7 2 2. + + + + <_> + + <_> + 3 4 16 14 -1. + + <_> + 7 4 8 14 2. + + + + <_> + + <_> + 13 13 6 4 -1. + + <_> + 13 15 6 2 2. + + + + <_> + + <_> + 3 13 6 4 -1. + + <_> + 3 15 6 2 2. + + + + <_> + + <_> + 11 5 2 10 -1. + + <_> + 11 5 1 10 2. + + + 1 + + <_> + + <_> + 11 5 10 2 -1. + + <_> + 11 5 10 1 2. + + + 1 + + <_> + + <_> + 4 0 18 4 -1. + + <_> + 13 0 9 2 2. + + <_> + 4 2 9 2 2. + + + + <_> + + <_> + 6 5 4 6 -1. + + <_> + 6 5 2 6 2. + + + 1 + + <_> + + <_> + 16 6 6 6 -1. + + <_> + 14 8 6 2 3. + + + 1 + + <_> + + <_> + 6 6 6 6 -1. + + <_> + 8 8 2 6 3. + + + 1 + + <_> + + <_> + 4 0 18 12 -1. + + <_> + 4 0 9 12 2. + + + + <_> + + <_> + 0 12 8 6 -1. + + <_> + 2 12 4 6 2. + + + + <_> + + <_> + 7 12 8 6 -1. + + <_> + 7 12 4 6 2. + + + + <_> + + <_> + 7 6 3 12 -1. + + <_> + 8 6 1 12 3. + + + + <_> + + <_> + 15 5 6 6 -1. + + <_> + 15 5 3 6 2. + + + 1 + + <_> + + <_> + 2 12 8 3 -1. + + <_> + 6 12 4 3 2. + + + + <_> + + <_> + 2 6 18 3 -1. + + <_> + 8 6 6 3 3. + + + + <_> + + <_> + 0 11 22 2 -1. + + <_> + 11 11 11 2 2. + + + + <_> + + <_> + 10 14 6 4 -1. + + <_> + 10 16 6 2 2. + + + + <_> + + <_> + 3 12 6 4 -1. + + <_> + 6 12 3 4 2. + + + + <_> + + <_> + 14 0 4 12 -1. + + <_> + 14 0 4 6 2. + + + 1 + + <_> + + <_> + 5 10 6 4 -1. + + <_> + 8 10 3 4 2. + + + + <_> + + <_> + 1 12 20 6 -1. + + <_> + 11 12 10 3 2. + + <_> + 1 15 10 3 2. + + + + <_> + + <_> + 5 15 12 3 -1. + + <_> + 9 15 4 3 3. + + + + <_> + + <_> + 13 1 3 10 -1. + + <_> + 13 6 3 5 2. + + + + <_> + + <_> + 9 0 10 4 -1. + + <_> + 9 0 5 4 2. + + + 1 + + <_> + + <_> + 13 1 3 10 -1. + + <_> + 13 6 3 5 2. + + + + <_> + + <_> + 6 1 3 10 -1. + + <_> + 6 6 3 5 2. + + + + <_> + + <_> + 11 4 10 4 -1. + + <_> + 11 4 10 2 2. + + + 1 + + <_> + + <_> + 0 10 20 8 -1. + + <_> + 0 10 10 4 2. + + <_> + 10 14 10 4 2. + + + + <_> + + <_> + 15 11 6 7 -1. + + <_> + 17 11 2 7 3. + + + + <_> + + <_> + 4 14 9 4 -1. + + <_> + 4 16 9 2 2. + + + + <_> + + <_> + 15 0 6 8 -1. + + <_> + 15 4 6 4 2. + + + + <_> + + <_> + 1 11 6 7 -1. + + <_> + 3 11 2 7 3. + + + + <_> + + <_> + 12 6 8 4 -1. + + <_> + 12 6 8 2 2. + + + 1 + + <_> + + <_> + 11 2 6 2 -1. + + <_> + 11 2 6 1 2. + + + 1 + + <_> + + <_> + 11 0 11 8 -1. + + <_> + 11 4 11 4 2. + + + + <_> + + <_> + 0 1 22 6 -1. + + <_> + 0 1 11 3 2. + + <_> + 11 4 11 3 2. + + + + <_> + + <_> + 11 6 3 12 -1. + + <_> + 12 6 1 12 3. + + + + <_> + + <_> + 0 1 14 7 -1. + + <_> + 7 1 7 7 2. + + + + <_> + + <_> + 16 8 4 6 -1. + + <_> + 16 8 2 6 2. + + + 1 + + <_> + + <_> + 1 11 20 7 -1. + + <_> + 6 11 10 7 2. + + + + <_> + + <_> + 13 12 4 6 -1. + + <_> + 13 15 4 3 2. + + + + <_> + + <_> + 0 3 13 3 -1. + + <_> + 0 4 13 1 3. + + + + <_> + + <_> + 6 3 12 3 -1. + + <_> + 6 4 12 1 3. + + + + <_> + + <_> + 0 4 22 10 -1. + + <_> + 0 4 11 5 2. + + <_> + 11 9 11 5 2. + + + + <_> + + <_> + 14 3 8 4 -1. + + <_> + 14 3 8 2 2. + + + 1 + + <_> + + <_> + 5 5 12 6 -1. + + <_> + 5 5 6 3 2. + + <_> + 11 8 6 3 2. + + + + <_> + + <_> + 11 6 6 6 -1. + + <_> + 13 6 2 6 3. + + + + <_> + + <_> + 9 4 4 13 -1. + + <_> + 10 4 2 13 2. + + + + <_> + + <_> + 11 3 3 13 -1. + + <_> + 12 3 1 13 3. + + + + <_> + + <_> + 9 5 4 6 -1. + + <_> + 11 5 2 6 2. + + + + <_> + + <_> + 7 2 12 15 -1. + + <_> + 11 7 4 5 9. + + + + <_> + + <_> + 3 2 12 15 -1. + + <_> + 7 7 4 5 9. + + + + <_> + + <_> + 5 2 12 12 -1. + + <_> + 9 6 4 4 9. + + + + <_> + + <_> + 8 5 4 12 -1. + + <_> + 8 8 4 6 2. + + + + <_> + + <_> + 8 9 8 7 -1. + + <_> + 10 9 4 7 2. + + + + <_> + + <_> + 6 9 8 7 -1. + + <_> + 8 9 4 7 2. + + + + <_> + + <_> + 0 4 22 14 -1. + + <_> + 11 4 11 7 2. + + <_> + 0 11 11 7 2. + + + + <_> + + <_> + 2 12 18 6 -1. + + <_> + 2 14 18 2 3. + + + + <_> + + <_> + 6 5 6 5 -1. + + <_> + 9 5 3 5 2. + + + + <_> + + <_> + 11 14 9 4 -1. + + <_> + 14 14 3 4 3. + + + + <_> + + <_> + 6 14 6 4 -1. + + <_> + 6 16 6 2 2. + + + + <_> + + <_> + 15 6 6 5 -1. + + <_> + 15 6 3 5 2. + + + 1 + + <_> + + <_> + 7 6 5 6 -1. + + <_> + 7 6 5 3 2. + + + 1 + + <_> + + <_> + 13 12 8 6 -1. + + <_> + 13 12 4 6 2. + + + + <_> + + <_> + 6 10 10 8 -1. + + <_> + 6 12 10 4 2. + + + + <_> + + <_> + 2 13 18 2 -1. + + <_> + 2 13 9 2 2. + + + + <_> + + <_> + 1 15 8 3 -1. + + <_> + 5 15 4 3 2. + + + + <_> + + <_> + 14 7 6 4 -1. + + <_> + 14 7 6 2 2. + + + 1 + + <_> + + <_> + 10 0 7 2 -1. + + <_> + 10 0 7 1 2. + + + 1 + + <_> + + <_> + 17 8 4 6 -1. + + <_> + 17 8 4 3 2. + + + 1 + + <_> + + <_> + 2 0 15 9 -1. + + <_> + 7 3 5 3 9. + + + + <_> + + <_> + 9 3 4 6 -1. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 3 0 16 12 -1. + + <_> + 3 6 16 6 2. + + + + <_> + + <_> + 11 0 3 10 -1. + + <_> + 11 0 3 5 2. + + + 1 + + <_> + + <_> + 0 3 22 14 -1. + + <_> + 11 3 11 14 2. + + + + <_> + + <_> + 10 3 6 7 -1. + + <_> + 12 3 2 7 3. + + + + <_> + + <_> + 11 1 11 4 -1. + + <_> + 10 2 11 2 2. + + + 1 + + <_> + + <_> + 14 7 6 4 -1. + + <_> + 14 7 6 2 2. + + + 1 + + <_> + + <_> + 5 5 4 12 -1. + + <_> + 5 11 4 6 2. + + + + <_> + + <_> + 2 6 20 9 -1. + + <_> + 2 6 10 9 2. + + + + <_> + + <_> + 1 9 18 3 -1. + + <_> + 7 9 6 3 3. + + + + <_> + + <_> + 11 6 6 6 -1. + + <_> + 13 6 2 6 3. + + + + <_> + + <_> + 8 13 6 4 -1. + + <_> + 11 13 3 4 2. + + + + <_> + + <_> + 10 14 6 4 -1. + + <_> + 10 14 3 4 2. + + + + <_> + + <_> + 5 6 6 6 -1. + + <_> + 7 6 2 6 3. + + + + <_> + + <_> + 15 0 3 8 -1. + + <_> + 16 1 1 8 3. + + + 1 + + <_> + + <_> + 5 8 12 3 -1. + + <_> + 9 8 4 3 3. + + + + <_> + + <_> + 2 7 18 4 -1. + + <_> + 2 9 18 2 2. + + + + <_> + + <_> + 11 1 10 4 -1. + + <_> + 11 1 5 4 2. + + + 1 + + <_> + + <_> + 15 0 3 8 -1. + + <_> + 16 1 1 8 3. + + + 1 + + <_> + + <_> + 7 0 8 3 -1. + + <_> + 6 1 8 1 3. + + + 1 + + <_> + + <_> + 10 0 12 4 -1. + + <_> + 16 0 6 2 2. + + <_> + 10 2 6 2 2. + + + + <_> + + <_> + 5 2 12 3 -1. + + <_> + 5 3 12 1 3. + + + + <_> + + <_> + 8 2 14 3 -1. + + <_> + 8 3 14 1 3. + + + + <_> + + <_> + 0 0 12 4 -1. + + <_> + 0 0 6 2 2. + + <_> + 6 2 6 2 2. + + + + <_> + + <_> + 8 0 14 4 -1. + + <_> + 15 0 7 2 2. + + <_> + 8 2 7 2 2. + + + + <_> + + <_> + 0 5 8 6 -1. + + <_> + 0 5 4 3 2. + + <_> + 4 8 4 3 2. + + + + <_> + + <_> + 14 14 6 4 -1. + + <_> + 14 14 3 4 2. + + + + <_> + + <_> + 6 12 10 4 -1. + + <_> + 11 12 5 4 2. + + + + <_> + + <_> + 14 6 6 6 -1. + + <_> + 12 8 6 2 3. + + + 1 + + <_> + + <_> + 8 6 6 6 -1. + + <_> + 10 8 2 6 3. + + + 1 + + <_> + + <_> + 2 8 6 10 -1. + + <_> + 2 8 3 5 2. + + <_> + 5 13 3 5 2. + + + + <_> + + <_> + 11 3 4 9 -1. + + <_> + 12 4 2 9 2. + + + 1 + + <_> + + <_> + 2 0 12 4 -1. + + <_> + 2 0 6 2 2. + + <_> + 8 2 6 2 2. + + + + <_> + + <_> + 11 5 3 9 -1. + + <_> + 12 6 1 9 3. + + + 1 + + <_> + + <_> + 11 3 9 4 -1. + + <_> + 10 4 9 2 2. + + + 1 + + <_> + + <_> + 13 13 8 5 -1. + + <_> + 13 13 4 5 2. + + + + <_> + + <_> + 1 13 8 5 -1. + + <_> + 5 13 4 5 2. + + + + <_> + + <_> + 7 13 8 3 -1. + + <_> + 7 13 4 3 2. + + + + <_> + + <_> + 8 13 6 4 -1. + + <_> + 11 13 3 4 2. + + + + <_> + + <_> + 11 7 3 8 -1. + + <_> + 12 8 1 8 3. + + + 1 + + <_> + + <_> + 5 1 6 8 -1. + + <_> + 7 1 2 8 3. + + + + <_> + + <_> + 14 14 6 4 -1. + + <_> + 14 16 6 2 2. + + + + <_> + + <_> + 11 7 8 3 -1. + + <_> + 10 8 8 1 3. + + + 1 + + <_> + + <_> + 12 3 3 12 -1. + + <_> + 8 7 3 4 3. + + + 1 + + <_> + + <_> + 8 5 5 6 -1. + + <_> + 8 8 5 3 2. + + + + <_> + + <_> + 11 3 8 4 -1. + + <_> + 11 3 8 2 2. + + + 1 + + <_> + + <_> + 7 5 8 6 -1. + + <_> + 9 5 4 6 2. + + + + <_> + + <_> + 11 4 6 6 -1. + + <_> + 9 6 6 2 3. + + + 1 + + <_> + + <_> + 11 4 6 6 -1. + + <_> + 13 6 2 6 3. + + + 1 + + <_> + + <_> + 12 8 6 4 -1. + + <_> + 12 8 3 4 2. + + + 1 + + <_> + + <_> + 5 15 8 3 -1. + + <_> + 9 15 4 3 2. + + + + <_> + + <_> + 0 5 22 13 -1. + + <_> + 0 5 11 13 2. + + + + <_> + + <_> + 2 12 9 6 -1. + + <_> + 5 12 3 6 3. + + + + <_> + + <_> + 19 1 3 10 -1. + + <_> + 19 6 3 5 2. + + + + <_> + + <_> + 5 14 12 4 -1. + + <_> + 5 16 12 2 2. + + + + <_> + + <_> + 10 14 10 4 -1. + + <_> + 10 16 10 2 2. + + + + <_> + + <_> + 1 3 14 3 -1. + + <_> + 1 4 14 1 3. + + + + <_> + + <_> + 3 14 16 4 -1. + + <_> + 11 14 8 2 2. + + <_> + 3 16 8 2 2. + + + + <_> + + <_> + 0 14 6 4 -1. + + <_> + 3 14 3 4 2. + + + + <_> + + <_> + 10 1 11 4 -1. + + <_> + 10 3 11 2 2. + + + + <_> + + <_> + 1 1 11 4 -1. + + <_> + 1 3 11 2 2. + + + + <_> + + <_> + 9 3 6 6 -1. + + <_> + 9 5 6 2 3. + + + + <_> + + <_> + 4 5 12 3 -1. + + <_> + 4 6 12 1 3. + + + + <_> + + <_> + 12 0 7 6 -1. + + <_> + 12 3 7 3 2. + + + + <_> + + <_> + 1 3 16 4 -1. + + <_> + 1 4 16 2 2. + + + + <_> + + <_> + 4 9 15 3 -1. + + <_> + 4 10 15 1 3. + + + + <_> + + <_> + 2 4 18 6 -1. + + <_> + 2 4 9 3 2. + + <_> + 11 7 9 3 2. + + + + <_> + + <_> + 13 5 4 13 -1. + + <_> + 14 5 2 13 2. + + + + <_> + + <_> + 4 6 6 4 -1. + + <_> + 4 8 6 2 2. + + + + <_> + + <_> + 8 7 6 5 -1. + + <_> + 8 7 3 5 2. + + + + <_> + + <_> + 10 8 4 6 -1. + + <_> + 10 8 4 3 2. + + + 1 + + <_> + + <_> + 6 12 12 4 -1. + + <_> + 6 12 6 4 2. + + + + <_> + + <_> + 3 11 10 3 -1. + + <_> + 8 11 5 3 2. + + + + <_> + + <_> + 12 2 3 12 -1. + + <_> + 12 2 3 6 2. + + + 1 + + <_> + + <_> + 0 2 14 16 -1. + + <_> + 7 2 7 16 2. + + + + <_> + + <_> + 1 5 20 4 -1. + + <_> + 6 5 10 4 2. + + + + <_> + + <_> + 0 1 18 15 -1. + + <_> + 9 1 9 15 2. + + + + <_> + + <_> + 15 2 6 8 -1. + + <_> + 15 4 6 4 2. + + + + <_> + + <_> + 4 14 13 4 -1. + + <_> + 4 15 13 2 2. + + + + <_> + + <_> + 11 2 3 12 -1. + + <_> + 12 2 1 12 3. + + + + <_> + + <_> + 0 16 15 2 -1. + + <_> + 0 17 15 1 2. + + + + <_> + + <_> + 12 14 6 4 -1. + + <_> + 12 16 6 2 2. + + + + <_> + + <_> + 5 13 12 4 -1. + + <_> + 5 14 12 2 2. + + + + <_> + + <_> + 12 12 6 6 -1. + + <_> + 12 14 6 2 3. + + + + <_> + + <_> + 0 9 15 3 -1. + + <_> + 0 10 15 1 3. + + + + <_> + + <_> + 6 9 14 3 -1. + + <_> + 6 10 14 1 3. + + + + <_> + + <_> + 4 12 7 6 -1. + + <_> + 4 14 7 2 3. + + + + <_> + + <_> + 6 6 10 6 -1. + + <_> + 11 6 5 3 2. + + <_> + 6 9 5 3 2. + + + + <_> + + <_> + 3 0 16 2 -1. + + <_> + 3 0 8 2 2. + + + 1 + + <_> + + <_> + 5 9 12 9 -1. + + <_> + 5 12 12 3 3. + + + + <_> + + <_> + 6 9 10 6 -1. + + <_> + 6 12 10 3 2. + + + + <_> + + <_> + 7 4 8 6 -1. + + <_> + 7 6 8 2 3. + + + + <_> + + <_> + 6 5 3 12 -1. + + <_> + 6 11 3 6 2. + + + + <_> + + <_> + 12 12 6 6 -1. + + <_> + 14 12 2 6 3. + + + + <_> + + <_> + 6 15 8 3 -1. + + <_> + 10 15 4 3 2. + + + + <_> + + <_> + 4 13 14 4 -1. + + <_> + 4 15 14 2 2. + + + + <_> + + <_> + 10 4 11 3 -1. + + <_> + 9 5 11 1 3. + + + 1 + + <_> + + <_> + 11 4 4 9 -1. + + <_> + 12 5 2 9 2. + + + 1 + + <_> + + <_> + 0 8 13 3 -1. + + <_> + 0 9 13 1 3. + + + + <_> + + <_> + 13 2 6 10 -1. + + <_> + 16 2 3 5 2. + + <_> + 13 7 3 5 2. + + + + <_> + + <_> + 3 2 6 10 -1. + + <_> + 3 2 3 5 2. + + <_> + 6 7 3 5 2. + + + + <_> + + <_> + 11 2 4 11 -1. + + <_> + 11 2 2 11 2. + + + 1 + + <_> + + <_> + 4 2 12 3 -1. + + <_> + 4 3 12 1 3. + + + + <_> + + <_> + 12 1 4 12 -1. + + <_> + 12 1 2 12 2. + + + 1 + + <_> + + <_> + 11 2 11 4 -1. + + <_> + 11 2 11 2 2. + + + 1 + + <_> + + <_> + 11 0 4 9 -1. + + <_> + 11 0 2 9 2. + + + 1 + + <_> + + <_> + 11 0 9 4 -1. + + <_> + 11 0 9 2 2. + + + 1 + + <_> + + <_> + 16 2 6 10 -1. + + <_> + 19 2 3 5 2. + + <_> + 16 7 3 5 2. + + + + <_> + + <_> + 11 0 6 3 -1. + + <_> + 10 1 6 1 3. + + + 1 + + <_> + + <_> + 11 0 3 8 -1. + + <_> + 12 1 1 8 3. + + + 1 + + <_> + + <_> + 11 0 8 3 -1. + + <_> + 10 1 8 1 3. + + + 1 + + <_> + + <_> + 17 1 4 12 -1. + + <_> + 19 1 2 6 2. + + <_> + 17 7 2 6 2. + + + + <_> + + <_> + 8 4 6 4 -1. + + <_> + 8 6 6 2 2. + + + + <_> + + <_> + 8 5 8 5 -1. + + <_> + 8 5 4 5 2. + + + + <_> + + <_> + 8 4 6 13 -1. + + <_> + 10 4 2 13 3. + + + + <_> + + <_> + 16 3 6 8 -1. + + <_> + 19 3 3 4 2. + + <_> + 16 7 3 4 2. + + + + <_> + + <_> + 0 3 6 8 -1. + + <_> + 0 3 3 4 2. + + <_> + 3 7 3 4 2. + + + + <_> + + <_> + 10 9 12 4 -1. + + <_> + 16 9 6 2 2. + + <_> + 10 11 6 2 2. + + + + <_> + + <_> + 1 2 9 12 -1. + + <_> + 4 6 3 4 9. + + + + <_> + + <_> + 15 12 4 6 -1. + + <_> + 15 12 2 6 2. + + + + <_> + + <_> + 5 15 12 3 -1. + + <_> + 11 15 6 3 2. + + + + <_> + + <_> + 2 16 20 2 -1. + + <_> + 2 16 10 2 2. + + + + <_> + + <_> + 1 8 10 6 -1. + + <_> + 1 8 5 3 2. + + <_> + 6 11 5 3 2. + + + + <_> + + <_> + 6 3 16 14 -1. + + <_> + 14 3 8 7 2. + + <_> + 6 10 8 7 2. + + + + <_> + + <_> + 1 4 6 8 -1. + + <_> + 1 4 3 4 2. + + <_> + 4 8 3 4 2. + + + + <_> + + <_> + 7 2 12 4 -1. + + <_> + 7 3 12 2 2. + + + + <_> + + <_> + 1 9 6 9 -1. + + <_> + 4 9 3 9 2. + + + + <_> + + <_> + 12 14 10 4 -1. + + <_> + 12 14 5 4 2. + + + + <_> + + <_> + 2 12 12 5 -1. + + <_> + 5 12 6 5 2. + + + + <_> + + <_> + 15 12 6 6 -1. + + <_> + 17 12 2 6 3. + + + + <_> + + <_> + 1 12 6 6 -1. + + <_> + 3 12 2 6 3. + + + + <_> + + <_> + 8 12 6 6 -1. + + <_> + 10 12 2 6 3. + + + + <_> + + <_> + 5 2 12 16 -1. + + <_> + 5 10 12 8 2. + + + + <_> + + <_> + 4 2 18 14 -1. + + <_> + 4 9 18 7 2. + + + + <_> + + <_> + 5 4 12 14 -1. + + <_> + 5 11 12 7 2. + + + + <_> + + <_> + 2 5 20 8 -1. + + <_> + 7 5 10 8 2. + + + + <_> + + <_> + 8 0 10 7 -1. + + <_> + 8 0 5 7 2. + + + 1 + + <_> + + <_> + 12 0 5 8 -1. + + <_> + 12 0 5 4 2. + + + 1 + + <_> + + <_> + 7 4 6 13 -1. + + <_> + 10 4 3 13 2. + + + + <_> + + <_> + 7 14 8 4 -1. + + <_> + 7 16 8 2 2. + + + + <_> + + <_> + 8 0 3 12 -1. + + <_> + 9 0 1 12 3. + + + + <_> + + <_> + 11 6 3 12 -1. + + <_> + 12 6 1 12 3. + + + + <_> + + <_> + 4 0 3 12 -1. + + <_> + 4 4 3 4 3. + + + + <_> + + <_> + 11 3 3 15 -1. + + <_> + 12 3 1 15 3. + + + + <_> + + <_> + 5 12 7 6 -1. + + <_> + 5 14 7 2 3. + + + + <_> + + <_> + 11 6 3 12 -1. + + <_> + 12 6 1 12 3. + + + + <_> + + <_> + 8 6 3 12 -1. + + <_> + 9 6 1 12 3. + + + + <_> + + <_> + 5 16 12 2 -1. + + <_> + 5 16 6 2 2. + + + + <_> + + <_> + 1 12 20 6 -1. + + <_> + 6 12 10 6 2. + + + + <_> + + <_> + 8 11 9 4 -1. + + <_> + 11 11 3 4 3. + + + + <_> + + <_> + 5 11 9 4 -1. + + <_> + 8 11 3 4 3. + + + + <_> + + <_> + 11 6 9 12 -1. + + <_> + 14 10 3 4 9. + + + + <_> + + <_> + 2 6 9 12 -1. + + <_> + 5 10 3 4 9. + + + + <_> + + <_> + 5 9 12 2 -1. + + <_> + 5 10 12 1 2. + + + + <_> + + <_> + 0 3 16 3 -1. + + <_> + 4 3 8 3 2. + + + + <_> + + <_> + 11 6 3 12 -1. + + <_> + 12 6 1 12 3. + + + + <_> + + <_> + 0 2 14 3 -1. + + <_> + 0 3 14 1 3. + + + + <_> + + <_> + 10 2 12 3 -1. + + <_> + 10 3 12 1 3. + + + + <_> + + <_> + 5 14 12 3 -1. + + <_> + 11 14 6 3 2. + + + + <_> + + <_> + 8 13 8 3 -1. + + <_> + 8 13 4 3 2. + + + + <_> + + <_> + 9 2 4 8 -1. + + <_> + 9 6 4 4 2. + + + + <_> + + <_> + 15 1 3 11 -1. + + <_> + 16 2 1 11 3. + + + 1 + + <_> + + <_> + 8 1 10 4 -1. + + <_> + 7 2 10 2 2. + + + 1 + + <_> + + <_> + 5 5 15 3 -1. + + <_> + 5 6 15 1 3. + + + + <_> + + <_> + 5 1 9 5 -1. + + <_> + 8 1 3 5 3. + + + + <_> + + <_> + 14 0 4 18 -1. + + <_> + 15 0 2 18 2. + + + + <_> + + <_> + 6 0 5 16 -1. + + <_> + 6 8 5 8 2. + + + + <_> + + <_> + 12 4 4 8 -1. + + <_> + 12 8 4 4 2. + + + + <_> + + <_> + 11 4 10 2 -1. + + <_> + 11 4 10 1 2. + + + 1 + + <_> + + <_> + 10 0 12 3 -1. + + <_> + 14 0 4 3 3. + + + + <_> + + <_> + 0 2 20 13 -1. + + <_> + 5 2 10 13 2. + + + + <_> + + <_> + 12 4 4 8 -1. + + <_> + 12 8 4 4 2. + + + + <_> + + <_> + 6 4 4 8 -1. + + <_> + 6 8 4 4 2. + + + + <_> + + <_> + 11 6 3 12 -1. + + <_> + 12 6 1 12 3. + + + + <_> + + <_> + 8 6 3 12 -1. + + <_> + 9 6 1 12 3. + + + + <_> + + <_> + 7 1 14 2 -1. + + <_> + 7 1 7 2 2. + + + + <_> + + <_> + 4 8 14 10 -1. + + <_> + 4 13 14 5 2. + + + + <_> + + <_> + 11 14 9 4 -1. + + <_> + 14 14 3 4 3. + + + + <_> + + <_> + 1 7 17 8 -1. + + <_> + 1 11 17 4 2. + + + + <_> + + <_> + 10 12 7 6 -1. + + <_> + 10 15 7 3 2. + + + + <_> + + <_> + 10 1 8 9 -1. + + <_> + 10 1 4 9 2. + + + 1 + + <_> + + <_> + 11 2 4 11 -1. + + <_> + 11 2 2 11 2. + + + 1 + + <_> + + <_> + 6 9 4 9 -1. + + <_> + 8 9 2 9 2. + + + + <_> + + <_> + 8 3 12 4 -1. + + <_> + 14 3 6 2 2. + + <_> + 8 5 6 2 2. + + + + <_> + + <_> + 5 14 7 4 -1. + + <_> + 5 16 7 2 2. + + + + <_> + + <_> + 13 0 4 13 -1. + + <_> + 13 0 2 13 2. + + + 1 + + <_> + + <_> + 9 0 13 4 -1. + + <_> + 9 0 13 2 2. + + + 1 + + <_> + + <_> + 12 9 4 9 -1. + + <_> + 12 12 4 3 3. + + + + <_> + + <_> + 7 4 12 2 -1. + + <_> + 7 4 12 1 2. + + + 1 + + <_> + + <_> + 12 5 10 6 -1. + + <_> + 17 5 5 3 2. + + <_> + 12 8 5 3 2. + + + + <_> + + <_> + 1 0 17 3 -1. + + <_> + 1 1 17 1 3. + + + + <_> + + <_> + 15 4 6 8 -1. + + <_> + 18 4 3 4 2. + + <_> + 15 8 3 4 2. + + + + <_> + + <_> + 3 2 4 14 -1. + + <_> + 3 2 2 7 2. + + <_> + 5 9 2 7 2. + + + + <_> + + <_> + 14 8 6 4 -1. + + <_> + 14 8 6 2 2. + + + 1 + + <_> + + <_> + 8 8 4 6 -1. + + <_> + 8 8 2 6 2. + + + 1 + + <_> + + <_> + 12 1 4 16 -1. + + <_> + 14 1 2 8 2. + + <_> + 12 9 2 8 2. + + + + <_> + + <_> + 7 0 6 8 -1. + + <_> + 7 0 3 4 2. + + <_> + 10 4 3 4 2. + + + + <_> + + <_> + 8 12 6 5 -1. + + <_> + 8 12 3 5 2. + + + + <_> + + <_> + 7 5 6 12 -1. + + <_> + 7 5 3 6 2. + + <_> + 10 11 3 6 2. + + + + <_> + + <_> + 15 5 6 6 -1. + + <_> + 15 5 3 6 2. + + + 1 + + <_> + + <_> + 6 10 3 8 -1. + + <_> + 6 14 3 4 2. + + + + <_> + + <_> + 4 0 14 3 -1. + + <_> + 4 1 14 1 3. + + + + <_> + + <_> + 0 9 8 3 -1. + + <_> + 4 9 4 3 2. + + + + <_> + + <_> + 9 3 4 6 -1. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 3 0 10 10 -1. + + <_> + 3 0 5 5 2. + + <_> + 8 5 5 5 2. + + + + <_> + + <_> + 5 13 12 4 -1. + + <_> + 5 13 6 4 2. + + + + <_> + + <_> + 6 12 10 3 -1. + + <_> + 11 12 5 3 2. + + + + <_> + + <_> + 12 15 10 3 -1. + + <_> + 12 15 5 3 2. + + + + <_> + + <_> + 0 15 10 3 -1. + + <_> + 5 15 5 3 2. + + + + <_> + + <_> + 3 0 17 14 -1. + + <_> + 3 7 17 7 2. + + + + <_> + + <_> + 9 0 4 16 -1. + + <_> + 9 0 2 8 2. + + <_> + 11 8 2 8 2. + + + + <_> + + <_> + 11 4 6 8 -1. + + <_> + 11 8 6 4 2. + + + + <_> + + <_> + 0 9 12 3 -1. + + <_> + 0 10 12 1 3. + + + + <_> + + <_> + 1 5 20 8 -1. + + <_> + 11 5 10 4 2. + + <_> + 1 9 10 4 2. + + + + <_> + + <_> + 1 8 13 3 -1. + + <_> + 1 9 13 1 3. + + + + <_> + + <_> + 8 8 14 3 -1. + + <_> + 8 9 14 1 3. + + + + <_> + + <_> + 4 16 14 2 -1. + + <_> + 4 17 14 1 2. + + + + <_> + + <_> + 11 1 3 6 -1. + + <_> + 12 2 1 6 3. + + + 1 + + <_> + + <_> + 11 1 6 3 -1. + + <_> + 10 2 6 1 3. + + + 1 + + <_> + + <_> + 13 1 6 10 -1. + + <_> + 16 1 3 5 2. + + <_> + 13 6 3 5 2. + + + + <_> + + <_> + 11 0 10 3 -1. + + <_> + 10 1 10 1 3. + + + 1 + + <_> + + <_> + 12 1 3 12 -1. + + <_> + 13 2 1 12 3. + + + 1 + + <_> + + <_> + 10 1 12 3 -1. + + <_> + 9 2 12 1 3. + + + 1 + + <_> + + <_> + 13 1 6 10 -1. + + <_> + 16 1 3 5 2. + + <_> + 13 6 3 5 2. + + + + <_> + + <_> + 3 1 6 10 -1. + + <_> + 3 1 3 5 2. + + <_> + 6 6 3 5 2. + + + + <_> + + <_> + 14 7 6 10 -1. + + <_> + 17 7 3 5 2. + + <_> + 14 12 3 5 2. + + + + <_> + + <_> + 3 2 6 8 -1. + + <_> + 3 2 3 4 2. + + <_> + 6 6 3 4 2. + + + + <_> + + <_> + 11 14 9 4 -1. + + <_> + 14 14 3 4 3. + + + + <_> + + <_> + 1 8 15 8 -1. + + <_> + 1 12 15 4 2. + + + + <_> + + <_> + 9 12 8 4 -1. + + <_> + 9 14 8 2 2. + + + + <_> + + <_> + 6 5 7 6 -1. + + <_> + 6 7 7 2 3. + + + + <_> + + <_> + 9 5 6 5 -1. + + <_> + 9 5 3 5 2. + + + + <_> + + <_> + 0 12 8 6 -1. + + <_> + 2 12 4 6 2. + + + + <_> + + <_> + 14 8 6 4 -1. + + <_> + 14 8 3 4 2. + + + 1 + + <_> + + <_> + 8 8 4 6 -1. + + <_> + 8 8 4 3 2. + + + 1 + + <_> + + <_> + 9 4 6 8 -1. + + <_> + 11 4 2 8 3. + + + + <_> + + <_> + 7 4 6 8 -1. + + <_> + 9 4 2 8 3. + + + + <_> + + <_> + 0 15 10 3 -1. + + <_> + 5 15 5 3 2. + + + + <_> + + <_> + 11 5 3 9 -1. + + <_> + 12 6 1 9 3. + + + 1 + + <_> + + <_> + 11 5 9 3 -1. + + <_> + 10 6 9 1 3. + + + 1 + + <_> + + <_> + 12 6 8 4 -1. + + <_> + 12 6 8 2 2. + + + 1 + + <_> + + <_> + 10 6 4 8 -1. + + <_> + 10 6 2 8 2. + + + 1 + + <_> + + <_> + 13 0 5 12 -1. + + <_> + 13 0 5 6 2. + + + 1 + + <_> + + <_> + 1 3 12 4 -1. + + <_> + 4 3 6 4 2. + + + + <_> + + <_> + 15 7 6 5 -1. + + <_> + 15 7 3 5 2. + + + + <_> + + <_> + 1 7 12 3 -1. + + <_> + 1 8 12 1 3. + + + + <_> + + <_> + 15 7 6 5 -1. + + <_> + 15 7 3 5 2. + + + + <_> + + <_> + 1 7 6 5 -1. + + <_> + 4 7 3 5 2. + + + + <_> + + <_> + 12 13 6 4 -1. + + <_> + 12 15 6 2 2. + + + + <_> + + <_> + 5 12 12 6 -1. + + <_> + 5 12 6 3 2. + + <_> + 11 15 6 3 2. + + + + <_> + + <_> + 11 5 2 9 -1. + + <_> + 11 5 1 9 2. + + + 1 + + <_> + + <_> + 11 5 9 2 -1. + + <_> + 11 5 9 1 2. + + + 1 + + <_> + + <_> + 10 12 9 4 -1. + + <_> + 13 12 3 4 3. + + + + <_> + + <_> + 8 6 6 6 -1. + + <_> + 8 6 6 3 2. + + + 1 + + <_> + + <_> + 10 14 6 4 -1. + + <_> + 10 14 3 4 2. + + + + <_> + + <_> + 0 2 14 3 -1. + + <_> + 0 3 14 1 3. + + + + <_> + + <_> + 8 2 12 3 -1. + + <_> + 8 3 12 1 3. + + + + <_> + + <_> + 8 7 5 6 -1. + + <_> + 8 7 5 3 2. + + + 1 + + <_> + + <_> + 12 6 8 3 -1. + + <_> + 12 6 4 3 2. + + + 1 + + <_> + + <_> + 4 10 4 6 -1. + + <_> + 6 10 2 6 2. + + + + <_> + + <_> + 1 11 20 4 -1. + + <_> + 6 11 10 4 2. + + + + <_> + + <_> + 6 10 8 7 -1. + + <_> + 8 10 4 7 2. + + + + <_> + + <_> + 11 3 3 9 -1. + + <_> + 12 4 1 9 3. + + + 1 + + <_> + + <_> + 0 8 22 4 -1. + + <_> + 11 8 11 4 2. + + + + <_> + + <_> + 3 10 16 3 -1. + + <_> + 3 10 8 3 2. + + + + <_> + + <_> + 11 3 9 3 -1. + + <_> + 10 4 9 1 3. + + + 1 + + <_> + + <_> + 5 3 12 9 -1. + + <_> + 9 6 4 3 9. + + + + <_> + + <_> + 7 12 4 6 -1. + + <_> + 9 12 2 6 2. + + + + <_> + + <_> + 9 12 6 6 -1. + + <_> + 9 12 3 6 2. + + + + <_> + + <_> + 2 13 16 5 -1. + + <_> + 10 13 8 5 2. + + + + <_> + + <_> + 12 12 8 3 -1. + + <_> + 12 12 4 3 2. + + + + <_> + + <_> + 10 4 12 2 -1. + + <_> + 10 4 6 2 2. + + + 1 + + <_> + + <_> + 11 3 8 4 -1. + + <_> + 11 3 4 4 2. + + + 1 + + <_> + + <_> + 4 6 10 3 -1. + + <_> + 9 6 5 3 2. + + + + <_> + + <_> + 10 1 6 8 -1. + + <_> + 13 1 3 4 2. + + <_> + 10 5 3 4 2. + + + + <_> + + <_> + 11 1 6 6 -1. + + <_> + 11 1 6 3 2. + + + 1 + + <_> + + <_> + 11 6 6 4 -1. + + <_> + 11 8 6 2 2. + + + + <_> + + <_> + 2 2 12 3 -1. + + <_> + 2 3 12 1 3. + + + + <_> + + <_> + 11 3 8 4 -1. + + <_> + 11 3 4 4 2. + + + 1 + + <_> + + <_> + 1 0 8 6 -1. + + <_> + 1 0 4 3 2. + + <_> + 5 3 4 3 2. + + + + <_> + + <_> + 8 3 14 3 -1. + + <_> + 8 4 14 1 3. + + + + <_> + + <_> + 11 3 4 8 -1. + + <_> + 11 3 4 4 2. + + + 1 + + <_> + + <_> + 6 0 12 10 -1. + + <_> + 9 0 6 10 2. + + + + <_> + + <_> + 4 16 14 2 -1. + + <_> + 4 17 14 1 2. + + + + <_> + + <_> + 10 11 12 3 -1. + + <_> + 10 12 12 1 3. + + + + <_> + + <_> + 3 0 4 6 -1. + + <_> + 5 0 2 6 2. + + + + <_> + + <_> + 16 12 6 4 -1. + + <_> + 16 12 3 4 2. + + + + <_> + + <_> + 0 13 10 4 -1. + + <_> + 5 13 5 4 2. + + + + <_> + + <_> + 3 1 16 4 -1. + + <_> + 11 1 8 2 2. + + <_> + 3 3 8 2 2. + + + + <_> + + <_> + 0 1 11 4 -1. + + <_> + 0 3 11 2 2. + + + + <_> + + <_> + 6 8 11 6 -1. + + <_> + 6 11 11 3 2. + + + + <_> + + <_> + 8 5 5 10 -1. + + <_> + 8 10 5 5 2. + + + + <_> + + <_> + 9 2 4 6 -1. + + <_> + 9 5 4 3 2. + + + + <_> + + <_> + 2 3 12 6 -1. + + <_> + 2 3 6 3 2. + + <_> + 8 6 6 3 2. + + + + <_> + + <_> + 13 3 7 9 -1. + + <_> + 13 6 7 3 3. + + + + <_> + + <_> + 2 3 7 9 -1. + + <_> + 2 6 7 3 3. + + + + <_> + + <_> + 11 0 3 6 -1. + + <_> + 12 1 1 6 3. + + + 1 + + <_> + + <_> + 3 3 13 3 -1. + + <_> + 3 4 13 1 3. + + + + <_> + + <_> + 8 3 14 3 -1. + + <_> + 8 4 14 1 3. + + + + <_> + + <_> + 3 6 7 12 -1. + + <_> + 3 9 7 6 2. + + + + <_> + + <_> + 12 13 6 4 -1. + + <_> + 12 15 6 2 2. + + + + <_> + + <_> + 4 13 6 4 -1. + + <_> + 4 15 6 2 2. + + + + <_> + + <_> + 6 1 15 2 -1. + + <_> + 6 2 15 1 2. + + + + <_> + + <_> + 4 3 3 12 -1. + + <_> + 5 3 1 12 3. + + + + <_> + + <_> + 14 4 2 12 -1. + + <_> + 14 4 2 6 2. + + + 1 + + <_> + + <_> + 11 0 6 3 -1. + + <_> + 10 1 6 1 3. + + + 1 + + <_> + + <_> + 4 9 14 5 -1. + + <_> + 4 9 7 5 2. + + + + <_> + + <_> + 11 2 10 3 -1. + + <_> + 10 3 10 1 3. + + + 1 + + <_> + + <_> + 9 12 7 6 -1. + + <_> + 9 14 7 2 3. + + + + <_> + + <_> + 1 8 8 10 -1. + + <_> + 1 8 4 5 2. + + <_> + 5 13 4 5 2. + + + + <_> + + <_> + 5 5 12 5 -1. + + <_> + 9 5 4 5 3. + + + + <_> + + <_> + 8 8 4 6 -1. + + <_> + 8 8 2 6 2. + + + 1 + + <_> + + <_> + 7 6 8 10 -1. + + <_> + 7 11 8 5 2. + + + + <_> + + <_> + 6 14 6 4 -1. + + <_> + 9 14 3 4 2. + + + + <_> + + <_> + 5 15 12 2 -1. + + <_> + 5 16 12 1 2. + + + + <_> + + <_> + 6 4 10 6 -1. + + <_> + 6 6 10 2 3. + + + + <_> + + <_> + 9 12 8 6 -1. + + <_> + 9 14 8 2 3. + + + + <_> + + <_> + 1 11 20 5 -1. + + <_> + 6 11 10 5 2. + + + + <_> + + <_> + 10 8 8 4 -1. + + <_> + 10 8 4 4 2. + + + + <_> + + <_> + 2 4 18 6 -1. + + <_> + 2 6 18 2 3. + + + + <_> + + <_> + 8 4 12 11 -1. + + <_> + 8 4 6 11 2. + + + + <_> + + <_> + 11 5 11 2 -1. + + <_> + 11 5 11 1 2. + + + 1 + + <_> + + <_> + 3 6 18 9 -1. + + <_> + 9 9 6 3 9. + + + + <_> + + <_> + 3 2 10 9 -1. + + <_> + 8 2 5 9 2. + + + + <_> + + <_> + 14 5 6 6 -1. + + <_> + 16 5 2 6 3. + + + + <_> + + <_> + 5 5 12 6 -1. + + <_> + 8 5 6 6 2. + + + + <_> + + <_> + 11 3 10 4 -1. + + <_> + 11 3 5 4 2. + + + 1 + + <_> + + <_> + 6 3 8 6 -1. + + <_> + 6 3 4 3 2. + + <_> + 10 6 4 3 2. + + + + <_> + + <_> + 16 0 3 15 -1. + + <_> + 16 5 3 5 3. + + + + <_> + + <_> + 3 0 3 15 -1. + + <_> + 3 5 3 5 3. + + + + <_> + + <_> + 5 2 12 16 -1. + + <_> + 8 2 6 16 2. + + + + <_> + + <_> + 6 8 4 6 -1. + + <_> + 8 8 2 6 2. + + + + <_> + + <_> + 5 9 13 9 -1. + + <_> + 5 12 13 3 3. + + + + <_> + + <_> + 11 7 8 3 -1. + + <_> + 11 7 4 3 2. + + + 1 + + <_> + + <_> + 7 0 9 4 -1. + + <_> + 10 0 3 4 3. + + + + <_> + + <_> + 7 6 6 5 -1. + + <_> + 10 6 3 5 2. + + + + <_> + + <_> + 2 7 18 6 -1. + + <_> + 8 9 6 2 9. + + + + <_> + + <_> + 11 4 10 3 -1. + + <_> + 10 5 10 1 3. + + + 1 + + <_> + + <_> + 13 14 8 4 -1. + + <_> + 13 16 8 2 2. + + + + <_> + + <_> + 1 14 8 4 -1. + + <_> + 1 16 8 2 2. + + + + <_> + + <_> + 11 4 3 10 -1. + + <_> + 12 5 1 10 3. + + + 1 + + <_> + + <_> + 11 4 10 3 -1. + + <_> + 10 5 10 1 3. + + + 1 + + <_> + + <_> + 2 12 18 6 -1. + + <_> + 11 12 9 3 2. + + <_> + 2 15 9 3 2. + + + + <_> + + <_> + 5 2 8 6 -1. + + <_> + 5 2 4 3 2. + + <_> + 9 5 4 3 2. + + + + <_> + + <_> + 8 14 6 4 -1. + + <_> + 8 16 6 2 2. + + + + <_> + + <_> + 1 10 6 8 -1. + + <_> + 1 10 3 4 2. + + <_> + 4 14 3 4 2. + + + + <_> + + <_> + 7 2 15 9 -1. + + <_> + 12 5 5 3 9. + + + + <_> + + <_> + 0 2 15 9 -1. + + <_> + 5 5 5 3 9. + + + + <_> + + <_> + 10 5 6 7 -1. + + <_> + 12 5 2 7 3. + + + + <_> + + <_> + 5 14 12 4 -1. + + <_> + 5 14 6 2 2. + + <_> + 11 16 6 2 2. + + + + <_> + + <_> + 10 1 12 3 -1. + + <_> + 10 2 12 1 3. + + + + <_> + + <_> + 8 1 3 12 -1. + + <_> + 9 1 1 12 3. + + + + <_> + + <_> + 14 2 6 7 -1. + + <_> + 14 2 3 7 2. + + + + <_> + + <_> + 1 0 12 9 -1. + + <_> + 5 3 4 3 9. + + + + <_> + + <_> + 8 3 7 6 -1. + + <_> + 8 6 7 3 2. + + + + <_> + + <_> + 1 12 20 3 -1. + + <_> + 6 12 10 3 2. + + + + <_> + + <_> + 5 2 12 16 -1. + + <_> + 5 6 12 8 2. + + + + <_> + + <_> + 4 3 7 6 -1. + + <_> + 4 6 7 3 2. + + + + <_> + + <_> + 9 5 6 6 -1. + + <_> + 11 5 2 6 3. + + + + <_> + + <_> + 7 0 8 2 -1. + + <_> + 7 0 8 1 2. + + + 1 + + <_> + + <_> + 5 14 12 2 -1. + + <_> + 5 15 12 1 2. + + + + <_> + + <_> + 3 11 16 6 -1. + + <_> + 3 13 16 2 3. + + + + <_> + + <_> + 11 5 3 8 -1. + + <_> + 11 5 3 4 2. + + + 1 + + <_> + + <_> + 2 15 12 3 -1. + + <_> + 8 15 6 3 2. + + + + <_> + + <_> + 4 13 15 3 -1. + + <_> + 9 13 5 3 3. + + + + <_> + + <_> + 2 3 12 4 -1. + + <_> + 2 3 6 2 2. + + <_> + 8 5 6 2 2. + + + + <_> + + <_> + 17 5 4 7 -1. + + <_> + 17 5 2 7 2. + + + 1 + + <_> + + <_> + 5 4 7 4 -1. + + <_> + 5 4 7 2 2. + + + 1 + + <_> + + <_> + 2 2 18 3 -1. + + <_> + 8 2 6 3 3. + + + + <_> + + <_> + 2 2 18 9 -1. + + <_> + 8 5 6 3 9. + + + + <_> + + <_> + 15 6 6 4 -1. + + <_> + 15 6 3 4 2. + + + + <_> + + <_> + 0 1 12 3 -1. + + <_> + 0 2 12 1 3. + + + + <_> + + <_> + 16 2 6 4 -1. + + <_> + 16 2 6 2 2. + + + 1 + + <_> + + <_> + 0 9 14 6 -1. + + <_> + 7 9 7 6 2. + + + + <_> + + <_> + 13 5 8 4 -1. + + <_> + 13 5 4 4 2. + + + 1 + + <_> + + <_> + 9 5 4 8 -1. + + <_> + 9 5 4 4 2. + + + 1 + + <_> + + <_> + 12 4 3 14 -1. + + <_> + 12 11 3 7 2. + + + + <_> + + <_> + 1 13 20 5 -1. + + <_> + 6 13 10 5 2. + + + + <_> + + <_> + 12 4 3 14 -1. + + <_> + 12 11 3 7 2. + + + + <_> + + <_> + 7 4 3 14 -1. + + <_> + 7 11 3 7 2. + + + + <_> + + <_> + 16 2 6 4 -1. + + <_> + 16 2 6 2 2. + + + 1 + + <_> + + <_> + 6 2 4 6 -1. + + <_> + 6 2 2 6 2. + + + 1 + + <_> + + <_> + 7 4 15 14 -1. + + <_> + 7 11 15 7 2. + + + + <_> + + <_> + 1 16 16 2 -1. + + <_> + 1 17 16 1 2. + + + + <_> + + <_> + 0 6 12 4 -1. + + <_> + 3 6 6 4 2. + + + + <_> + + <_> + 6 9 10 9 -1. + + <_> + 6 12 10 3 3. + + + + <_> + + <_> + 0 6 6 5 -1. + + <_> + 3 6 3 5 2. + + + + <_> + + <_> + 11 14 7 4 -1. + + <_> + 11 16 7 2 2. + + + + <_> + + <_> + 7 8 8 2 -1. + + <_> + 7 8 8 1 2. + + + 1 + + <_> + + <_> + 10 13 7 4 -1. + + <_> + 10 15 7 2 2. + + + + <_> + + <_> + 1 16 20 2 -1. + + <_> + 11 16 10 2 2. + + + + <_> + + <_> + 5 12 14 4 -1. + + <_> + 5 12 7 4 2. + + + + <_> + + <_> + 8 8 4 6 -1. + + <_> + 8 8 2 6 2. + + + 1 + + <_> + + <_> + 17 2 2 14 -1. + + <_> + 17 2 2 7 2. + + + 1 + + <_> + + <_> + 7 1 8 4 -1. + + <_> + 11 1 4 4 2. + + + + <_> + + <_> + 5 7 12 3 -1. + + <_> + 9 7 4 3 3. + + + + <_> + + <_> + 2 14 6 4 -1. + + <_> + 5 14 3 4 2. + + + + <_> + + <_> + 10 9 12 4 -1. + + <_> + 16 9 6 2 2. + + <_> + 10 11 6 2 2. + + + + <_> + + <_> + 6 14 9 4 -1. + + <_> + 9 14 3 4 3. + + + + <_> + + <_> + 11 9 2 6 -1. + + <_> + 11 9 1 6 2. + + + 1 + + <_> + + <_> + 3 9 14 9 -1. + + <_> + 3 12 14 3 3. + + + + <_> + + <_> + 5 10 16 6 -1. + + <_> + 5 12 16 2 3. + + + + <_> + + <_> + 5 12 10 6 -1. + + <_> + 5 12 5 3 2. + + <_> + 10 15 5 3 2. + + + + <_> + + <_> + 4 13 18 5 -1. + + <_> + 4 13 9 5 2. + + + + <_> + + <_> + 0 13 18 5 -1. + + <_> + 9 13 9 5 2. + + + + <_> + + <_> + 4 9 16 3 -1. + + <_> + 4 10 16 1 3. + + + + <_> + + <_> + 5 1 15 2 -1. + + <_> + 5 1 15 1 2. + + + 1 + + <_> + + <_> + 13 5 2 9 -1. + + <_> + 13 5 1 9 2. + + + 1 + + <_> + + <_> + 9 5 9 2 -1. + + <_> + 9 5 9 1 2. + + + 1 + + <_> + + <_> + 1 11 20 5 -1. + + <_> + 6 11 10 5 2. + + + + <_> + + <_> + 3 9 13 3 -1. + + <_> + 3 10 13 1 3. + + + + <_> + + <_> + 18 5 4 12 -1. + + <_> + 20 5 2 6 2. + + <_> + 18 11 2 6 2. + + + + <_> + + <_> + 4 12 5 6 -1. + + <_> + 4 15 5 3 2. + + + + <_> + + <_> + 15 1 2 8 -1. + + <_> + 15 1 1 8 2. + + + 1 + + <_> + + <_> + 7 1 8 2 -1. + + <_> + 7 1 8 1 2. + + + 1 + + <_> + + <_> + 18 5 4 12 -1. + + <_> + 20 5 2 6 2. + + <_> + 18 11 2 6 2. + + + + <_> + + <_> + 10 4 10 2 -1. + + <_> + 10 4 10 1 2. + + + 1 + + <_> + + <_> + 2 4 20 4 -1. + + <_> + 7 4 10 4 2. + + + + <_> + + <_> + 1 9 8 3 -1. + + <_> + 5 9 4 3 2. + + + + <_> + + <_> + 18 5 4 12 -1. + + <_> + 20 5 2 6 2. + + <_> + 18 11 2 6 2. + + + + <_> + + <_> + 0 5 4 12 -1. + + <_> + 0 5 2 6 2. + + <_> + 2 11 2 6 2. + + + + <_> + + <_> + 6 0 14 18 -1. + + <_> + 6 9 14 9 2. + + + + <_> + + <_> + 4 4 12 3 -1. + + <_> + 4 5 12 1 3. + + + + <_> + + <_> + 8 4 14 3 -1. + + <_> + 8 5 14 1 3. + + + + <_> + + <_> + 4 13 14 3 -1. + + <_> + 4 14 14 1 3. + + + + <_> + + <_> + 8 2 6 14 -1. + + <_> + 11 2 3 7 2. + + <_> + 8 9 3 7 2. + + + + <_> + + <_> + 0 13 15 4 -1. + + <_> + 0 14 15 2 2. + + + + <_> + + <_> + 11 14 7 4 -1. + + <_> + 11 16 7 2 2. + + + + <_> + + <_> + 11 7 7 3 -1. + + <_> + 10 8 7 1 3. + + + 1 + + <_> + + <_> + 10 6 6 6 -1. + + <_> + 10 9 6 3 2. + + + + <_> + + <_> + 2 0 4 14 -1. + + <_> + 2 0 2 7 2. + + <_> + 4 7 2 7 2. + + + + <_> + + <_> + 2 6 18 5 -1. + + <_> + 8 6 6 5 3. + + + + <_> + + <_> + 2 0 18 18 -1. + + <_> + 8 0 6 18 3. + + + + <_> + + <_> + 13 1 4 8 -1. + + <_> + 14 2 2 8 2. + + + 1 + + <_> + + <_> + 4 0 12 18 -1. + + <_> + 4 0 6 9 2. + + <_> + 10 9 6 9 2. + + + + <_> + + <_> + 12 14 6 4 -1. + + <_> + 12 16 6 2 2. + + + + <_> + + <_> + 4 14 6 4 -1. + + <_> + 4 16 6 2 2. + + + + <_> + + <_> + 11 8 2 6 -1. + + <_> + 11 8 1 6 2. + + + 1 + + <_> + + <_> + 1 10 20 6 -1. + + <_> + 1 10 10 3 2. + + <_> + 11 13 10 3 2. + + + + <_> + + <_> + 13 1 7 9 -1. + + <_> + 10 4 7 3 3. + + + 1 + + <_> + + <_> + 5 3 4 6 -1. + + <_> + 5 6 4 3 2. + + + + <_> + + <_> + 13 0 2 12 -1. + + <_> + 13 6 2 6 2. + + + + <_> + + <_> + 7 11 8 3 -1. + + <_> + 11 11 4 3 2. + + + + <_> + + <_> + 9 6 12 11 -1. + + <_> + 12 6 6 11 2. + + + + <_> + + <_> + 6 8 10 9 -1. + + <_> + 11 8 5 9 2. + + + + <_> + + <_> + 11 14 6 4 -1. + + <_> + 11 14 3 4 2. + + + + <_> + + <_> + 3 6 12 4 -1. + + <_> + 7 6 4 4 3. + + + + <_> + + <_> + 10 5 6 7 -1. + + <_> + 12 5 2 7 3. + + + + <_> + + <_> + 8 0 6 4 -1. + + <_> + 11 0 3 4 2. + + + + <_> + + <_> + 10 6 6 12 -1. + + <_> + 12 6 2 12 3. + + + + <_> + + <_> + 6 6 6 12 -1. + + <_> + 8 6 2 12 3. + + + + <_> + + <_> + 6 9 9 6 -1. + + <_> + 6 12 9 3 2. + + + + <_> + + <_> + 14 6 6 6 -1. + + <_> + 14 6 6 3 2. + + + 1 + + <_> + + <_> + 1 13 20 5 -1. + + <_> + 6 13 10 5 2. + + + + <_> + + <_> + 8 14 6 4 -1. + + <_> + 8 16 6 2 2. + + + + <_> + + <_> + 4 7 8 3 -1. + + <_> + 4 7 4 3 2. + + + 1 + + <_> + + <_> + 16 0 2 15 -1. + + <_> + 16 0 1 15 2. + + + 1 + + <_> + + <_> + 9 3 12 2 -1. + + <_> + 9 3 12 1 2. + + + 1 + + <_> + + <_> + 7 1 8 6 -1. + + <_> + 9 1 4 6 2. + + + + <_> + + <_> + 6 15 8 3 -1. + + <_> + 10 15 4 3 2. + + + + <_> + + <_> + 8 3 6 6 -1. + + <_> + 10 3 2 6 3. + + + + <_> + + <_> + 1 1 16 3 -1. + + <_> + 1 2 16 1 3. + + + + <_> + + <_> + 9 1 12 3 -1. + + <_> + 9 2 12 1 3. + + + + <_> + + <_> + 0 0 22 6 -1. + + <_> + 0 0 11 3 2. + + <_> + 11 3 11 3 2. + + + + <_> + + <_> + 10 5 4 6 -1. + + <_> + 10 5 2 6 2. + + + + <_> + + <_> + 10 0 8 5 -1. + + <_> + 10 0 4 5 2. + + + 1 + + <_> + + <_> + 12 4 4 10 -1. + + <_> + 13 5 2 10 2. + + + 1 + + <_> + + <_> + 10 4 10 4 -1. + + <_> + 9 5 10 2 2. + + + 1 + + <_> + + <_> + 15 1 2 8 -1. + + <_> + 15 1 1 8 2. + + + 1 + + <_> + + <_> + 7 1 8 2 -1. + + <_> + 7 1 8 1 2. + + + 1 + + <_> + + <_> + 17 0 3 11 -1. + + <_> + 18 1 1 11 3. + + + 1 + + <_> + + <_> + 9 8 4 6 -1. + + <_> + 9 8 4 3 2. + + + 1 + + <_> + + <_> + 14 6 6 12 -1. + + <_> + 17 6 3 6 2. + + <_> + 14 12 3 6 2. + + + + <_> + + <_> + 2 12 18 6 -1. + + <_> + 8 14 6 2 9. + + + + <_> + + <_> + 14 7 3 10 -1. + + <_> + 14 12 3 5 2. + + + + <_> + + <_> + 3 8 16 10 -1. + + <_> + 3 8 8 5 2. + + <_> + 11 13 8 5 2. + + + + <_> + + <_> + 15 12 4 6 -1. + + <_> + 15 15 4 3 2. + + + + <_> + + <_> + 2 8 18 10 -1. + + <_> + 2 8 9 5 2. + + <_> + 11 13 9 5 2. + + + + <_> + + <_> + 10 1 12 3 -1. + + <_> + 10 2 12 1 3. + + + + <_> + + <_> + 1 1 12 3 -1. + + <_> + 1 2 12 1 3. + + + + <_> + + <_> + 8 0 14 4 -1. + + <_> + 15 0 7 2 2. + + <_> + 8 2 7 2 2. + + + + <_> + + <_> + 2 4 14 4 -1. + + <_> + 2 5 14 2 2. + + + + <_> + + <_> + 8 4 12 3 -1. + + <_> + 8 5 12 1 3. + + + + <_> + + <_> + 1 0 8 8 -1. + + <_> + 1 0 4 4 2. + + <_> + 5 4 4 4 2. + + + + <_> + + <_> + 13 0 8 6 -1. + + <_> + 17 0 4 3 2. + + <_> + 13 3 4 3 2. + + + + <_> + + <_> + 1 0 8 6 -1. + + <_> + 1 0 4 3 2. + + <_> + 5 3 4 3 2. + + + + <_> + + <_> + 9 6 6 5 -1. + + <_> + 9 6 3 5 2. + + + + <_> + + <_> + 5 6 8 3 -1. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 13 3 6 9 -1. + + <_> + 10 6 6 3 3. + + + 1 + + <_> + + <_> + 9 3 9 6 -1. + + <_> + 12 6 3 6 3. + + + 1 + + <_> + + <_> + 4 11 18 3 -1. + + <_> + 4 12 18 1 3. + + + + <_> + + <_> + 0 13 15 4 -1. + + <_> + 5 13 5 4 3. + + + + <_> + + <_> + 15 12 4 6 -1. + + <_> + 15 15 4 3 2. + + + + <_> + + <_> + 3 12 4 6 -1. + + <_> + 3 15 4 3 2. + + + + <_> + + <_> + 9 12 6 6 -1. + + <_> + 11 12 2 6 3. + + + + <_> + + <_> + 6 9 9 7 -1. + + <_> + 9 9 3 7 3. + + + + <_> + + <_> + 13 10 6 8 -1. + + <_> + 16 10 3 4 2. + + <_> + 13 14 3 4 2. + + + + <_> + + <_> + 3 10 6 8 -1. + + <_> + 3 10 3 4 2. + + <_> + 6 14 3 4 2. + + + + <_> + + <_> + 7 10 8 4 -1. + + <_> + 7 10 4 4 2. + + + + <_> + + <_> + 7 5 6 11 -1. + + <_> + 10 5 3 11 2. + + + + <_> + + <_> + 10 6 6 6 -1. + + <_> + 10 9 6 3 2. + + + + <_> + + <_> + 6 6 6 6 -1. + + <_> + 6 9 6 3 2. + + + + <_> + + <_> + 8 6 12 8 -1. + + <_> + 12 6 4 8 3. + + + + <_> + + <_> + 2 11 12 3 -1. + + <_> + 6 11 4 3 3. + + + + <_> + + <_> + 14 3 6 8 -1. + + <_> + 17 3 3 4 2. + + <_> + 14 7 3 4 2. + + + + <_> + + <_> + 0 5 13 3 -1. + + <_> + 0 6 13 1 3. + + + + <_> + + <_> + 14 0 6 6 -1. + + <_> + 14 2 6 2 3. + + + + <_> + + <_> + 3 0 6 6 -1. + + <_> + 3 2 6 2 3. + + + + <_> + + <_> + 8 8 14 3 -1. + + <_> + 8 9 14 1 3. + + + + <_> + + <_> + 7 2 2 15 -1. + + <_> + 8 2 1 15 2. + + + + <_> + + <_> + 4 14 16 4 -1. + + <_> + 4 14 8 4 2. + + + + <_> + + <_> + 1 6 20 12 -1. + + <_> + 6 6 10 12 2. + + + + <_> + + <_> + 5 10 16 6 -1. + + <_> + 13 10 8 3 2. + + <_> + 5 13 8 3 2. + + + + <_> + + <_> + 1 10 16 6 -1. + + <_> + 1 10 8 3 2. + + <_> + 9 13 8 3 2. + + + + <_> + + <_> + 8 8 14 6 -1. + + <_> + 8 8 7 6 2. + + + + <_> + + <_> + 0 8 14 6 -1. + + <_> + 7 8 7 6 2. + + + + <_> + + <_> + 5 6 12 11 -1. + + <_> + 8 6 6 11 2. + + + + <_> + + <_> + 1 3 8 6 -1. + + <_> + 1 3 4 3 2. + + <_> + 5 6 4 3 2. + + + + <_> + + <_> + 13 1 7 6 -1. + + <_> + 13 1 7 3 2. + + + 1 + + <_> + + <_> + 1 4 5 10 -1. + + <_> + 1 9 5 5 2. + + + + <_> + + <_> + 18 6 3 8 -1. + + <_> + 18 10 3 4 2. + + + + <_> + + <_> + 1 6 3 8 -1. + + <_> + 1 10 3 4 2. + + + + <_> + + <_> + 8 5 13 3 -1. + + <_> + 8 6 13 1 3. + + + + <_> + + <_> + 1 5 13 3 -1. + + <_> + 1 6 13 1 3. + + + + <_> + + <_> + 18 0 3 12 -1. + + <_> + 19 0 1 12 3. + + + + <_> + + <_> + 1 0 3 12 -1. + + <_> + 2 0 1 12 3. + + + + <_> + + <_> + 4 2 18 2 -1. + + <_> + 4 2 9 2 2. + + + + <_> + + <_> + 6 3 6 6 -1. + + <_> + 9 3 3 6 2. + + + + <_> + + <_> + 9 5 12 11 -1. + + <_> + 12 5 6 11 2. + + + + <_> + + <_> + 1 5 12 11 -1. + + <_> + 4 5 6 11 2. + + + + <_> + + <_> + 8 4 8 8 -1. + + <_> + 8 4 4 8 2. + + + + <_> + + <_> + 0 8 22 4 -1. + + <_> + 0 8 11 2 2. + + <_> + 11 10 11 2 2. + + + + <_> + + <_> + 8 6 8 4 -1. + + <_> + 8 6 4 4 2. + + + + <_> + + <_> + 6 3 8 8 -1. + + <_> + 10 3 4 8 2. + + + + <_> + + <_> + 3 6 16 4 -1. + + <_> + 11 6 8 2 2. + + <_> + 3 8 8 2 2. + + + + <_> + + <_> + 2 14 16 4 -1. + + <_> + 10 14 8 4 2. + + + + <_> + + <_> + 11 13 6 5 -1. + + <_> + 11 13 3 5 2. + + + + <_> + + <_> + 5 13 6 5 -1. + + <_> + 8 13 3 5 2. + + + + <_> + + <_> + 12 2 2 7 -1. + + <_> + 12 2 1 7 2. + + + 1 + + <_> + + <_> + 0 9 21 9 -1. + + <_> + 7 12 7 3 9. + + + + <_> + + <_> + 5 3 12 9 -1. + + <_> + 9 6 4 3 9. + + + + <_> + + <_> + 3 9 16 8 -1. + + <_> + 3 9 8 4 2. + + <_> + 11 13 8 4 2. + + + + <_> + + <_> + 7 0 14 18 -1. + + <_> + 7 0 7 18 2. + + + + <_> + + <_> + 5 8 6 4 -1. + + <_> + 5 8 3 4 2. + + + 1 + + <_> + + <_> + 3 11 16 4 -1. + + <_> + 11 11 8 2 2. + + <_> + 3 13 8 2 2. + + + + <_> + + <_> + 6 9 6 8 -1. + + <_> + 6 9 3 4 2. + + <_> + 9 13 3 4 2. + + + + <_> + + <_> + 7 0 14 18 -1. + + <_> + 7 0 7 18 2. + + + + <_> + + <_> + 1 0 14 18 -1. + + <_> + 8 0 7 18 2. + + + + <_> + + <_> + 13 14 8 3 -1. + + <_> + 13 14 4 3 2. + + + + <_> + + <_> + 8 4 6 4 -1. + + <_> + 8 6 6 2 2. + + + + <_> + + <_> + 6 6 14 4 -1. + + <_> + 13 6 7 2 2. + + <_> + 6 8 7 2 2. + + + + <_> + + <_> + 7 3 11 4 -1. + + <_> + 6 4 11 2 2. + + + 1 + + <_> + + <_> + 7 0 12 4 -1. + + <_> + 13 0 6 2 2. + + <_> + 7 2 6 2 2. + + + + <_> + + <_> + 4 0 14 4 -1. + + <_> + 4 0 7 2 2. + + <_> + 11 2 7 2 2. + + + + <_> + + <_> + 15 8 6 9 -1. + + <_> + 17 8 2 9 3. + + + + <_> + + <_> + 1 8 6 9 -1. + + <_> + 3 8 2 9 3. + + + + <_> + + <_> + 12 5 5 9 -1. + + <_> + 12 8 5 3 3. + + + + <_> + + <_> + 5 5 5 9 -1. + + <_> + 5 8 5 3 3. + + + + <_> + + <_> + 17 9 4 6 -1. + + <_> + 17 9 2 6 2. + + + + <_> + + <_> + 1 9 4 6 -1. + + <_> + 3 9 2 6 2. + + + + <_> + + <_> + 4 3 14 3 -1. + + <_> + 4 4 14 1 3. + + + + <_> + + <_> + 6 0 10 3 -1. + + <_> + 5 1 10 1 3. + + + 1 + + <_> + + <_> + 10 4 11 14 -1. + + <_> + 10 11 11 7 2. + + + + <_> + + <_> + 2 5 6 6 -1. + + <_> + 2 7 6 2 3. + + + + <_> + + <_> + 12 2 5 12 -1. + + <_> + 12 6 5 4 3. + + + + <_> + + <_> + 5 16 12 2 -1. + + <_> + 5 17 12 1 2. + + + + <_> + + <_> + 3 4 18 3 -1. + + <_> + 3 5 18 1 3. + + + + <_> + + <_> + 1 4 11 14 -1. + + <_> + 1 11 11 7 2. + + + + <_> + + <_> + 8 12 11 4 -1. + + <_> + 8 14 11 2 2. + + + + <_> + + <_> + 7 11 8 7 -1. + + <_> + 11 11 4 7 2. + + + + <_> + + <_> + 12 2 4 11 -1. + + <_> + 12 2 2 11 2. + + + 1 + + <_> + + <_> + 10 4 11 2 -1. + + <_> + 10 4 11 1 2. + + + 1 + + <_> + + <_> + 16 0 2 14 -1. + + <_> + 16 0 1 14 2. + + + 1 + + <_> + + <_> + 6 0 14 2 -1. + + <_> + 6 0 14 1 2. + + + 1 + + <_> + + <_> + 19 4 2 12 -1. + + <_> + 19 4 1 12 2. + + + 1 + + <_> + + <_> + 8 2 6 10 -1. + + <_> + 8 7 6 5 2. + + + + <_> + + <_> + 19 4 2 12 -1. + + <_> + 19 4 1 12 2. + + + 1 + + <_> + + <_> + 11 3 6 8 -1. + + <_> + 11 3 6 4 2. + + + 1 + + <_> + + <_> + 11 2 10 6 -1. + + <_> + 11 2 5 6 2. + + + 1 + + <_> + + <_> + 3 5 13 2 -1. + + <_> + 3 6 13 1 2. + + + + <_> + + <_> + 5 4 12 6 -1. + + <_> + 5 6 12 2 3. + + + + <_> + + <_> + 6 9 9 9 -1. + + <_> + 9 9 3 9 3. + + + + <_> + + <_> + 19 1 3 12 -1. + + <_> + 20 2 1 12 3. + + + 1 + + <_> + + <_> + 2 13 9 5 -1. + + <_> + 5 13 3 5 3. + + + + <_> + + <_> + 11 2 10 6 -1. + + <_> + 11 2 5 6 2. + + + 1 + + <_> + + <_> + 11 2 6 10 -1. + + <_> + 11 2 6 5 2. + + + 1 + + <_> + + <_> + 1 6 21 3 -1. + + <_> + 8 6 7 3 3. + + + + <_> + + <_> + 5 5 3 8 -1. + + <_> + 5 9 3 4 2. + + + + <_> + + <_> + 10 5 7 6 -1. + + <_> + 10 7 7 2 3. + + + + <_> + + <_> + 10 0 7 6 -1. + + <_> + 8 2 7 2 3. + + + 1 + + <_> + + <_> + 13 5 6 6 -1. + + <_> + 13 7 6 2 3. + + + + <_> + + <_> + 5 5 7 6 -1. + + <_> + 5 7 7 2 3. + + + + <_> + + <_> + 9 1 6 8 -1. + + <_> + 12 1 3 4 2. + + <_> + 9 5 3 4 2. + + + + <_> + + <_> + 7 1 6 8 -1. + + <_> + 7 1 3 4 2. + + <_> + 10 5 3 4 2. + + + + <_> + + <_> + 7 0 9 4 -1. + + <_> + 10 0 3 4 3. + + + + <_> + + <_> + 1 9 14 3 -1. + + <_> + 1 10 14 1 3. + + + + <_> + + <_> + 5 9 15 3 -1. + + <_> + 5 10 15 1 3. + + + + <_> + + <_> + 3 1 12 3 -1. + + <_> + 2 2 12 1 3. + + + 1 + + <_> + + <_> + 5 12 12 6 -1. + + <_> + 11 12 6 3 2. + + <_> + 5 15 6 3 2. + + + + <_> + + <_> + 5 12 12 4 -1. + + <_> + 5 12 6 2 2. + + <_> + 11 14 6 2 2. + + + + <_> + + <_> + 15 4 3 9 -1. + + <_> + 16 5 1 9 3. + + + 1 + + <_> + + <_> + 7 4 9 3 -1. + + <_> + 6 5 9 1 3. + + + 1 + + <_> + + <_> + 13 3 7 4 -1. + + <_> + 13 5 7 2 2. + + + + <_> + + <_> + 4 0 9 5 -1. + + <_> + 7 0 3 5 3. + + + + <_> + + <_> + 10 6 6 6 -1. + + <_> + 12 6 2 6 3. + + + + <_> + + <_> + 0 6 12 4 -1. + + <_> + 0 6 6 2 2. + + <_> + 6 8 6 2 2. + + + + <_> + + <_> + 10 11 9 6 -1. + + <_> + 13 11 3 6 3. + + + + <_> + + <_> + 2 6 16 8 -1. + + <_> + 2 10 16 4 2. + + + + <_> + + <_> + 17 0 2 10 -1. + + <_> + 17 0 1 10 2. + + + 1 + + <_> + + <_> + 5 0 10 2 -1. + + <_> + 5 0 10 1 2. + + + 1 + + <_> + + <_> + 9 11 13 3 -1. + + <_> + 9 12 13 1 3. + + + + <_> + + <_> + 0 11 13 3 -1. + + <_> + 0 12 13 1 3. + + + + <_> + + <_> + 18 6 4 12 -1. + + <_> + 18 9 4 6 2. + + + + <_> + + <_> + 6 4 9 7 -1. + + <_> + 9 4 3 7 3. + + + + <_> + + <_> + 11 9 6 7 -1. + + <_> + 13 9 2 7 3. + + + + <_> + + <_> + 5 9 6 7 -1. + + <_> + 7 9 2 7 3. + + + + <_> + + <_> + 1 13 20 5 -1. + + <_> + 6 13 10 5 2. + + + + <_> + + <_> + 7 9 8 6 -1. + + <_> + 9 9 4 6 2. + + + + <_> + + <_> + 5 5 12 4 -1. + + <_> + 8 5 6 4 2. + + + + <_> + + <_> + 1 11 20 6 -1. + + <_> + 6 11 10 6 2. + + + + <_> + + <_> + 1 8 20 7 -1. + + <_> + 6 8 10 7 2. + + + + <_> + + <_> + 2 9 18 6 -1. + + <_> + 8 11 6 2 9. + + + + <_> + + <_> + 8 13 9 4 -1. + + <_> + 8 15 9 2 2. + + + + <_> + + <_> + 1 12 9 6 -1. + + <_> + 1 15 9 3 2. + + + + <_> + + <_> + 9 2 8 6 -1. + + <_> + 13 2 4 3 2. + + <_> + 9 5 4 3 2. + + + + <_> + + <_> + 0 5 22 5 -1. + + <_> + 11 5 11 5 2. + + + + <_> + + <_> + 2 0 18 18 -1. + + <_> + 2 9 18 9 2. + + + + <_> + + <_> + 6 7 3 8 -1. + + <_> + 6 11 3 4 2. + + + + <_> + + <_> + 11 12 8 6 -1. + + <_> + 13 12 4 6 2. + + + + <_> + + <_> + 3 8 6 8 -1. + + <_> + 3 8 3 4 2. + + <_> + 6 12 3 4 2. + + + + <_> + + <_> + 11 6 7 4 -1. + + <_> + 11 8 7 2 2. + + + + <_> + + <_> + 9 2 4 6 -1. + + <_> + 11 2 2 6 2. + + + + <_> + + <_> + 3 14 16 4 -1. + + <_> + 11 14 8 2 2. + + <_> + 3 16 8 2 2. + + + + <_> + + <_> + 5 14 6 4 -1. + + <_> + 5 16 6 2 2. + + + + <_> + + <_> + 9 5 4 6 -1. + + <_> + 9 5 2 6 2. + + + + <_> + + <_> + 5 12 12 6 -1. + + <_> + 8 12 6 6 2. + + + + <_> + + <_> + 7 14 8 4 -1. + + <_> + 7 16 8 2 2. + + + + <_> + + <_> + 1 3 18 3 -1. + + <_> + 1 4 18 1 3. + + + + <_> + + <_> + 8 3 14 3 -1. + + <_> + 8 4 14 1 3. + + + + <_> + + <_> + 1 0 14 4 -1. + + <_> + 1 0 7 2 2. + + <_> + 8 2 7 2 2. + + + + <_> + + <_> + 10 10 12 3 -1. + + <_> + 10 11 12 1 3. + + + + <_> + + <_> + 1 10 12 3 -1. + + <_> + 1 11 12 1 3. + + + + <_> + + <_> + 10 7 8 3 -1. + + <_> + 10 7 4 3 2. + + + + <_> + + <_> + 11 0 6 6 -1. + + <_> + 9 2 6 2 3. + + + 1 + + <_> + + <_> + 17 0 2 10 -1. + + <_> + 17 0 1 10 2. + + + 1 + + <_> + + <_> + 4 7 8 3 -1. + + <_> + 8 7 4 3 2. + + + + <_> + + <_> + 13 0 8 6 -1. + + <_> + 13 2 8 2 3. + + + + <_> + + <_> + 1 0 8 6 -1. + + <_> + 1 2 8 2 3. + + + + <_> + + <_> + 17 0 2 10 -1. + + <_> + 17 0 1 10 2. + + + 1 + + <_> + + <_> + 5 0 10 2 -1. + + <_> + 5 0 10 1 2. + + + 1 + + <_> + + <_> + 10 6 6 4 -1. + + <_> + 10 6 3 4 2. + + + + <_> + + <_> + 0 4 14 3 -1. + + <_> + 0 5 14 1 3. + + + + <_> + + <_> + 3 3 16 10 -1. + + <_> + 11 3 8 5 2. + + <_> + 3 8 8 5 2. + + + + <_> + + <_> + 1 5 12 3 -1. + + <_> + 1 6 12 1 3. + + + + <_> + + <_> + 9 6 13 4 -1. + + <_> + 9 8 13 2 2. + + + + <_> + + <_> + 7 5 8 6 -1. + + <_> + 7 5 4 3 2. + + <_> + 11 8 4 3 2. + + + + <_> + + <_> + 13 3 4 11 -1. + + <_> + 14 4 2 11 2. + + + 1 + + <_> + + <_> + 9 2 11 2 -1. + + <_> + 9 2 11 1 2. + + + 1 + + <_> + + <_> + 5 13 12 4 -1. + + <_> + 5 14 12 2 2. + + + + <_> + + <_> + 0 9 16 4 -1. + + <_> + 0 9 8 2 2. + + <_> + 8 11 8 2 2. + + + + <_> + + <_> + 7 10 9 7 -1. + + <_> + 10 10 3 7 3. + + + + <_> + + <_> + 10 7 5 6 -1. + + <_> + 10 7 5 3 2. + + + 1 + + <_> + + <_> + 11 5 10 3 -1. + + <_> + 11 5 5 3 2. + + + 1 + + <_> + + <_> + 2 13 12 5 -1. + + <_> + 5 13 6 5 2. + + + + <_> + + <_> + 17 9 4 7 -1. + + <_> + 17 9 2 7 2. + + + + <_> + + <_> + 0 6 12 3 -1. + + <_> + 0 7 12 1 3. + + + + <_> + + <_> + 18 6 2 10 -1. + + <_> + 18 6 1 10 2. + + + 1 + + <_> + + <_> + 1 14 8 3 -1. + + <_> + 5 14 4 3 2. + + + + <_> + + <_> + 6 11 12 3 -1. + + <_> + 10 11 4 3 3. + + + + <_> + + <_> + 0 14 8 3 -1. + + <_> + 4 14 4 3 2. + + + + <_> + + <_> + 5 11 16 3 -1. + + <_> + 9 11 8 3 2. + + + + <_> + + <_> + 1 9 4 7 -1. + + <_> + 3 9 2 7 2. + + + + <_> + + <_> + 6 12 10 6 -1. + + <_> + 6 14 10 2 3. + + + + <_> + + <_> + 0 16 12 2 -1. + + <_> + 0 17 12 1 2. + + + + <_> + + <_> + 12 5 4 12 -1. + + <_> + 14 5 2 6 2. + + <_> + 12 11 2 6 2. + + + + <_> + + <_> + 6 11 6 6 -1. + + <_> + 8 11 2 6 3. + + + + <_> + + <_> + 4 16 15 2 -1. + + <_> + 4 17 15 1 2. + + + + <_> + + <_> + 5 0 12 9 -1. + + <_> + 9 3 4 3 9. + + + + <_> + + <_> + 8 0 6 9 -1. + + <_> + 8 3 6 3 3. + + + + <_> + + <_> + 1 0 3 13 -1. + + <_> + 2 0 1 13 3. + + + + <_> + + <_> + 10 1 6 4 -1. + + <_> + 10 1 3 4 2. + + + + <_> + + <_> + 8 1 6 9 -1. + + <_> + 10 1 2 9 3. + + + + <_> + + <_> + 8 3 6 6 -1. + + <_> + 10 3 2 6 3. + + + + <_> + + <_> + 3 5 11 2 -1. + + <_> + 3 5 11 1 2. + + + 1 + + <_> + + <_> + 9 5 6 6 -1. + + <_> + 11 5 2 6 3. + + + + <_> + + <_> + 6 4 6 10 -1. + + <_> + 6 9 6 5 2. + + + + <_> + + <_> + 11 2 3 12 -1. + + <_> + 12 2 1 12 3. + + + + <_> + + <_> + 8 2 3 12 -1. + + <_> + 9 2 1 12 3. + + + + <_> + + <_> + 18 9 4 9 -1. + + <_> + 18 9 2 9 2. + + + + <_> + + <_> + 1 5 6 6 -1. + + <_> + 1 8 6 3 2. + + + + <_> + + <_> + 10 6 6 6 -1. + + <_> + 12 6 2 6 3. + + + + <_> + + <_> + 10 2 2 12 -1. + + <_> + 11 2 1 12 2. + + + + <_> + + <_> + 11 0 5 6 -1. + + <_> + 11 3 5 3 2. + + + + <_> + + <_> + 6 0 5 6 -1. + + <_> + 6 3 5 3 2. + + + + <_> + + <_> + 13 9 5 8 -1. + + <_> + 13 13 5 4 2. + + + + <_> + + <_> + 0 9 20 2 -1. + + <_> + 10 9 10 2 2. + + + + <_> + + <_> + 14 7 3 10 -1. + + <_> + 14 12 3 5 2. + + + + <_> + + <_> + 11 5 11 2 -1. + + <_> + 11 5 11 1 2. + + + 1 + + <_> + + <_> + 14 7 3 10 -1. + + <_> + 14 12 3 5 2. + + + + <_> + + <_> + 5 13 12 2 -1. + + <_> + 5 14 12 1 2. + + + + <_> + + <_> + 11 8 4 9 -1. + + <_> + 11 11 4 3 3. + + + + <_> + + <_> + 1 8 12 6 -1. + + <_> + 1 10 12 2 3. + + + + <_> + + <_> + 16 8 3 8 -1. + + <_> + 16 12 3 4 2. + + + + <_> + + <_> + 3 8 3 8 -1. + + <_> + 3 12 3 4 2. + + + + <_> + + <_> + 11 8 4 9 -1. + + <_> + 11 11 4 3 3. + + + + <_> + + <_> + 7 8 4 9 -1. + + <_> + 7 11 4 3 3. + + + + <_> + + <_> + 7 3 15 12 -1. + + <_> + 12 7 5 4 9. + + + + <_> + + <_> + 4 10 14 4 -1. + + <_> + 4 10 7 2 2. + + <_> + 11 12 7 2 2. + + + + <_> + + <_> + 9 10 10 6 -1. + + <_> + 14 10 5 3 2. + + <_> + 9 13 5 3 2. + + + + <_> + + <_> + 3 10 10 6 -1. + + <_> + 3 10 5 3 2. + + <_> + 8 13 5 3 2. + + + + <_> + + <_> + 16 7 6 6 -1. + + <_> + 18 7 2 6 3. + + + + <_> + + <_> + 3 5 14 2 -1. + + <_> + 10 5 7 2 2. + + + + <_> + + <_> + 18 2 4 12 -1. + + <_> + 20 2 2 6 2. + + <_> + 18 8 2 6 2. + + + + <_> + + <_> + 3 14 12 4 -1. + + <_> + 3 15 12 2 2. + + + + <_> + + <_> + 7 6 9 6 -1. + + <_> + 7 9 9 3 2. + + + + <_> + + <_> + 1 14 6 4 -1. + + <_> + 4 14 3 4 2. + + + + <_> + + <_> + 12 5 5 12 -1. + + <_> + 12 8 5 6 2. + + + + <_> + + <_> + 5 0 3 17 -1. + + <_> + 6 0 1 17 3. + + + + <_> + + <_> + 16 7 6 6 -1. + + <_> + 18 7 2 6 3. + + + + <_> + + <_> + 0 7 6 6 -1. + + <_> + 2 7 2 6 3. + + + + <_> + + <_> + 14 0 3 18 -1. + + <_> + 15 0 1 18 3. + + + + <_> + + <_> + 0 5 5 10 -1. + + <_> + 0 10 5 5 2. + + + + <_> + + <_> + 5 12 12 4 -1. + + <_> + 5 13 12 2 2. + + + + <_> + + <_> + 7 9 8 6 -1. + + <_> + 7 11 8 2 3. + + + + <_> + + <_> + 2 10 15 4 -1. + + <_> + 2 12 15 2 2. + + + + <_> + + <_> + 5 15 12 3 -1. + + <_> + 5 15 6 3 2. + + + + <_> + + <_> + 7 4 3 14 -1. + + <_> + 8 4 1 14 3. + + + + <_> + + <_> + 7 15 8 3 -1. + + <_> + 7 15 4 3 2. + + + + <_> + + <_> + 1 2 8 6 -1. + + <_> + 1 2 4 3 2. + + <_> + 5 5 4 3 2. + + + + <_> + + <_> + 14 9 6 8 -1. + + <_> + 17 9 3 4 2. + + <_> + 14 13 3 4 2. + + + + <_> + + <_> + 0 0 6 8 -1. + + <_> + 0 0 3 4 2. + + <_> + 3 4 3 4 2. + + + + <_> + + <_> + 14 9 6 8 -1. + + <_> + 17 9 3 4 2. + + <_> + 14 13 3 4 2. + + + + <_> + + <_> + 2 9 6 8 -1. + + <_> + 2 9 3 4 2. + + <_> + 5 13 3 4 2. + + + + <_> + + <_> + 14 10 6 8 -1. + + <_> + 17 10 3 4 2. + + <_> + 14 14 3 4 2. + + + + <_> + + <_> + 2 10 6 8 -1. + + <_> + 2 10 3 4 2. + + <_> + 5 14 3 4 2. + + + + <_> + + <_> + 13 1 6 8 -1. + + <_> + 16 1 3 4 2. + + <_> + 13 5 3 4 2. + + + + <_> + + <_> + 3 3 12 3 -1. + + <_> + 3 4 12 1 3. + + + + <_> + + <_> + 13 1 6 8 -1. + + <_> + 16 1 3 4 2. + + <_> + 13 5 3 4 2. + + + + <_> + + <_> + 3 1 6 8 -1. + + <_> + 3 1 3 4 2. + + <_> + 6 5 3 4 2. + + + + <_> + + <_> + 3 3 16 3 -1. + + <_> + 3 4 16 1 3. + + + + <_> + + <_> + 7 13 6 4 -1. + + <_> + 7 15 6 2 2. + + + + <_> + + <_> + 10 14 6 4 -1. + + <_> + 10 16 6 2 2. + + + + <_> + + <_> + 2 10 15 3 -1. + + <_> + 2 11 15 1 3. + + + + <_> + + <_> + 8 12 8 6 -1. + + <_> + 10 12 4 6 2. + + + + <_> + + <_> + 2 4 13 4 -1. + + <_> + 2 5 13 2 2. + + + + <_> + + <_> + 9 9 12 3 -1. + + <_> + 9 10 12 1 3. + + + + <_> + + <_> + 3 13 16 4 -1. + + <_> + 3 13 8 2 2. + + <_> + 11 15 8 2 2. + + + + <_> + + <_> + 8 12 8 6 -1. + + <_> + 10 12 4 6 2. + + + + <_> + + <_> + 6 12 8 6 -1. + + <_> + 8 12 4 6 2. + + + + <_> + + <_> + 9 4 13 2 -1. + + <_> + 9 5 13 1 2. + + + + <_> + + <_> + 7 3 8 12 -1. + + <_> + 7 9 8 6 2. + + + + <_> + + <_> + 3 6 17 3 -1. + + <_> + 3 7 17 1 3. + + + + <_> + + <_> + 3 0 14 4 -1. + + <_> + 3 0 7 2 2. + + <_> + 10 2 7 2 2. + + + + <_> + + <_> + 11 4 6 5 -1. + + <_> + 11 4 3 5 2. + + + 1 + + <_> + + <_> + 11 4 5 6 -1. + + <_> + 11 4 5 3 2. + + + 1 + + <_> + + <_> + 10 5 4 6 -1. + + <_> + 10 5 2 6 2. + + + + <_> + + <_> + 4 12 12 3 -1. + + <_> + 8 12 4 3 3. + + + + <_> + + <_> + 8 6 8 7 -1. + + <_> + 8 6 4 7 2. + + + + <_> + + <_> + 5 0 8 12 -1. + + <_> + 5 0 4 6 2. + + <_> + 9 6 4 6 2. + + + + <_> + + <_> + 7 0 12 4 -1. + + <_> + 13 0 6 2 2. + + <_> + 7 2 6 2 2. + + + + <_> + + <_> + 1 4 6 5 -1. + + <_> + 4 4 3 5 2. + + + + <_> + + <_> + 15 0 7 4 -1. + + <_> + 15 0 7 2 2. + + + 1 + + <_> + + <_> + 5 2 8 6 -1. + + <_> + 5 2 4 3 2. + + <_> + 9 5 4 3 2. + + + + <_> + + <_> + 4 2 15 3 -1. + + <_> + 4 3 15 1 3. + + + + <_> + + <_> + 4 1 14 3 -1. + + <_> + 4 2 14 1 3. + + + + <_> + + <_> + 15 5 4 6 -1. + + <_> + 15 8 4 3 2. + + + + <_> + + <_> + 0 1 17 2 -1. + + <_> + 0 2 17 1 2. + + + + <_> + + <_> + 15 5 4 6 -1. + + <_> + 15 8 4 3 2. + + + + <_> + + <_> + 3 5 4 6 -1. + + <_> + 3 8 4 3 2. + + + + <_> + + <_> + 3 0 18 3 -1. + + <_> + 3 1 18 1 3. + + + + <_> + + <_> + 7 1 6 4 -1. + + <_> + 10 1 3 4 2. + + + + <_> + + <_> + 0 11 22 7 -1. + + <_> + 0 11 11 7 2. + + + + <_> + + <_> + 3 5 4 12 -1. + + <_> + 3 5 2 6 2. + + <_> + 5 11 2 6 2. + + + + <_> + + <_> + 14 7 3 10 -1. + + <_> + 14 12 3 5 2. + + + + <_> + + <_> + 4 11 14 4 -1. + + <_> + 4 11 7 2 2. + + <_> + 11 13 7 2 2. + + + + <_> + + <_> + 7 11 8 6 -1. + + <_> + 11 11 4 3 2. + + <_> + 7 14 4 3 2. + + + + <_> + + <_> + 3 5 3 13 -1. + + <_> + 4 5 1 13 3. + + + + <_> + + <_> + 17 1 4 12 -1. + + <_> + 19 1 2 6 2. + + <_> + 17 7 2 6 2. + + + + <_> + + <_> + 1 1 4 12 -1. + + <_> + 1 1 2 6 2. + + <_> + 3 7 2 6 2. + + + + <_> + + <_> + 7 0 13 16 -1. + + <_> + 7 4 13 8 2. + + + + <_> + + <_> + 1 4 13 2 -1. + + <_> + 1 5 13 1 2. + + + + <_> + + <_> + 9 14 6 4 -1. + + <_> + 9 16 6 2 2. + + + + <_> + + <_> + 2 4 17 3 -1. + + <_> + 2 5 17 1 3. + + + + <_> + + <_> + 14 0 3 10 -1. + + <_> + 15 1 1 10 3. + + + 1 + + <_> + + <_> + 7 0 8 3 -1. + + <_> + 6 1 8 1 3. + + + 1 + + <_> + + <_> + 14 0 3 10 -1. + + <_> + 15 1 1 10 3. + + + 1 + + <_> + + <_> + 8 0 10 3 -1. + + <_> + 7 1 10 1 3. + + + 1 + + <_> + + <_> + 11 1 2 7 -1. + + <_> + 11 1 1 7 2. + + + 1 + + <_> + + <_> + 8 0 3 14 -1. + + <_> + 9 0 1 14 3. + + + + <_> + + <_> + 11 1 2 7 -1. + + <_> + 11 1 1 7 2. + + + 1 + + <_> + + <_> + 11 1 7 2 -1. + + <_> + 11 1 7 1 2. + + + 1 + + <_> + + <_> + 7 9 9 8 -1. + + <_> + 10 9 3 8 3. + + + + <_> + + <_> + 1 7 4 8 -1. + + <_> + 3 7 2 8 2. + + + + <_> + + <_> + 17 11 4 6 -1. + + <_> + 17 11 2 6 2. + + + + <_> + + <_> + 8 12 6 6 -1. + + <_> + 10 12 2 6 3. + + + + <_> + + <_> + 11 0 3 6 -1. + + <_> + 12 1 1 6 3. + + + 1 + + <_> + + <_> + 11 0 6 3 -1. + + <_> + 10 1 6 1 3. + + + 1 + + <_> + + <_> + 9 14 9 4 -1. + + <_> + 12 14 3 4 3. + + + + <_> + + <_> + 8 2 6 4 -1. + + <_> + 8 2 6 2 2. + + + 1 + + <_> + + <_> + 10 10 4 6 -1. + + <_> + 10 10 2 6 2. + + + + <_> + + <_> + 1 8 18 2 -1. + + <_> + 1 9 18 1 2. + + + + <_> + + <_> + 8 8 14 3 -1. + + <_> + 8 9 14 1 3. + + + + <_> + + <_> + 3 15 14 3 -1. + + <_> + 10 15 7 3 2. + + + + <_> + + <_> + 8 8 14 3 -1. + + <_> + 8 9 14 1 3. + + + + <_> + + <_> + 4 14 9 4 -1. + + <_> + 7 14 3 4 3. + + + + <_> + + <_> + 10 6 4 8 -1. + + <_> + 10 6 2 8 2. + + + 1 + + <_> + + <_> + 2 11 18 3 -1. + + <_> + 8 11 6 3 3. + + + + <_> + + <_> + 10 0 12 4 -1. + + <_> + 10 0 12 2 2. + + + 1 + + <_> + + <_> + 6 6 16 4 -1. + + <_> + 14 6 8 2 2. + + <_> + 6 8 8 2 2. + + + + <_> + + <_> + 6 3 4 14 -1. + + <_> + 7 3 2 14 2. + + + + <_> + + <_> + 12 12 6 6 -1. + + <_> + 14 12 2 6 3. + + + + <_> + + <_> + 4 12 6 6 -1. + + <_> + 6 12 2 6 3. + + + + <_> + + <_> + 14 8 3 8 -1. + + <_> + 14 12 3 4 2. + + + + <_> + + <_> + 0 6 16 4 -1. + + <_> + 0 6 8 2 2. + + <_> + 8 8 8 2 2. + + + + <_> + + <_> + 9 10 5 6 -1. + + <_> + 9 13 5 3 2. + + + + <_> + + <_> + 7 5 6 12 -1. + + <_> + 7 5 3 6 2. + + <_> + 10 11 3 6 2. + + + + <_> + + <_> + 1 5 21 9 -1. + + <_> + 8 8 7 3 9. + + + + <_> + + <_> + 8 6 3 12 -1. + + <_> + 9 6 1 12 3. + + + + <_> + + <_> + 11 3 3 11 -1. + + <_> + 12 4 1 11 3. + + + 1 + + <_> + + <_> + 11 5 9 3 -1. + + <_> + 10 6 9 1 3. + + + 1 + + <_> + + <_> + 12 11 6 6 -1. + + <_> + 12 13 6 2 3. + + + + <_> + + <_> + 0 1 9 9 -1. + + <_> + 3 1 3 9 3. + + + + <_> + + <_> + 6 0 12 12 -1. + + <_> + 9 0 6 12 2. + + + + <_> + + <_> + 7 14 6 4 -1. + + <_> + 10 14 3 4 2. + + + + <_> + + <_> + 8 7 13 3 -1. + + <_> + 8 8 13 1 3. + + + + <_> + + <_> + 2 13 12 4 -1. + + <_> + 5 13 6 4 2. + + + + <_> + + <_> + 15 3 2 13 -1. + + <_> + 15 3 1 13 2. + + + 1 + + <_> + + <_> + 9 5 11 2 -1. + + <_> + 9 5 11 1 2. + + + 1 + + <_> + + <_> + 13 2 2 16 -1. + + <_> + 13 10 2 8 2. + + + + <_> + + <_> + 7 2 2 16 -1. + + <_> + 7 10 2 8 2. + + + + <_> + + <_> + 14 0 7 6 -1. + + <_> + 12 2 7 2 3. + + + 1 + + <_> + + <_> + 7 3 6 12 -1. + + <_> + 7 3 3 6 2. + + <_> + 10 9 3 6 2. + + + + <_> + + <_> + 9 14 8 4 -1. + + <_> + 9 16 8 2 2. + + + + <_> + + <_> + 11 3 11 3 -1. + + <_> + 10 4 11 1 3. + + + 1 + + <_> + + <_> + 11 1 4 6 -1. + + <_> + 12 2 2 6 2. + + + 1 + + <_> + + <_> + 11 1 6 4 -1. + + <_> + 10 2 6 2 2. + + + 1 + + <_> + + <_> + 10 10 6 8 -1. + + <_> + 12 10 2 8 3. + + + + <_> + + <_> + 2 4 12 4 -1. + + <_> + 2 4 6 2 2. + + <_> + 8 6 6 2 2. + + + + <_> + + <_> + 14 1 3 10 -1. + + <_> + 15 2 1 10 3. + + + 1 + + <_> + + <_> + 0 7 22 7 -1. + + <_> + 11 7 11 7 2. + + + + <_> + + <_> + 8 2 14 3 -1. + + <_> + 8 3 14 1 3. + + + + <_> + + <_> + 0 2 14 3 -1. + + <_> + 0 3 14 1 3. + + + + <_> + + <_> + 14 1 3 10 -1. + + <_> + 15 2 1 10 3. + + + 1 + + <_> + + <_> + 8 1 10 3 -1. + + <_> + 7 2 10 1 3. + + + 1 + + <_> + + <_> + 12 3 3 10 -1. + + <_> + 13 4 1 10 3. + + + 1 + + <_> + + <_> + 11 4 10 3 -1. + + <_> + 10 5 10 1 3. + + + 1 + + <_> + + <_> + 12 1 7 6 -1. + + <_> + 12 3 7 2 3. + + + + <_> + + <_> + 0 3 14 3 -1. + + <_> + 0 4 14 1 3. + + + + <_> + + <_> + 8 0 12 4 -1. + + <_> + 14 0 6 2 2. + + <_> + 8 2 6 2 2. + + + + <_> + + <_> + 2 0 12 4 -1. + + <_> + 2 0 6 2 2. + + <_> + 8 2 6 2 2. + + + + <_> + + <_> + 8 4 12 3 -1. + + <_> + 8 5 12 1 3. + + + + <_> + + <_> + 0 1 14 2 -1. + + <_> + 7 1 7 2 2. + + + + <_> + + <_> + 5 0 15 11 -1. + + <_> + 10 0 5 11 3. + + + + <_> + + <_> + 2 0 15 11 -1. + + <_> + 7 0 5 11 3. + + + + <_> + + <_> + 11 6 6 12 -1. + + <_> + 14 6 3 6 2. + + <_> + 11 12 3 6 2. + + + + <_> + + <_> + 7 5 6 6 -1. + + <_> + 9 5 2 6 3. + + + + <_> + + <_> + 14 13 6 5 -1. + + <_> + 14 13 3 5 2. + + + + <_> + + <_> + 6 10 6 8 -1. + + <_> + 8 10 2 8 3. + + + + <_> + + <_> + 10 10 6 6 -1. + + <_> + 12 10 2 6 3. + + + + <_> + + <_> + 6 10 6 6 -1. + + <_> + 8 10 2 6 3. + + + + <_> + + <_> + 6 11 14 3 -1. + + <_> + 6 11 7 3 2. + + + + <_> + + <_> + 3 1 7 6 -1. + + <_> + 3 3 7 2 3. + + + + <_> + + <_> + 11 8 6 10 -1. + + <_> + 14 8 3 5 2. + + <_> + 11 13 3 5 2. + + + + <_> + + <_> + 8 5 3 13 -1. + + <_> + 9 5 1 13 3. + + + + <_> + + <_> + 11 0 6 4 -1. + + <_> + 11 0 3 4 2. + + + 1 + + <_> + + <_> + 11 0 4 6 -1. + + <_> + 11 0 4 3 2. + + + 1 + + <_> + + <_> + 14 3 2 12 -1. + + <_> + 14 3 2 6 2. + + + 1 + + <_> + + <_> + 5 4 10 7 -1. + + <_> + 10 4 5 7 2. + + + + <_> + + <_> + 8 9 6 6 -1. + + <_> + 10 9 2 6 3. + + + + <_> + + <_> + 0 8 12 9 -1. + + <_> + 4 11 4 3 9. + + + + <_> + + <_> + 13 12 4 6 -1. + + <_> + 13 15 4 3 2. + + + + <_> + + <_> + 5 12 5 6 -1. + + <_> + 5 15 5 3 2. + + + + <_> + + <_> + 12 4 2 11 -1. + + <_> + 12 4 1 11 2. + + + 1 + + <_> + + <_> + 9 4 11 2 -1. + + <_> + 9 4 11 1 2. + + + 1 + + <_> + + <_> + 11 8 6 10 -1. + + <_> + 14 8 3 5 2. + + <_> + 11 13 3 5 2. + + + + <_> + + <_> + 5 8 6 10 -1. + + <_> + 5 8 3 5 2. + + <_> + 8 13 3 5 2. + + + + <_> + + <_> + 11 7 6 10 -1. + + <_> + 14 7 3 5 2. + + <_> + 11 12 3 5 2. + + + + <_> + + <_> + 2 1 18 3 -1. + + <_> + 2 2 18 1 3. + + + + <_> + + <_> + 16 4 6 7 -1. + + <_> + 16 4 3 7 2. + + + + <_> + + <_> + 5 7 6 10 -1. + + <_> + 5 7 3 5 2. + + <_> + 8 12 3 5 2. + + + + <_> + + <_> + 12 0 3 14 -1. + + <_> + 12 7 3 7 2. + + + + <_> + + <_> + 7 10 8 7 -1. + + <_> + 11 10 4 7 2. + + + + <_> + + <_> + 8 0 12 3 -1. + + <_> + 8 1 12 1 3. + + + + <_> + + <_> + 3 0 13 4 -1. + + <_> + 3 1 13 2 2. + + + + <_> + + <_> + 7 11 12 4 -1. + + <_> + 7 12 12 2 2. + + + + <_> + + <_> + 0 0 8 18 -1. + + <_> + 4 0 4 18 2. + + + + <_> + + <_> + 14 13 6 5 -1. + + <_> + 14 13 3 5 2. + + + + <_> + + <_> + 0 5 22 4 -1. + + <_> + 11 5 11 4 2. + + + + <_> + + <_> + 11 2 10 9 -1. + + <_> + 11 5 10 3 3. + + + + <_> + + <_> + 1 2 10 9 -1. + + <_> + 1 5 10 3 3. + + + + <_> + + <_> + 18 6 2 12 -1. + + <_> + 18 6 1 12 2. + + + + <_> + + <_> + 2 6 2 12 -1. + + <_> + 3 6 1 12 2. + + + + <_> + + <_> + 15 6 4 12 -1. + + <_> + 15 9 4 6 2. + + + + <_> + + <_> + 3 6 4 12 -1. + + <_> + 3 9 4 6 2. + + + + <_> + + <_> + 14 13 6 5 -1. + + <_> + 14 13 3 5 2. + + + + <_> + + <_> + 2 13 6 5 -1. + + <_> + 5 13 3 5 2. + + + + <_> + + <_> + 8 12 12 5 -1. + + <_> + 11 12 6 5 2. + + + + <_> + + <_> + 2 12 12 5 -1. + + <_> + 5 12 6 5 2. + + + + <_> + + <_> + 12 12 6 6 -1. + + <_> + 12 14 6 2 3. + + + + <_> + + <_> + 0 10 16 8 -1. + + <_> + 4 10 8 8 2. + + + + <_> + + <_> + 13 1 8 8 -1. + + <_> + 15 1 4 8 2. + + + + <_> + + <_> + 1 1 8 8 -1. + + <_> + 3 1 4 8 2. + + + + <_> + + <_> + 14 8 3 8 -1. + + <_> + 14 12 3 4 2. + + + + <_> + + <_> + 10 4 7 6 -1. + + <_> + 10 4 7 3 2. + + + 1 + + <_> + + <_> + 9 10 4 8 -1. + + <_> + 9 14 4 4 2. + + + + <_> + + <_> + 5 8 3 8 -1. + + <_> + 5 12 3 4 2. + + + + <_> + + <_> + 6 9 4 9 -1. + + <_> + 6 12 4 3 3. + + + + <_> + + <_> + 6 3 16 4 -1. + + <_> + 14 3 8 2 2. + + <_> + 6 5 8 2 2. + + + + <_> + + <_> + 1 3 20 4 -1. + + <_> + 1 3 10 2 2. + + <_> + 11 5 10 2 2. + + + + <_> + + <_> + 9 5 6 12 -1. + + <_> + 12 5 3 6 2. + + <_> + 9 11 3 6 2. + + + + <_> + + <_> + 1 6 2 12 -1. + + <_> + 2 6 1 12 2. + + + + <_> + + <_> + 19 0 2 16 -1. + + <_> + 19 0 1 16 2. + + + + <_> + + <_> + 1 0 2 16 -1. + + <_> + 2 0 1 16 2. + + + + <_> + + <_> + 13 5 5 9 -1. + + <_> + 13 8 5 3 3. + + + + <_> + + <_> + 5 16 12 2 -1. + + <_> + 5 17 12 1 2. + + + + <_> + + <_> + 5 14 12 4 -1. + + <_> + 5 15 12 2 2. + + + + <_> + + <_> + 5 3 12 9 -1. + + <_> + 9 6 4 3 9. + + + + <_> + + <_> + 7 5 13 2 -1. + + <_> + 7 6 13 1 2. + + + + <_> + + <_> + 8 1 12 2 -1. + + <_> + 8 1 12 1 2. + + + 1 + + <_> + + <_> + 0 4 22 8 -1. + + <_> + 11 4 11 4 2. + + <_> + 0 8 11 4 2. + + + + <_> + + <_> + 2 3 6 4 -1. + + <_> + 5 3 3 4 2. + + + + <_> + + <_> + 7 11 15 3 -1. + + <_> + 7 12 15 1 3. + + + + <_> + + <_> + 5 7 6 7 -1. + + <_> + 8 7 3 7 2. + + + + <_> + + <_> + 7 12 12 4 -1. + + <_> + 13 12 6 2 2. + + <_> + 7 14 6 2 2. + + + + <_> + + <_> + 0 11 16 2 -1. + + <_> + 8 11 8 2 2. + + + + <_> + + <_> + 18 3 4 10 -1. + + <_> + 18 3 4 5 2. + + + 1 + + <_> + + <_> + 2 2 17 3 -1. + + <_> + 2 3 17 1 3. + + + + <_> + + <_> + 10 14 12 4 -1. + + <_> + 16 14 6 2 2. + + <_> + 10 16 6 2 2. + + + + <_> + + <_> + 1 9 11 6 -1. + + <_> + 1 11 11 2 3. + + + + <_> + + <_> + 4 9 18 3 -1. + + <_> + 4 10 18 1 3. + + + + <_> + + <_> + 0 9 18 3 -1. + + <_> + 0 10 18 1 3. + + + + <_> + + <_> + 11 5 11 12 -1. + + <_> + 11 11 11 6 2. + + + + <_> + + <_> + 5 12 6 6 -1. + + <_> + 5 14 6 2 3. + + + + <_> + + <_> + 14 10 6 8 -1. + + <_> + 17 10 3 4 2. + + <_> + 14 14 3 4 2. + + + + <_> + + <_> + 0 5 11 12 -1. + + <_> + 0 11 11 6 2. + + + + <_> + + <_> + 15 3 2 12 -1. + + <_> + 15 3 2 6 2. + + + 1 + + <_> + + <_> + 3 0 12 4 -1. + + <_> + 3 0 6 2 2. + + <_> + 9 2 6 2 2. + + + + <_> + + <_> + 14 10 6 8 -1. + + <_> + 17 10 3 4 2. + + <_> + 14 14 3 4 2. + + + + <_> + + <_> + 5 12 8 6 -1. + + <_> + 5 12 4 3 2. + + <_> + 9 15 4 3 2. + + + + <_> + + <_> + 8 11 10 5 -1. + + <_> + 8 11 5 5 2. + + + + <_> + + <_> + 4 11 10 5 -1. + + <_> + 9 11 5 5 2. + + + + <_> + + <_> + 6 6 12 12 -1. + + <_> + 12 6 6 6 2. + + <_> + 6 12 6 6 2. + + + + <_> + + <_> + 7 10 6 8 -1. + + <_> + 7 12 6 4 2. + + + + <_> + + <_> + 7 8 15 10 -1. + + <_> + 7 13 15 5 2. + + + + <_> + + <_> + 0 0 22 4 -1. + + <_> + 0 0 11 2 2. + + <_> + 11 2 11 2 2. + + + + <_> + + <_> + 10 3 12 3 -1. + + <_> + 10 4 12 1 3. + + + + <_> + + <_> + 0 3 13 3 -1. + + <_> + 0 4 13 1 3. + + + + <_> + + <_> + 9 3 4 12 -1. + + <_> + 9 6 4 6 2. + + + + <_> + + <_> + 4 5 9 6 -1. + + <_> + 4 8 9 3 2. + + + + <_> + + <_> + 11 6 2 9 -1. + + <_> + 11 6 1 9 2. + + + 1 + + <_> + + <_> + 9 2 4 8 -1. + + <_> + 9 6 4 4 2. + + + + <_> + + <_> + 7 0 8 10 -1. + + <_> + 7 5 8 5 2. + + + + <_> + + <_> + 11 5 9 2 -1. + + <_> + 11 5 9 1 2. + + + 1 + + <_> + + <_> + 17 0 3 11 -1. + + <_> + 18 1 1 11 3. + + + 1 + + <_> + + <_> + 5 0 11 3 -1. + + <_> + 4 1 11 1 3. + + + 1 + + <_> + + <_> + 9 6 4 7 -1. + + <_> + 9 6 2 7 2. + + + + <_> + + <_> + 3 11 6 6 -1. + + <_> + 3 13 6 2 3. + + + + <_> + + <_> + 6 10 16 8 -1. + + <_> + 6 12 16 4 2. + + + + <_> + + <_> + 11 6 9 3 -1. + + <_> + 10 7 9 1 3. + + + 1 + + <_> + + <_> + 12 11 8 6 -1. + + <_> + 12 13 8 2 3. + + + + <_> + + <_> + 0 10 16 8 -1. + + <_> + 0 12 16 4 2. + + + + <_> + + <_> + 10 14 12 4 -1. + + <_> + 16 14 6 2 2. + + <_> + 10 16 6 2 2. + + + + <_> + + <_> + 2 11 8 6 -1. + + <_> + 2 13 8 2 3. + + + + <_> + + <_> + 6 11 16 4 -1. + + <_> + 14 11 8 2 2. + + <_> + 6 13 8 2 2. + + + + <_> + + <_> + 0 11 22 6 -1. + + <_> + 11 11 11 6 2. + + + + <_> + + <_> + 14 10 6 8 -1. + + <_> + 17 10 3 4 2. + + <_> + 14 14 3 4 2. + + + + <_> + + <_> + 2 10 6 8 -1. + + <_> + 2 10 3 4 2. + + <_> + 5 14 3 4 2. + + + + <_> + + <_> + 6 4 15 12 -1. + + <_> + 11 8 5 4 9. + + + + <_> + + <_> + 0 4 18 12 -1. + + <_> + 6 8 6 4 9. + + + + <_> + + <_> + 15 7 2 8 -1. + + <_> + 15 7 1 8 2. + + + 1 + + <_> + + <_> + 3 3 10 3 -1. + + <_> + 2 4 10 1 3. + + + 1 + + <_> + + <_> + 4 2 14 3 -1. + + <_> + 4 3 14 1 3. + + + + <_> + + <_> + 10 8 8 2 -1. + + <_> + 10 8 8 1 2. + + + 1 + + <_> + + <_> + 15 5 4 7 -1. + + <_> + 15 5 2 7 2. + + + 1 + + <_> + + <_> + 3 6 5 6 -1. + + <_> + 3 9 5 3 2. + + + + <_> + + <_> + 14 1 8 6 -1. + + <_> + 18 1 4 3 2. + + <_> + 14 4 4 3 2. + + + + <_> + + <_> + 0 1 8 6 -1. + + <_> + 0 1 4 3 2. + + <_> + 4 4 4 3 2. + + + + <_> + + <_> + 17 0 4 12 -1. + + <_> + 18 0 2 12 2. + + + + <_> + + <_> + 1 0 4 12 -1. + + <_> + 2 0 2 12 2. + + + + <_> + + <_> + 9 16 12 2 -1. + + <_> + 9 17 12 1 2. + + + + <_> + + <_> + 1 16 12 2 -1. + + <_> + 1 17 12 1 2. + + + + <_> + + <_> + 10 15 12 3 -1. + + <_> + 10 16 12 1 3. + + + + <_> + + <_> + 0 15 12 3 -1. + + <_> + 0 16 12 1 3. + + + + <_> + + <_> + 10 14 12 4 -1. + + <_> + 16 14 6 2 2. + + <_> + 10 16 6 2 2. + + + + <_> + + <_> + 0 14 12 4 -1. + + <_> + 0 14 6 2 2. + + <_> + 6 16 6 2 2. + + + + <_> + + <_> + 9 11 12 4 -1. + + <_> + 15 11 6 2 2. + + <_> + 9 13 6 2 2. + + + + <_> + + <_> + 0 11 16 4 -1. + + <_> + 0 11 8 2 2. + + <_> + 8 13 8 2 2. + + + + <_> + + <_> + 8 12 9 6 -1. + + <_> + 8 14 9 2 3. + + + + <_> + + <_> + 5 12 9 6 -1. + + <_> + 5 14 9 2 3. + + + + <_> + + <_> + 4 5 16 2 -1. + + <_> + 4 5 8 2 2. + + + + <_> + + <_> + 1 10 10 8 -1. + + <_> + 1 10 5 4 2. + + <_> + 6 14 5 4 2. + + + + <_> + + <_> + 16 2 5 9 -1. + + <_> + 13 5 5 3 3. + + + 1 + + <_> + + <_> + 4 4 4 6 -1. + + <_> + 6 4 2 6 2. + + + + <_> + + <_> + 9 2 9 7 -1. + + <_> + 12 2 3 7 3. + + + + <_> + + <_> + 4 2 9 7 -1. + + <_> + 7 2 3 7 3. + + + + <_> + + <_> + 16 2 5 9 -1. + + <_> + 13 5 5 3 3. + + + 1 + + <_> + + <_> + 6 2 9 5 -1. + + <_> + 9 5 3 5 3. + + + 1 + + <_> + + <_> + 5 12 14 6 -1. + + <_> + 5 14 14 2 3. + + + + <_> + + <_> + 6 4 4 12 -1. + + <_> + 6 4 2 6 2. + + <_> + 8 10 2 6 2. + + + + <_> + + <_> + 9 4 10 8 -1. + + <_> + 9 4 5 8 2. + + + + <_> + + <_> + 7 5 6 8 -1. + + <_> + 7 5 3 4 2. + + <_> + 10 9 3 4 2. + + + + <_> + + <_> + 8 7 6 8 -1. + + <_> + 11 7 3 4 2. + + <_> + 8 11 3 4 2. + + + + <_> + + <_> + 2 4 11 2 -1. + + <_> + 2 4 11 1 2. + + + 1 + + <_> + + <_> + 16 0 3 13 -1. + + <_> + 17 0 1 13 3. + + + + <_> + + <_> + 2 0 18 3 -1. + + <_> + 2 1 18 1 3. + + + + <_> + + <_> + 15 8 6 4 -1. + + <_> + 15 8 3 4 2. + + + + <_> + + <_> + 2 0 13 3 -1. + + <_> + 2 1 13 1 3. + + + + <_> + + <_> + 4 4 18 4 -1. + + <_> + 4 6 18 2 2. + + + + <_> + + <_> + 3 3 10 9 -1. + + <_> + 8 3 5 9 2. + + + + <_> + + <_> + 2 7 18 6 -1. + + <_> + 8 9 6 2 9. + + + + <_> + + <_> + 10 4 11 2 -1. + + <_> + 10 4 11 1 2. + + + 1 + + <_> + + <_> + 14 6 6 12 -1. + + <_> + 17 6 3 6 2. + + <_> + 14 12 3 6 2. + + + + <_> + + <_> + 2 6 6 12 -1. + + <_> + 2 6 3 6 2. + + <_> + 5 12 3 6 2. + + + + <_> + + <_> + 3 4 16 6 -1. + + <_> + 3 6 16 2 3. + + + + <_> + + <_> + 1 11 16 3 -1. + + <_> + 5 11 8 3 2. + + + + <_> + + <_> + 12 10 8 3 -1. + + <_> + 12 10 4 3 2. + + + + <_> + + <_> + 0 9 17 9 -1. + + <_> + 0 12 17 3 3. + + + + <_> + + <_> + 8 4 6 10 -1. + + <_> + 11 4 3 5 2. + + <_> + 8 9 3 5 2. + + + + <_> + + <_> + 2 4 16 8 -1. + + <_> + 2 4 8 4 2. + + <_> + 10 8 8 4 2. + + + + <_> + + <_> + 9 6 12 4 -1. + + <_> + 15 6 6 2 2. + + <_> + 9 8 6 2 2. + + + + <_> + + <_> + 9 3 4 6 -1. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 15 5 7 4 -1. + + <_> + 15 5 7 2 2. + + + 1 + + <_> + + <_> + 0 6 18 6 -1. + + <_> + 0 6 9 3 2. + + <_> + 9 9 9 3 2. + + + + <_> + + <_> + 4 2 15 3 -1. + + <_> + 4 3 15 1 3. + + + + <_> + + <_> + 2 0 6 6 -1. + + <_> + 5 0 3 6 2. + + + + <_> + + <_> + 13 4 8 6 -1. + + <_> + 17 4 4 3 2. + + <_> + 13 7 4 3 2. + + + + <_> + + <_> + 4 2 13 6 -1. + + <_> + 4 4 13 2 3. + + + + <_> + + <_> + 9 8 12 3 -1. + + <_> + 9 9 12 1 3. + + + + <_> + + <_> + 1 8 16 3 -1. + + <_> + 1 9 16 1 3. + + + + <_> + + <_> + 11 4 5 8 -1. + + <_> + 11 8 5 4 2. + + + + <_> + + <_> + 3 4 11 2 -1. + + <_> + 3 4 11 1 2. + + + 1 + + <_> + + <_> + 10 7 12 3 -1. + + <_> + 10 8 12 1 3. + + + + <_> + + <_> + 9 3 7 8 -1. + + <_> + 9 3 7 4 2. + + + 1 + + <_> + + <_> + 13 2 2 12 -1. + + <_> + 13 2 2 6 2. + + + 1 + + <_> + + <_> + 0 9 12 4 -1. + + <_> + 0 9 6 2 2. + + <_> + 6 11 6 2 2. + + + + <_> + + <_> + 11 7 8 6 -1. + + <_> + 13 7 4 6 2. + + + + <_> + + <_> + 0 8 6 6 -1. + + <_> + 2 8 2 6 3. + + + + <_> + + <_> + 11 7 8 6 -1. + + <_> + 13 7 4 6 2. + + + + <_> + + <_> + 3 7 8 6 -1. + + <_> + 5 7 4 6 2. + + + + <_> + + <_> + 10 6 6 4 -1. + + <_> + 10 6 3 4 2. + + + + <_> + + <_> + 4 8 12 10 -1. + + <_> + 4 8 6 5 2. + + <_> + 10 13 6 5 2. + + + + <_> + + <_> + 15 7 6 10 -1. + + <_> + 17 7 2 10 3. + + + + <_> + + <_> + 6 14 6 4 -1. + + <_> + 9 14 3 4 2. + + + + <_> + + <_> + 8 13 10 4 -1. + + <_> + 8 13 5 4 2. + + + + <_> + + <_> + 2 0 4 18 -1. + + <_> + 4 0 2 18 2. + + + + <_> + + <_> + 11 0 8 10 -1. + + <_> + 11 0 8 5 2. + + + 1 + + <_> + + <_> + 0 7 12 3 -1. + + <_> + 0 8 12 1 3. + + + + <_> + + <_> + 17 0 2 10 -1. + + <_> + 17 0 1 10 2. + + + 1 + + <_> + + <_> + 5 6 6 4 -1. + + <_> + 5 8 6 2 2. + + + + <_> + + <_> + 15 10 7 6 -1. + + <_> + 15 12 7 2 3. + + + + <_> + + <_> + 0 10 7 6 -1. + + <_> + 0 12 7 2 3. + + + + <_> + + <_> + 13 12 6 6 -1. + + <_> + 15 12 2 6 3. + + + + <_> + + <_> + 1 11 20 7 -1. + + <_> + 11 11 10 7 2. + + + + <_> + + <_> + 13 5 4 9 -1. + + <_> + 13 8 4 3 3. + + + + <_> + + <_> + 2 12 8 6 -1. + + <_> + 2 12 4 3 2. + + <_> + 6 15 4 3 2. + + + + <_> + + <_> + 9 14 6 4 -1. + + <_> + 9 16 6 2 2. + + + + <_> + + <_> + 7 12 8 6 -1. + + <_> + 7 12 4 3 2. + + <_> + 11 15 4 3 2. + + + + <_> + + <_> + 6 1 12 14 -1. + + <_> + 12 1 6 7 2. + + <_> + 6 8 6 7 2. + + + + <_> + + <_> + 5 5 4 9 -1. + + <_> + 5 8 4 3 3. + + + + <_> + + <_> + 5 13 12 4 -1. + + <_> + 11 13 6 2 2. + + <_> + 5 15 6 2 2. + + + + <_> + + <_> + 9 7 8 3 -1. + + <_> + 8 8 8 1 3. + + + 1 + + <_> + + <_> + 7 5 8 10 -1. + + <_> + 7 10 8 5 2. + + + + <_> + + <_> + 7 1 8 3 -1. + + <_> + 6 2 8 1 3. + + + 1 + + <_> + + <_> + 10 14 12 3 -1. + + <_> + 10 15 12 1 3. + + + + <_> + + <_> + 0 6 18 12 -1. + + <_> + 0 12 18 6 2. + + + + <_> + + <_> + 9 8 6 6 -1. + + <_> + 9 11 6 3 2. + + + + <_> + + <_> + 3 2 4 12 -1. + + <_> + 3 2 2 6 2. + + <_> + 5 8 2 6 2. + + + + <_> + + <_> + 13 2 2 12 -1. + + <_> + 13 2 2 6 2. + + + 1 + + <_> + + <_> + 2 4 6 8 -1. + + <_> + 2 4 3 4 2. + + <_> + 5 8 3 4 2. + + + + <_> + + <_> + 14 10 4 6 -1. + + <_> + 14 10 2 6 2. + + + + <_> + + <_> + 0 0 2 12 -1. + + <_> + 0 6 2 6 2. + + + + <_> + + <_> + 13 2 2 12 -1. + + <_> + 13 2 2 6 2. + + + 1 + + <_> + + <_> + 9 2 12 2 -1. + + <_> + 9 2 6 2 2. + + + 1 + + <_> + + <_> + 10 9 12 4 -1. + + <_> + 16 9 6 2 2. + + <_> + 10 11 6 2 2. + + + + <_> + + <_> + 0 9 12 4 -1. + + <_> + 0 9 6 2 2. + + <_> + 6 11 6 2 2. + + + + <_> + + <_> + 17 9 4 9 -1. + + <_> + 17 12 4 3 3. + + + + <_> + + <_> + 1 9 10 6 -1. + + <_> + 1 9 5 3 2. + + <_> + 6 12 5 3 2. + + + + <_> + + <_> + 8 12 9 4 -1. + + <_> + 8 14 9 2 2. + + + + <_> + + <_> + 2 8 6 10 -1. + + <_> + 2 8 3 5 2. + + <_> + 5 13 3 5 2. + + + + <_> + + <_> + 7 10 12 6 -1. + + <_> + 10 10 6 6 2. + + + + <_> + + <_> + 3 10 12 6 -1. + + <_> + 6 10 6 6 2. + + + + <_> + + <_> + 20 0 2 12 -1. + + <_> + 20 6 2 6 2. + + + + <_> + + <_> + 0 0 2 12 -1. + + <_> + 0 6 2 6 2. + + + + <_> + + <_> + 14 3 4 15 -1. + + <_> + 14 3 2 15 2. + + + + <_> + + <_> + 0 1 16 14 -1. + + <_> + 0 1 8 7 2. + + <_> + 8 8 8 7 2. + + + + <_> + + <_> + 11 0 8 10 -1. + + <_> + 11 0 8 5 2. + + + 1 + + <_> + + <_> + 0 3 16 4 -1. + + <_> + 0 3 8 2 2. + + <_> + 8 5 8 2 2. + + + + <_> + + <_> + 13 0 7 12 -1. + + <_> + 13 4 7 4 3. + + + + <_> + + <_> + 5 3 11 15 -1. + + <_> + 5 8 11 5 3. + + + + <_> + + <_> + 13 0 7 12 -1. + + <_> + 13 4 7 4 3. + + + + <_> + + <_> + 2 0 7 12 -1. + + <_> + 2 4 7 4 3. + + + + <_> + + <_> + 4 5 18 12 -1. + + <_> + 10 9 6 4 9. + + + + <_> + + <_> + 4 7 14 6 -1. + + <_> + 4 7 7 3 2. + + <_> + 11 10 7 3 2. + + + + <_> + + <_> + 7 9 13 3 -1. + + <_> + 7 10 13 1 3. + + + + <_> + + <_> + 2 9 13 3 -1. + + <_> + 2 10 13 1 3. + + + + <_> + + <_> + 5 9 17 3 -1. + + <_> + 5 10 17 1 3. + + + + <_> + + <_> + 1 1 10 9 -1. + + <_> + 1 4 10 3 3. + + + + <_> + + <_> + 4 1 16 8 -1. + + <_> + 4 3 16 4 2. + + + + <_> + + <_> + 6 5 6 12 -1. + + <_> + 8 5 2 12 3. + + + + <_> + + <_> + 11 7 6 5 -1. + + <_> + 11 7 3 5 2. + + + 1 + + <_> + + <_> + 5 4 9 5 -1. + + <_> + 8 4 3 5 3. + + + + <_> + + <_> + 2 12 18 4 -1. + + <_> + 11 12 9 2 2. + + <_> + 2 14 9 2 2. + + + + <_> + + <_> + 11 4 9 3 -1. + + <_> + 10 5 9 1 3. + + + 1 + + <_> + + <_> + 15 0 2 10 -1. + + <_> + 15 0 1 10 2. + + + 1 + + <_> + + <_> + 0 5 18 12 -1. + + <_> + 6 9 6 4 9. + + + + <_> + + <_> + 14 9 4 6 -1. + + <_> + 14 9 2 6 2. + + + + <_> + + <_> + 5 6 3 12 -1. + + <_> + 5 10 3 4 3. + + + + <_> + + <_> + 11 0 3 9 -1. + + <_> + 12 1 1 9 3. + + + 1 + + <_> + + <_> + 1 9 4 9 -1. + + <_> + 1 12 4 3 3. + + + + <_> + + <_> + 18 9 4 9 -1. + + <_> + 18 12 4 3 3. + + + + <_> + + <_> + 6 9 6 4 -1. + + <_> + 9 9 3 4 2. + + + + <_> + + <_> + 11 0 3 9 -1. + + <_> + 12 1 1 9 3. + + + 1 + + <_> + + <_> + 11 0 9 3 -1. + + <_> + 10 1 9 1 3. + + + 1 + + <_> + + <_> + 5 15 12 2 -1. + + <_> + 5 16 12 1 2. + + + + <_> + + <_> + 0 0 22 2 -1. + + <_> + 11 0 11 2 2. + + + + <_> + + <_> + 20 0 2 13 -1. + + <_> + 20 0 1 13 2. + + + + <_> + + <_> + 0 0 2 13 -1. + + <_> + 1 0 1 13 2. + + + + <_> + + <_> + 10 1 6 6 -1. + + <_> + 12 1 2 6 3. + + + + <_> + + <_> + 6 1 6 6 -1. + + <_> + 8 1 2 6 3. + + + + <_> + + <_> + 10 7 12 3 -1. + + <_> + 10 8 12 1 3. + + + + <_> + + <_> + 0 7 12 3 -1. + + <_> + 0 8 12 1 3. + + + + <_> + + <_> + 1 9 8 6 -1. + + <_> + 1 9 4 3 2. + + <_> + 5 12 4 3 2. + + + + <_> + + <_> + 10 10 7 4 -1. + + <_> + 10 12 7 2 2. + + + + <_> + + <_> + 8 10 4 6 -1. + + <_> + 10 10 2 6 2. + + + + <_> + + <_> + 13 6 8 4 -1. + + <_> + 13 6 4 4 2. + + + 1 + + <_> + + <_> + 10 1 8 7 -1. + + <_> + 12 3 4 7 2. + + + 1 + + <_> + + <_> + 8 5 8 7 -1. + + <_> + 8 5 4 7 2. + + + + <_> + + <_> + 6 5 8 7 -1. + + <_> + 10 5 4 7 2. + + + + <_> + + <_> + 6 3 16 12 -1. + + <_> + 14 3 8 6 2. + + <_> + 6 9 8 6 2. + + + + <_> + + <_> + 4 11 6 6 -1. + + <_> + 4 13 6 2 3. + + + + <_> + + <_> + 4 2 18 14 -1. + + <_> + 13 2 9 7 2. + + <_> + 4 9 9 7 2. + + + + <_> + + <_> + 5 0 11 12 -1. + + <_> + 5 3 11 6 2. + + + + <_> + + <_> + 4 7 16 9 -1. + + <_> + 4 10 16 3 3. + + + + <_> + + <_> + 0 1 18 3 -1. + + <_> + 0 2 18 1 3. + + + + <_> + + <_> + 12 13 6 4 -1. + + <_> + 12 15 6 2 2. + + + + <_> + + <_> + 1 10 6 8 -1. + + <_> + 1 10 3 4 2. + + <_> + 4 14 3 4 2. + + + + <_> + + <_> + 14 12 8 6 -1. + + <_> + 18 12 4 3 2. + + <_> + 14 15 4 3 2. + + + + <_> + + <_> + 9 3 12 3 -1. + + <_> + 13 7 4 3 3. + + + 1 + + <_> + + <_> + 8 12 6 6 -1. + + <_> + 8 12 3 6 2. + + + + <_> + + <_> + 4 8 14 10 -1. + + <_> + 4 13 14 5 2. + + + + <_> + + <_> + 11 2 8 8 -1. + + <_> + 11 2 4 8 2. + + + 1 + + <_> + + <_> + 9 6 4 8 -1. + + <_> + 9 6 4 4 2. + + + 1 + + <_> + + <_> + 18 3 4 10 -1. + + <_> + 18 3 4 5 2. + + + 1 + + <_> + + <_> + 5 15 12 3 -1. + + <_> + 9 15 4 3 3. + + + + <_> + + <_> + 11 8 4 6 -1. + + <_> + 11 8 4 3 2. + + + 1 + + <_> + + <_> + 11 8 6 4 -1. + + <_> + 11 8 3 4 2. + + + 1 + + <_> + + <_> + 3 13 16 5 -1. + + <_> + 7 13 8 5 2. + + + + <_> + + <_> + 6 2 4 12 -1. + + <_> + 6 2 2 6 2. + + <_> + 8 8 2 6 2. + + + + <_> + + <_> + 2 14 18 4 -1. + + <_> + 11 14 9 2 2. + + <_> + 2 16 9 2 2. + + + + <_> + + <_> + 3 1 12 3 -1. + + <_> + 3 2 12 1 3. + + + + <_> + + <_> + 6 1 16 3 -1. + + <_> + 6 2 16 1 3. + + + + <_> + + <_> + 5 3 8 3 -1. + + <_> + 9 3 4 3 2. + + + + <_> + + <_> + 16 3 4 6 -1. + + <_> + 16 3 4 3 2. + + + 1 + + <_> + + <_> + 4 3 10 4 -1. + + <_> + 4 3 5 4 2. + + + 1 + + <_> + + <_> + 14 5 6 8 -1. + + <_> + 17 5 3 4 2. + + <_> + 14 9 3 4 2. + + + + <_> + + <_> + 1 2 14 12 -1. + + <_> + 1 5 14 6 2. + + + + <_> + + <_> + 11 2 6 12 -1. + + <_> + 11 5 6 6 2. + + + + <_> + + <_> + 5 2 6 12 -1. + + <_> + 5 5 6 6 2. + + + + <_> + + <_> + 11 5 8 5 -1. + + <_> + 11 5 4 5 2. + + + 1 + + <_> + + <_> + 4 0 9 18 -1. + + <_> + 7 0 3 18 3. + + + + <_> + + <_> + 11 14 6 4 -1. + + <_> + 11 16 6 2 2. + + + + <_> + + <_> + 5 14 6 4 -1. + + <_> + 5 16 6 2 2. + + + + <_> + + <_> + 12 13 6 4 -1. + + <_> + 12 15 6 2 2. + + + + <_> + + <_> + 1 6 13 3 -1. + + <_> + 1 7 13 1 3. + + + + <_> + + <_> + 10 6 12 3 -1. + + <_> + 10 7 12 1 3. + + + + <_> + + <_> + 1 8 6 4 -1. + + <_> + 4 8 3 4 2. + + + + <_> + + <_> + 14 12 6 6 -1. + + <_> + 16 12 2 6 3. + + + + <_> + + <_> + 2 12 6 6 -1. + + <_> + 4 12 2 6 3. + + + + <_> + + <_> + 7 15 12 3 -1. + + <_> + 11 15 4 3 3. + + + + <_> + + <_> + 1 12 8 5 -1. + + <_> + 5 12 4 5 2. + + + + <_> + + <_> + 14 5 6 8 -1. + + <_> + 17 5 3 4 2. + + <_> + 14 9 3 4 2. + + + + <_> + + <_> + 2 5 6 8 -1. + + <_> + 2 5 3 4 2. + + <_> + 5 9 3 4 2. + + + + <_> + + <_> + 14 11 8 6 -1. + + <_> + 18 11 4 3 2. + + <_> + 14 14 4 3 2. + + + + <_> + + <_> + 4 0 8 6 -1. + + <_> + 4 0 4 3 2. + + <_> + 8 3 4 3 2. + + + + <_> + + <_> + 14 3 7 4 -1. + + <_> + 14 3 7 2 2. + + + 1 + + <_> + + <_> + 0 11 8 6 -1. + + <_> + 0 11 4 3 2. + + <_> + 4 14 4 3 2. + + + + <_> + + <_> + 4 13 14 4 -1. + + <_> + 4 15 14 2 2. + + + + <_> + + <_> + 5 3 9 8 -1. + + <_> + 8 3 3 8 3. + + + + <_> + + <_> + 5 0 15 8 -1. + + <_> + 10 0 5 8 3. + + + + <_> + + <_> + 2 0 15 8 -1. + + <_> + 7 0 5 8 3. + + + + <_> + + <_> + 14 0 6 11 -1. + + <_> + 16 0 2 11 3. + + + + <_> + + <_> + 0 16 18 2 -1. + + <_> + 6 16 6 2 3. + + + + <_> + + <_> + 5 3 12 9 -1. + + <_> + 9 6 4 3 9. + + + + <_> + + <_> + 8 3 4 7 -1. + + <_> + 8 3 2 7 2. + + + 1 + + <_> + + <_> + 10 3 6 8 -1. + + <_> + 12 3 2 8 3. + + + + <_> + + <_> + 6 3 6 8 -1. + + <_> + 8 3 2 8 3. + + + + <_> + + <_> + 7 13 12 4 -1. + + <_> + 7 15 12 2 2. + + + + <_> + + <_> + 3 9 16 8 -1. + + <_> + 3 9 8 4 2. + + <_> + 11 13 8 4 2. + + + + <_> + + <_> + 9 0 13 3 -1. + + <_> + 9 1 13 1 3. + + + + <_> + + <_> + 4 0 4 12 -1. + + <_> + 4 0 2 6 2. + + <_> + 6 6 2 6 2. + + + + <_> + + <_> + 1 11 20 4 -1. + + <_> + 6 11 10 4 2. + + + + <_> + + <_> + 3 14 6 4 -1. + + <_> + 6 14 3 4 2. + + + + <_> + + <_> + 10 6 12 3 -1. + + <_> + 10 7 12 1 3. + + + + <_> + + <_> + 0 6 12 3 -1. + + <_> + 0 7 12 1 3. + + + + <_> + + <_> + 6 2 14 6 -1. + + <_> + 6 4 14 2 3. + + + + <_> + + <_> + 4 1 6 4 -1. + + <_> + 4 1 6 2 2. + + + 1 + + <_> + + <_> + 1 0 21 18 -1. + + <_> + 8 0 7 18 3. + + + + <_> + + <_> + 5 0 14 2 -1. + + <_> + 5 0 7 2 2. + + + 1 + + <_> + + <_> + 14 8 4 9 -1. + + <_> + 14 11 4 3 3. + + + + <_> + + <_> + 2 0 6 10 -1. + + <_> + 4 0 2 10 3. + + + + <_> + + <_> + 5 11 12 4 -1. + + <_> + 11 11 6 2 2. + + <_> + 5 13 6 2 2. + + + + <_> + + <_> + 8 5 4 6 -1. + + <_> + 10 5 2 6 2. + + + + <_> + + <_> + 7 1 15 9 -1. + + <_> + 12 4 5 3 9. + + + + <_> + + <_> + 0 1 15 9 -1. + + <_> + 5 4 5 3 9. + + + + <_> + + <_> + 5 0 12 16 -1. + + <_> + 11 0 6 8 2. + + <_> + 5 8 6 8 2. + + + + <_> + + <_> + 8 10 6 5 -1. + + <_> + 11 10 3 5 2. + + + + <_> + + <_> + 10 4 8 9 -1. + + <_> + 10 7 8 3 3. + + + + <_> + + <_> + 4 4 8 9 -1. + + <_> + 4 7 8 3 3. + + + + <_> + + <_> + 8 3 12 3 -1. + + <_> + 8 4 12 1 3. + + + + <_> + + <_> + 0 3 13 3 -1. + + <_> + 0 4 13 1 3. + + + + <_> + + <_> + 10 1 12 3 -1. + + <_> + 14 1 4 3 3. + + + + <_> + + <_> + 0 1 12 3 -1. + + <_> + 4 1 4 3 3. + + + + <_> + + <_> + 8 3 12 3 -1. + + <_> + 8 4 12 1 3. + + + + <_> + + <_> + 8 4 6 4 -1. + + <_> + 8 4 3 4 2. + + + 1 + + <_> + + <_> + 13 2 2 11 -1. + + <_> + 13 2 1 11 2. + + + 1 + + <_> + + <_> + 9 2 11 2 -1. + + <_> + 9 2 11 1 2. + + + 1 + + <_> + + <_> + 11 1 3 16 -1. + + <_> + 11 9 3 8 2. + + + + <_> + + <_> + 7 1 4 9 -1. + + <_> + 7 4 4 3 3. + + + + <_> + + <_> + 12 4 4 8 -1. + + <_> + 12 8 4 4 2. + + + + <_> + + <_> + 1 7 6 4 -1. + + <_> + 1 9 6 2 2. + + + + <_> + + <_> + 12 4 4 8 -1. + + <_> + 12 8 4 4 2. + + + + <_> + + <_> + 6 4 4 8 -1. + + <_> + 6 8 4 4 2. + + + + <_> + + <_> + 19 3 3 12 -1. + + <_> + 20 4 1 12 3. + + + 1 + + <_> + + <_> + 3 3 12 3 -1. + + <_> + 2 4 12 1 3. + + + 1 + + <_> + + <_> + 13 6 3 7 -1. + + <_> + 14 7 1 7 3. + + + 1 + + <_> + + <_> + 8 12 6 4 -1. + + <_> + 11 12 3 4 2. + + + + <_> + + <_> + 10 8 10 10 -1. + + <_> + 15 8 5 5 2. + + <_> + 10 13 5 5 2. + + + + <_> + + <_> + 2 8 10 10 -1. + + <_> + 2 8 5 5 2. + + <_> + 7 13 5 5 2. + + + + <_> + + <_> + 1 11 20 3 -1. + + <_> + 6 11 10 3 2. + + + + <_> + + <_> + 13 8 6 4 -1. + + <_> + 13 8 3 4 2. + + + 1 + + <_> + + <_> + 4 11 8 4 -1. + + <_> + 8 11 4 4 2. + + + + <_> + + <_> + 9 5 10 6 -1. + + <_> + 9 5 5 6 2. + + + + <_> + + <_> + 4 8 6 9 -1. + + <_> + 7 8 3 9 2. + + + + <_> + + <_> + 4 5 16 4 -1. + + <_> + 4 5 8 4 2. + + + + <_> + + <_> + 2 4 18 6 -1. + + <_> + 8 6 6 2 9. + + + + <_> + + <_> + 11 1 2 11 -1. + + <_> + 11 1 1 11 2. + + + 1 + + <_> + + <_> + 7 1 6 8 -1. + + <_> + 7 1 3 4 2. + + <_> + 10 5 3 4 2. + + + + <_> + + <_> + 7 10 8 6 -1. + + <_> + 9 10 4 6 2. + + + + <_> + + <_> + 6 12 9 4 -1. + + <_> + 9 12 3 4 3. + + + + <_> + + <_> + 10 12 9 4 -1. + + <_> + 13 12 3 4 3. + + + + <_> + + <_> + 8 0 10 8 -1. + + <_> + 8 0 5 8 2. + + + 1 + + <_> + + <_> + 9 6 12 4 -1. + + <_> + 15 6 6 2 2. + + <_> + 9 8 6 2 2. + + + + <_> + + <_> + 4 9 14 5 -1. + + <_> + 11 9 7 5 2. + + + + <_> + + <_> + 14 6 6 6 -1. + + <_> + 12 8 6 2 3. + + + 1 + + <_> + + <_> + 6 4 6 7 -1. + + <_> + 8 4 2 7 3. + + + + <_> + + <_> + 14 9 6 6 -1. + + <_> + 14 12 6 3 2. + + + + <_> + + <_> + 2 9 6 6 -1. + + <_> + 2 12 6 3 2. + + + + <_> + + <_> + 13 8 4 8 -1. + + <_> + 13 8 2 8 2. + + + + <_> + + <_> + 5 8 4 9 -1. + + <_> + 7 8 2 9 2. + + + + <_> + + <_> + 2 4 18 12 -1. + + <_> + 8 8 6 4 9. + + + + <_> + + <_> + 3 5 10 6 -1. + + <_> + 8 5 5 6 2. + + + + <_> + + <_> + 6 0 12 8 -1. + + <_> + 6 0 6 8 2. + + + + <_> + + <_> + 0 11 8 7 -1. + + <_> + 2 11 4 7 2. + + + + <_> + + <_> + 15 11 6 7 -1. + + <_> + 17 11 2 7 3. + + + + <_> + + <_> + 3 16 14 2 -1. + + <_> + 3 17 14 1 2. + + + + <_> + + <_> + 9 15 13 3 -1. + + <_> + 9 16 13 1 3. + + + + <_> + + <_> + 0 15 13 3 -1. + + <_> + 0 16 13 1 3. + + + + <_> + + <_> + 5 13 12 3 -1. + + <_> + 5 14 12 1 3. + + + + <_> + + <_> + 0 14 14 3 -1. + + <_> + 0 15 14 1 3. + + + + <_> + + <_> + 13 5 6 6 -1. + + <_> + 15 5 2 6 3. + + + + <_> + + <_> + 3 5 6 6 -1. + + <_> + 5 5 2 6 3. + + + + <_> + + <_> + 2 3 20 4 -1. + + <_> + 7 3 10 4 2. + + + + <_> + + <_> + 4 13 12 2 -1. + + <_> + 4 14 12 1 2. + + + + <_> + + <_> + 9 6 9 6 -1. + + <_> + 12 6 3 6 3. + + + + <_> + + <_> + 8 5 6 7 -1. + + <_> + 10 5 2 7 3. + + + + <_> + + <_> + 15 0 3 10 -1. + + <_> + 16 1 1 10 3. + + + 1 + + <_> + + <_> + 7 0 10 3 -1. + + <_> + 6 1 10 1 3. + + + 1 + + <_> + + <_> + 11 4 8 6 -1. + + <_> + 15 4 4 3 2. + + <_> + 11 7 4 3 2. + + + + <_> + + <_> + 7 0 12 3 -1. + + <_> + 6 1 12 1 3. + + + 1 + + <_> + + <_> + 19 4 3 11 -1. + + <_> + 20 5 1 11 3. + + + 1 + + <_> + + <_> + 1 11 6 7 -1. + + <_> + 3 11 2 7 3. + + + + <_> + + <_> + 7 4 15 14 -1. + + <_> + 7 11 15 7 2. + + + + <_> + + <_> + 3 4 11 3 -1. + + <_> + 2 5 11 1 3. + + + 1 + + <_> + + <_> + 14 6 3 8 -1. + + <_> + 15 7 1 8 3. + + + 1 + + <_> + + <_> + 3 0 3 18 -1. + + <_> + 4 0 1 18 3. + + + + <_> + + <_> + 14 3 8 4 -1. + + <_> + 14 3 8 2 2. + + + 1 + + <_> + + <_> + 8 3 4 8 -1. + + <_> + 8 3 2 8 2. + + + 1 + + <_> + + <_> + 18 2 4 12 -1. + + <_> + 15 5 4 6 2. + + + 1 + + <_> + + <_> + 2 9 17 3 -1. + + <_> + 2 10 17 1 3. + + + + <_> + + <_> + 7 9 14 3 -1. + + <_> + 7 10 14 1 3. + + + + <_> + + <_> + 8 2 6 8 -1. + + <_> + 8 2 3 4 2. + + <_> + 11 6 3 4 2. + + + + <_> + + <_> + 11 4 8 6 -1. + + <_> + 15 4 4 3 2. + + <_> + 11 7 4 3 2. + + + + <_> + + <_> + 3 4 8 6 -1. + + <_> + 3 4 4 3 2. + + <_> + 7 7 4 3 2. + + + + <_> + + <_> + 3 1 18 3 -1. + + <_> + 3 2 18 1 3. + + + + <_> + + <_> + 0 9 8 3 -1. + + <_> + 4 9 4 3 2. + + + + <_> + + <_> + 13 2 9 10 -1. + + <_> + 13 7 9 5 2. + + + + <_> + + <_> + 1 2 8 12 -1. + + <_> + 1 2 4 6 2. + + <_> + 5 8 4 6 2. + + + + <_> + + <_> + 12 5 8 6 -1. + + <_> + 16 5 4 3 2. + + <_> + 12 8 4 3 2. + + + + <_> + + <_> + 1 0 17 3 -1. + + <_> + 1 1 17 1 3. + + + + <_> + + <_> + 4 0 15 2 -1. + + <_> + 4 1 15 1 2. + + + + <_> + + <_> + 5 0 12 4 -1. + + <_> + 5 2 12 2 2. + + + + <_> + + <_> + 7 4 15 14 -1. + + <_> + 7 11 15 7 2. + + + + <_> + + <_> + 8 2 9 2 -1. + + <_> + 8 2 9 1 2. + + + 1 + + <_> + + <_> + 16 0 2 13 -1. + + <_> + 16 0 1 13 2. + + + 1 + + <_> + + <_> + 6 0 13 2 -1. + + <_> + 6 0 13 1 2. + + + 1 + + <_> + + <_> + 12 7 2 9 -1. + + <_> + 12 7 1 9 2. + + + 1 + + <_> + + <_> + 10 7 9 2 -1. + + <_> + 10 7 9 1 2. + + + 1 + + <_> + + <_> + 9 0 11 10 -1. + + <_> + 9 5 11 5 2. + + + + <_> + + <_> + 8 5 9 2 -1. + + <_> + 8 5 9 1 2. + + + 1 + + <_> + + <_> + 13 2 9 10 -1. + + <_> + 13 7 9 5 2. + + + + <_> + + <_> + 0 2 9 10 -1. + + <_> + 0 7 9 5 2. + + + + <_> + + <_> + 17 2 3 8 -1. + + <_> + 17 6 3 4 2. + + + + <_> + + <_> + 2 2 3 8 -1. + + <_> + 2 6 3 4 2. + + + + <_> + + <_> + 4 4 18 4 -1. + + <_> + 13 4 9 2 2. + + <_> + 4 6 9 2 2. + + + + <_> + + <_> + 0 4 18 4 -1. + + <_> + 0 4 9 2 2. + + <_> + 9 6 9 2 2. + + + + <_> + + <_> + 4 1 14 4 -1. + + <_> + 11 1 7 2 2. + + <_> + 4 3 7 2 2. + + + + <_> + + <_> + 0 0 21 8 -1. + + <_> + 7 0 7 8 3. + + + + <_> + + <_> + 5 0 14 18 -1. + + <_> + 12 0 7 9 2. + + <_> + 5 9 7 9 2. + + + + <_> + + <_> + 1 11 16 4 -1. + + <_> + 5 11 8 4 2. + + + + <_> + + <_> + 6 9 10 6 -1. + + <_> + 6 11 10 2 3. + + + + <_> + + <_> + 5 10 12 4 -1. + + <_> + 5 11 12 2 2. + + + + <_> + + <_> + 15 4 6 6 -1. + + <_> + 15 4 3 6 2. + + + 1 + + <_> + + <_> + 7 4 6 6 -1. + + <_> + 7 4 6 3 2. + + + 1 + + <_> + + <_> + 12 5 8 6 -1. + + <_> + 16 5 4 3 2. + + <_> + 12 8 4 3 2. + + + + <_> + + <_> + 5 5 8 4 -1. + + <_> + 5 5 8 2 2. + + + 1 + + <_> + + <_> + 17 6 3 12 -1. + + <_> + 17 10 3 4 3. + + + + <_> + + <_> + 5 7 9 2 -1. + + <_> + 5 7 9 1 2. + + + 1 + + <_> + + <_> + 14 6 3 8 -1. + + <_> + 15 7 1 8 3. + + + 1 + + <_> + + <_> + 5 7 12 2 -1. + + <_> + 5 8 12 1 2. + + + + <_> + + <_> + 4 5 18 3 -1. + + <_> + 4 6 18 1 3. + + + + <_> + + <_> + 1 6 15 9 -1. + + <_> + 6 6 5 9 3. + + + + <_> + + <_> + 19 4 3 10 -1. + + <_> + 19 4 3 5 2. + + + 1 + + <_> + + <_> + 0 12 18 6 -1. + + <_> + 0 15 18 3 2. + + + + <_> + + <_> + 6 13 13 4 -1. + + <_> + 6 15 13 2 2. + + + + <_> + + <_> + 3 5 8 9 -1. + + <_> + 3 8 8 3 3. + + + + <_> + + <_> + 6 8 10 8 -1. + + <_> + 6 10 10 4 2. + + + + <_> + + <_> + 4 6 13 6 -1. + + <_> + 4 9 13 3 2. + + + + <_> + + <_> + 14 3 2 12 -1. + + <_> + 14 3 2 6 2. + + + 1 + + <_> + + <_> + 8 3 12 2 -1. + + <_> + 8 3 6 2 2. + + + 1 + + <_> + + <_> + 13 1 5 12 -1. + + <_> + 13 1 5 6 2. + + + 1 + + <_> + + <_> + 9 1 12 5 -1. + + <_> + 9 1 6 5 2. + + + 1 + + <_> + + <_> + 8 12 8 3 -1. + + <_> + 8 12 4 3 2. + + + + <_> + + <_> + 5 12 12 4 -1. + + <_> + 8 12 6 4 2. + + + + <_> + + <_> + 13 8 6 4 -1. + + <_> + 13 8 3 4 2. + + + 1 + + <_> + + <_> + 9 8 4 6 -1. + + <_> + 9 8 4 3 2. + + + 1 + + <_> + + <_> + 1 7 20 11 -1. + + <_> + 6 7 10 11 2. + + + + <_> + + <_> + 10 13 12 3 -1. + + <_> + 10 14 12 1 3. + + + + <_> + + <_> + 1 10 6 4 -1. + + <_> + 4 10 3 4 2. + + + + <_> + + <_> + 15 10 6 4 -1. + + <_> + 15 10 3 4 2. + + + + <_> + + <_> + 0 13 12 3 -1. + + <_> + 0 14 12 1 3. + + + + <_> + + <_> + 4 10 14 8 -1. + + <_> + 4 14 14 4 2. + + + + <_> + + <_> + 5 14 12 4 -1. + + <_> + 5 15 12 2 2. + + + + <_> + + <_> + 5 16 12 2 -1. + + <_> + 5 17 12 1 2. + + + + <_> + + <_> + 1 0 20 12 -1. + + <_> + 6 0 10 12 2. + + + + <_> + + <_> + 7 12 15 5 -1. + + <_> + 12 12 5 5 3. + + + + <_> + + <_> + 6 0 15 2 -1. + + <_> + 6 0 15 1 2. + + + 1 + + <_> + + <_> + 6 5 12 8 -1. + + <_> + 12 5 6 4 2. + + <_> + 6 9 6 4 2. + + + + <_> + + <_> + 4 5 12 8 -1. + + <_> + 4 5 6 4 2. + + <_> + 10 9 6 4 2. + + + + <_> + + <_> + 6 2 16 6 -1. + + <_> + 14 2 8 3 2. + + <_> + 6 5 8 3 2. + + + + <_> + + <_> + 1 2 16 14 -1. + + <_> + 1 2 8 7 2. + + <_> + 9 9 8 7 2. + + + + <_> + + <_> + 11 14 6 4 -1. + + <_> + 11 14 3 4 2. + + + + <_> + + <_> + 3 8 12 9 -1. + + <_> + 7 11 4 3 9. + + + + <_> + + <_> + 8 3 14 4 -1. + + <_> + 15 3 7 2 2. + + <_> + 8 5 7 2 2. + + + + <_> + + <_> + 9 0 6 8 -1. + + <_> + 11 2 2 8 3. + + + 1 + + <_> + + <_> + 12 13 6 4 -1. + + <_> + 12 15 6 2 2. + + + + <_> + + <_> + 4 13 6 4 -1. + + <_> + 4 15 6 2 2. + + + + <_> + + <_> + 6 16 16 2 -1. + + <_> + 6 17 16 1 2. + + + + <_> + + <_> + 0 3 12 3 -1. + + <_> + 0 4 12 1 3. + + + + <_> + + <_> + 8 3 14 3 -1. + + <_> + 8 4 14 1 3. + + + + <_> + + <_> + 6 2 3 16 -1. + + <_> + 6 6 3 8 2. + + + + <_> + + <_> + 5 2 14 14 -1. + + <_> + 12 2 7 7 2. + + <_> + 5 9 7 7 2. + + + + <_> + + <_> + 5 8 3 8 -1. + + <_> + 5 12 3 4 2. + + + + <_> + + <_> + 14 7 7 4 -1. + + <_> + 14 7 7 2 2. + + + 1 + + <_> + + <_> + 4 6 12 9 -1. + + <_> + 8 9 4 3 9. + + + + <_> + + <_> + 7 11 15 6 -1. + + <_> + 12 11 5 6 3. + + + + <_> + + <_> + 0 11 15 6 -1. + + <_> + 5 11 5 6 3. + + + + <_> + + <_> + 15 7 6 8 -1. + + <_> + 18 7 3 4 2. + + <_> + 15 11 3 4 2. + + + + <_> + + <_> + 0 7 22 10 -1. + + <_> + 0 7 11 5 2. + + <_> + 11 12 11 5 2. + + + + <_> + + <_> + 1 8 20 8 -1. + + <_> + 6 8 10 8 2. + + + + <_> + + <_> + 2 5 7 6 -1. + + <_> + 2 7 7 2 3. + + + + <_> + + <_> + 7 2 15 8 -1. + + <_> + 7 4 15 4 2. + + + + <_> + + <_> + 3 1 14 8 -1. + + <_> + 3 3 14 4 2. + + + + <_> + + <_> + 9 2 13 2 -1. + + <_> + 9 3 13 1 2. + + + + <_> + + <_> + 8 3 6 8 -1. + + <_> + 10 3 2 8 3. + + + + <_> + + <_> + 7 1 15 2 -1. + + <_> + 7 2 15 1 2. + + + + <_> + + <_> + 0 1 15 2 -1. + + <_> + 0 2 15 1 2. + + + + <_> + + <_> + 6 0 12 3 -1. + + <_> + 6 1 12 1 3. + + + + <_> + + <_> + 4 0 9 4 -1. + + <_> + 7 0 3 4 3. + + + + <_> + + <_> + 12 3 8 3 -1. + + <_> + 12 3 4 3 2. + + + 1 + + <_> + + <_> + 8 12 6 4 -1. + + <_> + 11 12 3 4 2. + + + + <_> + + <_> + 12 1 10 4 -1. + + <_> + 12 1 5 4 2. + + + + <_> + + <_> + 0 1 10 4 -1. + + <_> + 5 1 5 4 2. + + + + <_> + + <_> + 16 13 6 5 -1. + + <_> + 16 13 3 5 2. + + + + <_> + + <_> + 0 13 6 5 -1. + + <_> + 3 13 3 5 2. + + + + <_> + + <_> + 18 11 4 7 -1. + + <_> + 18 11 2 7 2. + + + + <_> + + <_> + 0 11 4 7 -1. + + <_> + 2 11 2 7 2. + + + + <_> + + <_> + 15 0 6 14 -1. + + <_> + 17 0 2 14 3. + + + + <_> + + <_> + 1 0 6 14 -1. + + <_> + 3 0 2 14 3. + + + + <_> + + <_> + 13 0 4 14 -1. + + <_> + 15 0 2 7 2. + + <_> + 13 7 2 7 2. + + + + <_> + + <_> + 5 0 4 14 -1. + + <_> + 5 0 2 7 2. + + <_> + 7 7 2 7 2. + + + + <_> + + <_> + 13 2 6 4 -1. + + <_> + 13 2 3 4 2. + + + + <_> + + <_> + 1 7 12 4 -1. + + <_> + 1 7 6 2 2. + + <_> + 7 9 6 2 2. + + + + <_> + + <_> + 4 13 18 3 -1. + + <_> + 4 14 18 1 3. + + + + <_> + + <_> + 2 6 2 12 -1. + + <_> + 2 12 2 6 2. + + + + <_> + + <_> + 4 11 16 4 -1. + + <_> + 12 11 8 2 2. + + <_> + 4 13 8 2 2. + + + + <_> + + <_> + 2 11 16 4 -1. + + <_> + 2 11 8 2 2. + + <_> + 10 13 8 2 2. + + + + <_> + + <_> + 10 12 12 4 -1. + + <_> + 16 12 6 2 2. + + <_> + 10 14 6 2 2. + + + + <_> + + <_> + 0 12 12 4 -1. + + <_> + 0 12 6 2 2. + + <_> + 6 14 6 2 2. + + + + <_> + + <_> + 12 12 10 6 -1. + + <_> + 17 12 5 3 2. + + <_> + 12 15 5 3 2. + + + + <_> + + <_> + 0 10 10 8 -1. + + <_> + 0 10 5 4 2. + + <_> + 5 14 5 4 2. + + + + <_> + + <_> + 8 0 7 4 -1. + + <_> + 8 2 7 2 2. + + + + <_> + + <_> + 0 3 14 3 -1. + + <_> + 0 4 14 1 3. + + + + <_> + + <_> + 15 1 6 8 -1. + + <_> + 18 1 3 4 2. + + <_> + 15 5 3 4 2. + + + + <_> + + <_> + 2 3 7 4 -1. + + <_> + 2 5 7 2 2. + + + + <_> + + <_> + 13 2 6 4 -1. + + <_> + 13 2 3 4 2. + + + + <_> + + <_> + 3 2 6 4 -1. + + <_> + 6 2 3 4 2. + + + + <_> + + <_> + 5 1 16 4 -1. + + <_> + 5 2 16 2 2. + + + + <_> + + <_> + 4 15 13 3 -1. + + <_> + 4 16 13 1 3. + + + + <_> + + <_> + 12 6 3 12 -1. + + <_> + 13 6 1 12 3. + + + + <_> + + <_> + 0 16 16 2 -1. + + <_> + 8 16 8 2 2. + + + + <_> + + <_> + 3 2 16 10 -1. + + <_> + 3 7 16 5 2. + + + + <_> + + <_> + 7 1 12 4 -1. + + <_> + 10 4 6 4 2. + + + 1 + + <_> + + <_> + 14 1 2 9 -1. + + <_> + 14 1 1 9 2. + + + 1 + + <_> + + <_> + 4 10 3 8 -1. + + <_> + 4 14 3 4 2. + + + + <_> + + <_> + 11 12 6 6 -1. + + <_> + 11 14 6 2 3. + + + + <_> + + <_> + 5 12 6 6 -1. + + <_> + 5 14 6 2 3. + + + + <_> + + <_> + 12 6 3 12 -1. + + <_> + 13 6 1 12 3. + + + + <_> + + <_> + 10 6 8 3 -1. + + <_> + 9 7 8 1 3. + + + 1 + + <_> + + <_> + 12 6 3 12 -1. + + <_> + 13 6 1 12 3. + + + + <_> + + <_> + 7 6 3 12 -1. + + <_> + 8 6 1 12 3. + + + + <_> + + <_> + 14 1 2 9 -1. + + <_> + 14 1 1 9 2. + + + 1 + + <_> + + <_> + 11 4 10 3 -1. + + <_> + 10 5 10 1 3. + + + 1 + + <_> + + <_> + 8 11 9 4 -1. + + <_> + 11 11 3 4 3. + + + + <_> + + <_> + 7 5 2 12 -1. + + <_> + 8 5 1 12 2. + + + + <_> + + <_> + 13 1 3 16 -1. + + <_> + 14 1 1 16 3. + + + + <_> + + <_> + 7 4 6 6 -1. + + <_> + 9 4 2 6 3. + + + + <_> + + <_> + 10 4 2 12 -1. + + <_> + 10 4 1 12 2. + + + + <_> + + <_> + 0 0 18 5 -1. + + <_> + 9 0 9 5 2. + + + + <_> + + <_> + 16 3 2 12 -1. + + <_> + 16 3 1 12 2. + + + 1 + + <_> + + <_> + 6 3 12 2 -1. + + <_> + 6 3 12 1 2. + + + 1 + + <_> + + <_> + 13 6 4 7 -1. + + <_> + 14 7 2 7 2. + + + 1 + + <_> + + <_> + 7 3 13 2 -1. + + <_> + 7 3 13 1 2. + + + 1 + + <_> + + <_> + 5 14 17 4 -1. + + <_> + 5 15 17 2 2. + + + + <_> + + <_> + 0 13 18 3 -1. + + <_> + 0 14 18 1 3. + + + + <_> + + <_> + 6 13 14 3 -1. + + <_> + 6 14 14 1 3. + + + + <_> + + <_> + 2 13 14 3 -1. + + <_> + 2 14 14 1 3. + + + + <_> + + <_> + 5 13 12 2 -1. + + <_> + 5 14 12 1 2. + + + + <_> + + <_> + 0 5 4 8 -1. + + <_> + 0 9 4 4 2. + + + + <_> + + <_> + 15 7 6 8 -1. + + <_> + 18 7 3 4 2. + + <_> + 15 11 3 4 2. + + + + <_> + + <_> + 9 2 4 7 -1. + + <_> + 11 2 2 7 2. + + + + <_> + + <_> + 8 4 14 3 -1. + + <_> + 8 5 14 1 3. + + + + <_> + + <_> + 0 4 12 3 -1. + + <_> + 0 5 12 1 3. + + + + <_> + + <_> + 13 2 4 9 -1. + + <_> + 13 5 4 3 3. + + + + <_> + + <_> + 5 2 4 9 -1. + + <_> + 5 5 4 3 3. + + + + <_> + + <_> + 12 6 6 4 -1. + + <_> + 12 8 6 2 2. + + + + <_> + + <_> + 5 5 12 3 -1. + + <_> + 11 5 6 3 2. + + + + <_> + + <_> + 7 1 8 12 -1. + + <_> + 7 4 8 6 2. + + + + <_> + + <_> + 9 3 6 7 -1. + + <_> + 11 5 2 7 3. + + + 1 + + <_> + + <_> + 12 1 9 6 -1. + + <_> + 10 3 9 2 3. + + + 1 + + <_> + + <_> + 11 7 8 3 -1. + + <_> + 11 7 4 3 2. + + + 1 + + <_> + + <_> + 14 1 2 9 -1. + + <_> + 14 1 1 9 2. + + + 1 + + <_> + + <_> + 1 7 6 8 -1. + + <_> + 1 7 3 4 2. + + <_> + 4 11 3 4 2. + + + + <_> + + <_> + 11 0 4 6 -1. + + <_> + 11 0 2 6 2. + + + + <_> + + <_> + 7 0 4 6 -1. + + <_> + 9 0 2 6 2. + + + + <_> + + <_> + 0 7 22 4 -1. + + <_> + 11 7 11 2 2. + + <_> + 0 9 11 2 2. + + + + <_> + + <_> + 3 5 4 8 -1. + + <_> + 3 9 4 4 2. + + + + <_> + + <_> + 5 4 12 3 -1. + + <_> + 9 4 4 3 3. + + + + <_> + + <_> + 10 2 12 3 -1. + + <_> + 10 2 6 3 2. + + + 1 + + <_> + + <_> + 5 2 6 16 -1. + + <_> + 5 10 6 8 2. + + + + <_> + + <_> + 12 6 8 4 -1. + + <_> + 12 6 8 2 2. + + + 1 + + <_> + + <_> + 3 12 6 6 -1. + + <_> + 5 12 2 6 3. + + + + <_> + + <_> + 12 1 3 12 -1. + + <_> + 12 1 3 6 2. + + + 1 + + <_> + + <_> + 10 1 12 3 -1. + + <_> + 10 1 6 3 2. + + + 1 + + <_> + + <_> + 4 8 16 4 -1. + + <_> + 8 8 8 4 2. + + + + <_> + + <_> + 6 10 4 6 -1. + + <_> + 8 10 2 6 2. + + + + <_> + + <_> + 7 14 9 4 -1. + + <_> + 10 14 3 4 3. + + + + <_> + + <_> + 8 10 4 7 -1. + + <_> + 10 10 2 7 2. + + + + <_> + + <_> + 12 12 4 6 -1. + + <_> + 12 12 2 6 2. + + + + <_> + + <_> + 6 12 4 6 -1. + + <_> + 8 12 2 6 2. + + + + <_> + + <_> + 9 12 4 6 -1. + + <_> + 9 15 4 3 2. + + + + <_> + + <_> + 5 12 6 6 -1. + + <_> + 7 12 2 6 3. + + + + <_> + + <_> + 6 2 11 16 -1. + + <_> + 6 6 11 8 2. + + + + <_> + + <_> + 11 2 6 2 -1. + + <_> + 11 2 6 1 2. + + + 1 + + <_> + + <_> + 10 1 6 8 -1. + + <_> + 13 1 3 4 2. + + <_> + 10 5 3 4 2. + + + + <_> + + <_> + 5 2 12 2 -1. + + <_> + 11 2 6 2 2. + + + + <_> + + <_> + 10 13 8 3 -1. + + <_> + 10 13 4 3 2. + + + + <_> + + <_> + 5 0 12 6 -1. + + <_> + 11 0 6 6 2. + + + + <_> + + <_> + 10 7 12 3 -1. + + <_> + 10 8 12 1 3. + + + + <_> + + <_> + 0 7 12 3 -1. + + <_> + 0 8 12 1 3. + + + + <_> + + <_> + 20 0 2 18 -1. + + <_> + 20 9 2 9 2. + + + + <_> + + <_> + 0 0 2 18 -1. + + <_> + 0 9 2 9 2. + + + + <_> + + <_> + 14 6 6 12 -1. + + <_> + 17 6 3 6 2. + + <_> + 14 12 3 6 2. + + + + <_> + + <_> + 1 5 6 10 -1. + + <_> + 1 10 6 5 2. + + + + <_> + + <_> + 16 1 4 12 -1. + + <_> + 16 5 4 4 3. + + + + <_> + + <_> + 2 1 4 12 -1. + + <_> + 2 5 4 4 3. + + + + <_> + + <_> + 3 12 16 4 -1. + + <_> + 11 12 8 2 2. + + <_> + 3 14 8 2 2. + + + + <_> + + <_> + 0 2 12 2 -1. + + <_> + 0 3 12 1 2. + + + + <_> + + <_> + 6 2 13 3 -1. + + <_> + 6 3 13 1 3. + + + + <_> + + <_> + 1 0 10 6 -1. + + <_> + 1 0 5 3 2. + + <_> + 6 3 5 3 2. + + + + <_> + + <_> + 9 11 12 5 -1. + + <_> + 13 11 4 5 3. + + + + <_> + + <_> + 2 6 6 12 -1. + + <_> + 2 6 3 6 2. + + <_> + 5 12 3 6 2. + + + + <_> + + <_> + 9 12 8 6 -1. + + <_> + 13 12 4 3 2. + + <_> + 9 15 4 3 2. + + + + <_> + + <_> + 1 7 6 8 -1. + + <_> + 1 7 3 4 2. + + <_> + 4 11 3 4 2. + + + + <_> + + <_> + 14 6 3 8 -1. + + <_> + 15 7 1 8 3. + + + 1 + + <_> + + <_> + 2 14 12 4 -1. + + <_> + 6 14 4 4 3. + + + + <_> + + <_> + 14 4 2 11 -1. + + <_> + 14 4 1 11 2. + + + 1 + + <_> + + <_> + 8 6 8 3 -1. + + <_> + 7 7 8 1 3. + + + 1 + + <_> + + <_> + 6 12 12 3 -1. + + <_> + 6 13 12 1 3. + + + + <_> + + <_> + 2 3 18 3 -1. + + <_> + 2 4 18 1 3. + + + + <_> + + <_> + 11 6 9 9 -1. + + <_> + 14 6 3 9 3. + + + + <_> + + <_> + 3 13 11 4 -1. + + <_> + 3 15 11 2 2. + + + + <_> + + <_> + 17 5 4 6 -1. + + <_> + 17 5 2 6 2. + + + + <_> + + <_> + 1 5 4 6 -1. + + <_> + 3 5 2 6 2. + + + + <_> + + <_> + 6 0 16 3 -1. + + <_> + 10 0 8 3 2. + + + + <_> + + <_> + 8 6 3 12 -1. + + <_> + 9 6 1 12 3. + + + + <_> + + <_> + 14 2 2 8 -1. + + <_> + 14 2 1 8 2. + + + 1 + + <_> + + <_> + 9 0 12 3 -1. + + <_> + 9 0 6 3 2. + + + 1 + + <_> + + <_> + 6 0 16 3 -1. + + <_> + 10 0 8 3 2. + + + + <_> + + <_> + 0 0 16 3 -1. + + <_> + 4 0 8 3 2. + + + + <_> + + <_> + 8 12 14 3 -1. + + <_> + 8 13 14 1 3. + + + + <_> + + <_> + 8 4 11 2 -1. + + <_> + 8 4 11 1 2. + + + 1 + + <_> + + <_> + 2 5 20 13 -1. + + <_> + 2 5 10 13 2. + + + + <_> + + <_> + 0 2 18 9 -1. + + <_> + 6 5 6 3 9. + + + + <_> + + <_> + 10 13 12 3 -1. + + <_> + 10 14 12 1 3. + + + + <_> + + <_> + 8 11 6 7 -1. + + <_> + 10 11 2 7 3. + + + + <_> + + <_> + 5 6 12 11 -1. + + <_> + 9 6 4 11 3. + + + + <_> + + <_> + 3 6 6 6 -1. + + <_> + 5 6 2 6 3. + + + + <_> + + <_> + 13 4 6 13 -1. + + <_> + 15 4 2 13 3. + + + + <_> + + <_> + 3 4 6 13 -1. + + <_> + 5 4 2 13 3. + + + + <_> + + <_> + 5 10 12 3 -1. + + <_> + 9 10 4 3 3. + + + + <_> + + <_> + 5 8 12 6 -1. + + <_> + 8 8 6 6 2. + + + + <_> + + <_> + 14 2 2 8 -1. + + <_> + 14 2 1 8 2. + + + 1 + + <_> + + <_> + 8 2 8 2 -1. + + <_> + 8 2 8 1 2. + + + 1 + + <_> + + <_> + 8 6 9 5 -1. + + <_> + 11 6 3 5 3. + + + + <_> + + <_> + 0 3 14 4 -1. + + <_> + 0 3 7 2 2. + + <_> + 7 5 7 2 2. + + + + <_> + + <_> + 12 1 3 8 -1. + + <_> + 13 2 1 8 3. + + + 1 + + <_> + + <_> + 10 1 8 3 -1. + + <_> + 9 2 8 1 3. + + + 1 + + <_> + + <_> + 14 3 6 6 -1. + + <_> + 14 5 6 2 3. + + + + <_> + + <_> + 4 1 6 10 -1. + + <_> + 4 1 3 5 2. + + <_> + 7 6 3 5 2. + + + + <_> + + <_> + 18 1 3 13 -1. + + <_> + 19 1 1 13 3. + + + + <_> + + <_> + 1 1 3 13 -1. + + <_> + 2 1 1 13 3. + + + + <_> + + <_> + 11 1 2 8 -1. + + <_> + 11 1 1 8 2. + + + 1 + + <_> + + <_> + 11 1 8 2 -1. + + <_> + 11 1 8 1 2. + + + 1 + + <_> + + <_> + 8 4 6 6 -1. + + <_> + 8 6 6 2 3. + + + + <_> + + <_> + 5 4 7 6 -1. + + <_> + 5 6 7 2 3. + + + + <_> + + <_> + 9 11 13 3 -1. + + <_> + 9 12 13 1 3. + + + + <_> + + <_> + 0 11 13 3 -1. + + <_> + 0 12 13 1 3. + + + + <_> + + <_> + 12 10 9 8 -1. + + <_> + 12 14 9 4 2. + + + + <_> + + <_> + 1 10 9 8 -1. + + <_> + 1 14 9 4 2. + + + + <_> + + <_> + 4 10 18 8 -1. + + <_> + 13 10 9 4 2. + + <_> + 4 14 9 4 2. + + + + <_> + + <_> + 0 10 18 8 -1. + + <_> + 0 10 9 4 2. + + <_> + 9 14 9 4 2. + + + + <_> + + <_> + 12 2 4 12 -1. + + <_> + 12 2 2 12 2. + + + 1 + + <_> + + <_> + 0 5 20 13 -1. + + <_> + 10 5 10 13 2. + + + + <_> + + <_> + 10 6 9 6 -1. + + <_> + 10 8 9 2 3. + + + + <_> + + <_> + 3 6 9 6 -1. + + <_> + 3 8 9 2 3. + + + + <_> + + <_> + 7 4 15 8 -1. + + <_> + 7 6 15 4 2. + + + + <_> + + <_> + 9 2 12 2 -1. + + <_> + 9 2 12 1 2. + + + 1 + + <_> + + <_> + 12 6 6 4 -1. + + <_> + 12 6 6 2 2. + + + 1 + + <_> + + <_> + 7 0 13 3 -1. + + <_> + 6 1 13 1 3. + + + 1 + + <_> + + <_> + 3 0 18 2 -1. + + <_> + 3 0 9 2 2. + + + + <_> + + <_> + 4 5 13 12 -1. + + <_> + 4 9 13 4 3. + + + + <_> + + <_> + 4 6 18 9 -1. + + <_> + 10 9 6 3 9. + + + + <_> + + <_> + 8 5 6 11 -1. + + <_> + 10 5 2 11 3. + + + + <_> + + <_> + 6 2 16 16 -1. + + <_> + 6 6 16 8 2. + + + + <_> + + <_> + 0 2 16 16 -1. + + <_> + 0 6 16 8 2. + + + + <_> + + <_> + 18 1 2 12 -1. + + <_> + 18 7 2 6 2. + + + + <_> + + <_> + 2 1 2 12 -1. + + <_> + 2 7 2 6 2. + + + + <_> + + <_> + 8 3 14 9 -1. + + <_> + 8 6 14 3 3. + + + + <_> + + <_> + 0 3 14 9 -1. + + <_> + 0 6 14 3 3. + + + + <_> + + <_> + 10 6 4 9 -1. + + <_> + 10 9 4 3 3. + + + + <_> + + <_> + 0 6 3 12 -1. + + <_> + 0 12 3 6 2. + + + + <_> + + <_> + 16 2 6 9 -1. + + <_> + 13 5 6 3 3. + + + 1 + + <_> + + <_> + 10 0 12 4 -1. + + <_> + 9 1 12 2 2. + + + 1 + + <_> + + <_> + 11 0 10 18 -1. + + <_> + 16 0 5 9 2. + + <_> + 11 9 5 9 2. + + + + <_> + + <_> + 1 0 10 18 -1. + + <_> + 1 0 5 9 2. + + <_> + 6 9 5 9 2. + + + + <_> + + <_> + 7 12 14 3 -1. + + <_> + 7 12 7 3 2. + + + + <_> + + <_> + 7 11 8 3 -1. + + <_> + 11 11 4 3 2. + + + + <_> + + <_> + 2 13 18 4 -1. + + <_> + 2 13 9 4 2. + + + + <_> + + <_> + 10 6 4 6 -1. + + <_> + 10 6 2 6 2. + + + 1 + + <_> + + <_> + 8 9 6 9 -1. + + <_> + 10 9 2 9 3. + + + + <_> + + <_> + 3 11 13 3 -1. + + <_> + 3 12 13 1 3. + + + + <_> + + <_> + 18 10 4 6 -1. + + <_> + 18 10 2 6 2. + + + + <_> + + <_> + 5 5 9 5 -1. + + <_> + 8 5 3 5 3. + + + + <_> + + <_> + 13 0 2 14 -1. + + <_> + 13 0 1 14 2. + + + + <_> + + <_> + 2 0 18 7 -1. + + <_> + 8 0 6 7 3. + + + + <_> + + <_> + 13 4 6 8 -1. + + <_> + 16 4 3 4 2. + + <_> + 13 8 3 4 2. + + + + <_> + + <_> + 3 4 6 8 -1. + + <_> + 3 4 3 4 2. + + <_> + 6 8 3 4 2. + + + + <_> + + <_> + 8 5 12 2 -1. + + <_> + 8 6 12 1 2. + + + + <_> + + <_> + 7 0 3 12 -1. + + <_> + 8 0 1 12 3. + + + + <_> + + <_> + 15 0 3 10 -1. + + <_> + 16 1 1 10 3. + + + 1 + + <_> + + <_> + 2 4 12 12 -1. + + <_> + 6 8 4 4 9. + + + + <_> + + <_> + 5 10 13 3 -1. + + <_> + 5 11 13 1 3. + + + + <_> + + <_> + 5 15 12 2 -1. + + <_> + 5 16 12 1 2. + + + + <_> + + <_> + 17 8 5 6 -1. + + <_> + 17 11 5 3 2. + + + + <_> + + <_> + 5 12 6 6 -1. + + <_> + 5 14 6 2 3. + + + + <_> + + <_> + 10 6 4 7 -1. + + <_> + 10 6 2 7 2. + + + 1 + + <_> + + <_> + 12 3 4 10 -1. + + <_> + 13 4 2 10 2. + + + 1 + + <_> + + <_> + 10 3 10 4 -1. + + <_> + 9 4 10 2 2. + + + 1 + + <_> + + <_> + 12 4 2 12 -1. + + <_> + 12 4 1 12 2. + + + 1 + + <_> + + <_> + 1 11 15 3 -1. + + <_> + 6 11 5 3 3. + + + + <_> + + <_> + 11 6 6 9 -1. + + <_> + 13 6 2 9 3. + + + + <_> + + <_> + 5 6 6 9 -1. + + <_> + 7 6 2 9 3. + + + + <_> + + <_> + 8 5 6 6 -1. + + <_> + 10 5 2 6 3. + + + + <_> + + <_> + 1 2 6 8 -1. + + <_> + 1 2 3 4 2. + + <_> + 4 6 3 4 2. + + + + <_> + + <_> + 14 0 4 9 -1. + + <_> + 14 3 4 3 3. + + + + <_> + + <_> + 0 0 18 9 -1. + + <_> + 0 3 18 3 3. + + + + <_> + + <_> + 9 5 5 12 -1. + + <_> + 9 8 5 6 2. + + + + <_> + + <_> + 3 5 16 3 -1. + + <_> + 3 6 16 1 3. + + + + <_> + + <_> + 16 2 6 8 -1. + + <_> + 19 2 3 4 2. + + <_> + 16 6 3 4 2. + + + + <_> + + <_> + 0 2 6 8 -1. + + <_> + 0 2 3 4 2. + + <_> + 3 6 3 4 2. + + + + <_> + + <_> + 5 2 12 16 -1. + + <_> + 5 10 12 8 2. + + + + <_> + + <_> + 5 11 8 6 -1. + + <_> + 5 11 4 3 2. + + <_> + 9 14 4 3 2. + + + + <_> + + <_> + 8 2 6 8 -1. + + <_> + 11 2 3 4 2. + + <_> + 8 6 3 4 2. + + + + <_> + + <_> + 0 6 7 12 -1. + + <_> + 0 10 7 4 3. + + + + <_> + + <_> + 16 8 6 8 -1. + + <_> + 16 10 6 4 2. + + + + <_> + + <_> + 0 8 6 8 -1. + + <_> + 0 10 6 4 2. + + + + <_> + + <_> + 4 0 17 3 -1. + + <_> + 4 1 17 1 3. + + + + <_> + + <_> + 7 4 4 14 -1. + + <_> + 8 4 2 14 2. + + + + <_> + + <_> + 9 5 5 12 -1. + + <_> + 9 8 5 6 2. + + + + <_> + + <_> + 10 4 10 4 -1. + + <_> + 9 5 10 2 2. + + + 1 + + <_> + + <_> + 13 1 3 13 -1. + + <_> + 14 2 1 13 3. + + + 1 + + <_> + + <_> + 9 1 13 3 -1. + + <_> + 8 2 13 1 3. + + + 1 + + <_> + + <_> + 4 16 14 2 -1. + + <_> + 4 17 14 1 2. + + + + <_> + + <_> + 0 16 15 2 -1. + + <_> + 0 17 15 1 2. + + + + <_> + + <_> + 11 4 2 6 -1. + + <_> + 11 4 1 6 2. + + + 1 + + <_> + + <_> + 0 6 4 9 -1. + + <_> + 0 9 4 3 3. + + + + <_> + + <_> + 14 0 7 6 -1. + + <_> + 12 2 7 2 3. + + + 1 + + <_> + + <_> + 8 4 6 10 -1. + + <_> + 8 4 3 5 2. + + <_> + 11 9 3 5 2. + + + + <_> + + <_> + 7 7 8 10 -1. + + <_> + 11 7 4 5 2. + + <_> + 7 12 4 5 2. + + + + <_> + + <_> + 5 6 12 8 -1. + + <_> + 5 6 6 4 2. + + <_> + 11 10 6 4 2. + + + + <_> + + <_> + 8 6 8 8 -1. + + <_> + 12 6 4 4 2. + + <_> + 8 10 4 4 2. + + + + <_> + + <_> + 6 6 8 8 -1. + + <_> + 6 6 4 4 2. + + <_> + 10 10 4 4 2. + + + + <_> + + <_> + 12 4 6 6 -1. + + <_> + 10 6 6 2 3. + + + 1 + + <_> + + <_> + 5 7 10 8 -1. + + <_> + 5 7 5 4 2. + + <_> + 10 11 5 4 2. + + + + <_> + + <_> + 4 5 18 3 -1. + + <_> + 4 6 18 1 3. + + + + <_> + + <_> + 3 16 15 2 -1. + + <_> + 3 17 15 1 2. + + + + <_> + + <_> + 3 10 16 2 -1. + + <_> + 3 11 16 1 2. + + + + <_> + + <_> + 3 12 6 6 -1. + + <_> + 5 12 2 6 3. + + + + <_> + + <_> + 18 2 3 13 -1. + + <_> + 19 2 1 13 3. + + + + <_> + + <_> + 4 10 12 4 -1. + + <_> + 8 10 4 4 3. + + + + <_> + + <_> + 7 7 14 7 -1. + + <_> + 7 7 7 7 2. + + + + <_> + + <_> + 1 7 14 7 -1. + + <_> + 8 7 7 7 2. + + + + <_> + + <_> + 11 0 8 13 -1. + + <_> + 11 0 4 13 2. + + + + <_> + + <_> + 0 6 4 12 -1. + + <_> + 0 6 2 6 2. + + <_> + 2 12 2 6 2. + + + + <_> + + <_> + 14 2 2 12 -1. + + <_> + 14 2 1 12 2. + + + 1 + + <_> + + <_> + 2 2 8 12 -1. + + <_> + 2 2 4 6 2. + + <_> + 6 8 4 6 2. + + + + <_> + + <_> + 17 0 4 16 -1. + + <_> + 17 8 4 8 2. + + + + <_> + + <_> + 1 0 4 16 -1. + + <_> + 1 8 4 8 2. + + + + <_> + + <_> + 6 1 16 16 -1. + + <_> + 6 9 16 8 2. + + + + <_> + + <_> + 8 0 6 7 -1. + + <_> + 10 2 2 7 3. + + + 1 + + <_> + + <_> + 15 1 6 6 -1. + + <_> + 13 3 6 2 3. + + + 1 + + <_> + + <_> + 7 1 6 6 -1. + + <_> + 9 3 2 6 3. + + + 1 + + <_> + + <_> + 14 2 2 12 -1. + + <_> + 14 2 1 12 2. + + + 1 + + <_> + + <_> + 5 11 12 6 -1. + + <_> + 5 14 12 3 2. + + + + <_> + + <_> + 5 13 12 4 -1. + + <_> + 5 14 12 2 2. + + + + <_> + + <_> + 2 15 18 2 -1. + + <_> + 2 16 18 1 2. + + + + <_> + + <_> + 18 4 4 14 -1. + + <_> + 20 4 2 7 2. + + <_> + 18 11 2 7 2. + + + + <_> + + <_> + 0 4 4 14 -1. + + <_> + 0 4 2 7 2. + + <_> + 2 11 2 7 2. + + + + <_> + + <_> + 11 0 3 12 -1. + + <_> + 12 0 1 12 3. + + + + <_> + + <_> + 9 3 4 6 -1. + + <_> + 9 6 4 3 2. + + + + <_> + + <_> + 7 4 15 10 -1. + + <_> + 7 9 15 5 2. + + + + <_> + + <_> + 4 2 9 12 -1. + + <_> + 4 6 9 4 3. + + + + <_> + + <_> + 3 1 17 3 -1. + + <_> + 3 2 17 1 3. + + + + <_> + + <_> + 0 1 16 3 -1. + + <_> + 0 2 16 1 3. + + + + <_> + + <_> + 7 4 15 10 -1. + + <_> + 7 9 15 5 2. + + + + <_> + + <_> + 0 4 15 10 -1. + + <_> + 0 9 15 5 2. + + + + <_> + + <_> + 15 0 6 18 -1. + + <_> + 15 9 6 9 2. + + + + <_> + + <_> + 3 14 12 4 -1. + + <_> + 3 14 6 2 2. + + <_> + 9 16 6 2 2. + + + + <_> + + <_> + 13 0 9 5 -1. + + <_> + 16 3 3 5 3. + + + 1 + + <_> + + <_> + 9 7 9 2 -1. + + <_> + 9 7 9 1 2. + + + 1 + + <_> + + <_> + 12 6 3 7 -1. + + <_> + 13 7 1 7 3. + + + 1 + + <_> + + <_> + 3 4 8 8 -1. + + <_> + 7 4 4 8 2. + + + + <_> + + <_> + 7 8 12 3 -1. + + <_> + 11 8 4 3 3. + + + + <_> + + <_> + 8 6 5 6 -1. + + <_> + 8 6 5 3 2. + + + 1 + + <_> + + <_> + 10 7 10 6 -1. + + <_> + 10 10 10 3 2. + + + + <_> + + <_> + 0 9 16 3 -1. + + <_> + 0 10 16 1 3. + + + + <_> + + <_> + 7 9 12 3 -1. + + <_> + 7 10 12 1 3. + + + + <_> + + <_> + 2 10 8 6 -1. + + <_> + 2 13 8 3 2. + + + + <_> + + <_> + 16 6 4 12 -1. + + <_> + 16 9 4 6 2. + + + + <_> + + <_> + 3 11 8 6 -1. + + <_> + 3 11 4 3 2. + + <_> + 7 14 4 3 2. + + + + <_> + + <_> + 4 5 16 10 -1. + + <_> + 12 5 8 5 2. + + <_> + 4 10 8 5 2. + + + + <_> + + <_> + 7 10 3 8 -1. + + <_> + 7 14 3 4 2. + + + + <_> + + <_> + 9 14 6 4 -1. + + <_> + 9 16 6 2 2. + + + + <_> + + <_> + 2 9 15 9 -1. + + <_> + 2 12 15 3 3. + + + + <_> + + <_> + 11 2 8 6 -1. + + <_> + 15 2 4 3 2. + + <_> + 11 5 4 3 2. + + + + <_> + + <_> + 4 11 8 6 -1. + + <_> + 4 13 8 2 3. + + + + <_> + + <_> + 16 0 2 14 -1. + + <_> + 16 0 1 14 2. + + + 1 + + <_> + + <_> + 6 0 14 2 -1. + + <_> + 6 0 14 1 2. + + + 1 + + <_> + + <_> + 13 9 7 6 -1. + + <_> + 13 11 7 2 3. + + + + <_> + + <_> + 10 6 7 3 -1. + + <_> + 9 7 7 1 3. + + + 1 + + <_> + + <_> + 18 2 3 13 -1. + + <_> + 19 2 1 13 3. + + + + <_> + + <_> + 1 2 3 13 -1. + + <_> + 2 2 1 13 3. + + + + <_> + + <_> + 5 1 12 4 -1. + + <_> + 11 1 6 2 2. + + <_> + 5 3 6 2 2. + + + + <_> + + <_> + 7 8 6 6 -1. + + <_> + 7 10 6 2 3. + + + + <_> + + <_> + 8 13 14 3 -1. + + <_> + 8 14 14 1 3. + + + + <_> + + <_> + 10 5 6 6 -1. + + <_> + 12 7 2 6 3. + + + 1 + + <_> + + <_> + 15 6 4 8 -1. + + <_> + 16 7 2 8 2. + + + 1 + + <_> + + <_> + 0 13 14 4 -1. + + <_> + 0 13 7 2 2. + + <_> + 7 15 7 2 2. + + + + <_> + + <_> + 1 7 21 6 -1. + + <_> + 8 9 7 2 9. + + + + <_> + + <_> + 7 4 6 8 -1. + + <_> + 7 4 3 4 2. + + <_> + 10 8 3 4 2. + + + + <_> + + <_> + 7 4 8 8 -1. + + <_> + 11 4 4 4 2. + + <_> + 7 8 4 4 2. + + + + <_> + + <_> + 10 6 7 4 -1. + + <_> + 9 7 7 2 2. + + + 1 + + <_> + + <_> + 11 2 6 7 -1. + + <_> + 11 2 3 7 2. + + + 1 + + <_> + + <_> + 11 2 7 6 -1. + + <_> + 11 2 7 3 2. + + + 1 + + <_> + + <_> + 11 4 8 6 -1. + + <_> + 11 4 4 6 2. + + + 1 + + <_> + + <_> + 11 4 6 8 -1. + + <_> + 11 4 6 4 2. + + + 1 + + <_> + + <_> + 12 3 8 5 -1. + + <_> + 12 3 4 5 2. + + + 1 + + <_> + + <_> + 10 3 5 8 -1. + + <_> + 10 3 5 4 2. + + + 1 + + <_> + + <_> + 13 0 9 5 -1. + + <_> + 16 3 3 5 3. + + + 1 + + <_> + + <_> + 2 6 10 12 -1. + + <_> + 2 9 10 6 2. + + + + <_> + + <_> + 15 6 5 12 -1. + + <_> + 15 9 5 6 2. + + + + <_> + + <_> + 3 7 13 3 -1. + + <_> + 3 8 13 1 3. + + + + <_> + + <_> + 4 7 17 3 -1. + + <_> + 4 8 17 1 3. + + + + <_> + + <_> + 2 9 7 6 -1. + + <_> + 2 11 7 2 3. + + + + <_> + + <_> + 13 9 9 4 -1. + + <_> + 13 11 9 2 2. + + + + <_> + + <_> + 9 0 5 9 -1. + + <_> + 6 3 5 3 3. + + + 1 + + <_> + + <_> + 9 3 8 3 -1. + + <_> + 9 3 4 3 2. + + + + <_> + + <_> + 3 0 4 13 -1. + + <_> + 4 0 2 13 2. + + + + <_> + + <_> + 13 0 8 6 -1. + + <_> + 15 0 4 6 2. + + + + <_> + + <_> + 3 0 6 5 -1. + + <_> + 6 0 3 5 2. + + + + <_> + + <_> + 9 0 12 5 -1. + + <_> + 9 0 6 5 2. + + + + <_> + + <_> + 1 2 6 8 -1. + + <_> + 3 2 2 8 3. + + + + <_> + + <_> + 18 2 4 6 -1. + + <_> + 18 2 2 6 2. + + + + <_> + + <_> + 0 2 4 6 -1. + + <_> + 2 2 2 6 2. + + + + <_> + + <_> + 16 9 6 6 -1. + + <_> + 16 11 6 2 3. + + + + <_> + + <_> + 10 0 12 6 -1. + + <_> + 13 3 6 6 2. + + + 1 + + <_> + + <_> + 14 2 3 12 -1. + + <_> + 10 6 3 4 3. + + + 1 + + <_> + + <_> + 8 3 6 7 -1. + + <_> + 11 3 3 7 2. + + + + <_> + + <_> + 16 1 3 15 -1. + + <_> + 17 1 1 15 3. + + + + <_> + + <_> + 0 1 6 8 -1. + + <_> + 2 1 2 8 3. + + + + <_> + + <_> + 13 0 3 14 -1. + + <_> + 14 0 1 14 3. + + + + <_> + + <_> + 6 0 3 14 -1. + + <_> + 7 0 1 14 3. + + + + <_> + + <_> + 4 13 18 2 -1. + + <_> + 4 13 9 2 2. + + + + <_> + + <_> + 2 9 15 3 -1. + + <_> + 7 9 5 3 3. + + + + <_> + + <_> + 9 5 10 6 -1. + + <_> + 14 5 5 3 2. + + <_> + 9 8 5 3 2. + + + + <_> + + <_> + 3 5 10 6 -1. + + <_> + 3 5 5 3 2. + + <_> + 8 8 5 3 2. + + + + <_> + + <_> + 14 3 2 12 -1. + + <_> + 14 3 1 12 2. + + + 1 + + <_> + + <_> + 8 3 12 2 -1. + + <_> + 8 3 12 1 2. + + + 1 + + <_> + + <_> + 12 7 6 6 -1. + + <_> + 14 7 2 6 3. + + + + <_> + + <_> + 4 7 6 6 -1. + + <_> + 6 7 2 6 3. + + + + <_> + + <_> + 7 0 8 3 -1. + + <_> + 7 0 4 3 2. + + + + <_> + + <_> + 9 0 4 6 -1. + + <_> + 11 0 2 6 2. + + + + <_> + + <_> + 10 0 12 12 -1. + + <_> + 13 0 6 12 2. + + + + <_> + + <_> + 0 0 12 12 -1. + + <_> + 3 0 6 12 2. + + + + <_> + + <_> + 16 5 6 4 -1. + + <_> + 16 5 3 4 2. + + + + <_> + + <_> + 0 5 6 4 -1. + + <_> + 3 5 3 4 2. + + + + <_> + + <_> + 9 0 12 5 -1. + + <_> + 9 0 6 5 2. + + + + <_> + + <_> + 1 8 8 10 -1. + + <_> + 1 8 4 5 2. + + <_> + 5 13 4 5 2. + + + + <_> + + <_> + 8 16 14 2 -1. + + <_> + 8 16 7 2 2. + + + + <_> + + <_> + 0 11 16 3 -1. + + <_> + 8 11 8 3 2. + + + + <_> + + <_> + 10 16 12 2 -1. + + <_> + 10 16 6 2 2. + + + + <_> + + <_> + 0 16 12 2 -1. + + <_> + 6 16 6 2 2. + + + + <_> + + <_> + 3 11 18 6 -1. + + <_> + 12 11 9 3 2. + + <_> + 3 14 9 3 2. + + + + <_> + + <_> + 7 13 6 4 -1. + + <_> + 7 15 6 2 2. + + + + <_> + + <_> + 10 11 6 6 -1. + + <_> + 10 13 6 2 3. + + + + <_> + + <_> + 6 14 9 4 -1. + + <_> + 9 14 3 4 3. + + + + <_> + + <_> + 5 4 16 10 -1. + + <_> + 5 9 16 5 2. + + + + <_> + + <_> + 11 7 3 8 -1. + + <_> + 11 7 3 4 2. + + + 1 + + <_> + + <_> + 13 10 6 6 -1. + + <_> + 13 12 6 2 3. + + + + <_> + + <_> + 0 6 22 12 -1. + + <_> + 0 6 11 6 2. + + <_> + 11 12 11 6 2. + + + + <_> + + <_> + 9 5 6 12 -1. + + <_> + 12 5 3 6 2. + + <_> + 9 11 3 6 2. + + + + <_> + + <_> + 7 5 6 12 -1. + + <_> + 7 5 3 6 2. + + <_> + 10 11 3 6 2. + + + + <_> + + <_> + 14 1 6 9 -1. + + <_> + 14 4 6 3 3. + + + + <_> + + <_> + 2 1 6 9 -1. + + <_> + 2 4 6 3 3. + + + + <_> + + <_> + 13 4 4 6 -1. + + <_> + 13 7 4 3 2. + + + + <_> + + <_> + 5 4 4 6 -1. + + <_> + 5 7 4 3 2. + + + + <_> + + <_> + 10 13 12 3 -1. + + <_> + 10 14 12 1 3. + + + + <_> + + <_> + 3 3 15 3 -1. + + <_> + 3 4 15 1 3. + + + + <_> + + <_> + 13 5 2 9 -1. + + <_> + 13 5 1 9 2. + + + 1 + + <_> + + <_> + 9 5 9 2 -1. + + <_> + 9 5 9 1 2. + + + 1 + + <_> + + <_> + 6 2 14 10 -1. + + <_> + 6 2 7 10 2. + + + + <_> + + <_> + 8 2 12 2 -1. + + <_> + 8 2 12 1 2. + + + 1 + + <_> + + <_> + 17 0 2 13 -1. + + <_> + 17 0 1 13 2. + + + 1 + + <_> + + <_> + 5 0 13 2 -1. + + <_> + 5 0 13 1 2. + + + 1 + + <_> + + <_> + 12 4 3 10 -1. + + <_> + 12 4 3 5 2. + + + 1 + + <_> + + <_> + 0 6 12 3 -1. + + <_> + 0 7 12 1 3. + + + + <_> + + <_> + 6 6 15 3 -1. + + <_> + 6 7 15 1 3. + + + + <_> + + <_> + 8 8 5 9 -1. + + <_> + 8 11 5 3 3. + + + + <_> + + <_> + 10 11 7 6 -1. + + <_> + 10 13 7 2 3. + + + + <_> + + <_> + 5 11 7 6 -1. + + <_> + 5 13 7 2 3. + + + + <_> + + <_> + 5 12 13 4 -1. + + <_> + 5 13 13 2 2. + + + + <_> + + <_> + 9 4 4 6 -1. + + <_> + 9 7 4 3 2. + + + + <_> + + <_> + 13 1 2 9 -1. + + <_> + 13 1 1 9 2. + + + 1 + + <_> + + <_> + 5 2 8 6 -1. + + <_> + 5 2 4 3 2. + + <_> + 9 5 4 3 2. + + + + <_> + + <_> + 11 0 4 8 -1. + + <_> + 12 1 2 8 2. + + + 1 + + <_> + + <_> + 11 0 8 4 -1. + + <_> + 10 1 8 2 2. + + + 1 + + <_> + + <_> + 7 9 15 3 -1. + + <_> + 7 10 15 1 3. + + + + <_> + + <_> + 5 10 12 3 -1. + + <_> + 5 11 12 1 3. + + + + <_> + + <_> + 15 2 7 6 -1. + + <_> + 15 4 7 2 3. + + + + <_> + + <_> + 0 2 7 6 -1. + + <_> + 0 4 7 2 3. + + + + <_> + + <_> + 12 3 2 7 -1. + + <_> + 12 3 1 7 2. + + + 1 + + <_> + + <_> + 10 3 7 2 -1. + + <_> + 10 3 7 1 2. + + + 1 + + <_> + + <_> + 2 3 20 14 -1. + + <_> + 12 3 10 7 2. + + <_> + 2 10 10 7 2. + + + + <_> + + <_> + 5 2 12 8 -1. + + <_> + 11 2 6 8 2. + + + + <_> + + <_> + 18 4 4 8 -1. + + <_> + 18 8 4 4 2. + + + + <_> + + <_> + 6 4 6 8 -1. + + <_> + 6 4 3 4 2. + + <_> + 9 8 3 4 2. + + + + <_> + + <_> + 12 2 4 6 -1. + + <_> + 12 2 2 6 2. + + + 1 + + <_> + + <_> + 10 2 6 4 -1. + + <_> + 10 2 6 2 2. + + + 1 + + <_> + + <_> + 9 3 8 15 -1. + + <_> + 11 3 4 15 2. + + + + <_> + + <_> + 1 11 8 7 -1. + + <_> + 3 11 4 7 2. + + + + <_> + + <_> + 13 7 6 10 -1. + + <_> + 15 7 2 10 3. + + + + <_> + + <_> + 2 3 10 14 -1. + + <_> + 7 3 5 14 2. + + + + <_> + + <_> + 6 5 15 12 -1. + + <_> + 11 5 5 12 3. + + + + <_> + + <_> + 1 5 15 12 -1. + + <_> + 6 5 5 12 3. + + + + <_> + + <_> + 9 14 8 4 -1. + + <_> + 9 16 8 2 2. + + + + <_> + + <_> + 9 6 4 10 -1. + + <_> + 11 6 2 10 2. + + + + <_> + + <_> + 8 6 10 4 -1. + + <_> + 8 8 10 2 2. + + + + <_> + + <_> + 2 14 7 4 -1. + + <_> + 2 16 7 2 2. + + + + <_> + + <_> + 7 9 15 3 -1. + + <_> + 7 10 15 1 3. + + + + <_> + + <_> + 0 10 16 4 -1. + + <_> + 0 10 8 2 2. + + <_> + 8 12 8 2 2. + + + + <_> + + <_> + 10 11 6 7 -1. + + <_> + 12 11 2 7 3. + + + + <_> + + <_> + 8 13 6 5 -1. + + <_> + 11 13 3 5 2. + + + + <_> + + <_> + 10 11 6 7 -1. + + <_> + 12 11 2 7 3. + + + + <_> + + <_> + 6 11 6 7 -1. + + <_> + 8 11 2 7 3. + + + + <_> + + <_> + 18 4 4 8 -1. + + <_> + 18 8 4 4 2. + + + + <_> + + <_> + 4 6 8 11 -1. + + <_> + 8 6 4 11 2. + + + + <_> + + <_> + 7 5 8 12 -1. + + <_> + 9 5 4 12 2. + + + + <_> + + <_> + 5 3 6 6 -1. + + <_> + 7 3 2 6 3. + + + + <_> + + <_> + 11 2 10 6 -1. + + <_> + 11 2 10 3 2. + + + 1 + + <_> + + <_> + 11 1 8 9 -1. + + <_> + 11 1 4 9 2. + + + 1 + + <_> + + <_> + 12 4 3 10 -1. + + <_> + 12 4 3 5 2. + + + 1 + + <_> + + <_> + 11 1 11 4 -1. + + <_> + 11 1 11 2 2. + + + 1 + + <_> + + <_> + 18 4 4 8 -1. + + <_> + 18 8 4 4 2. + + + + <_> + + <_> + 0 4 4 8 -1. + + <_> + 0 8 4 4 2. + + + + <_> + + <_> + 12 2 2 12 -1. + + <_> + 12 2 1 12 2. + + + 1 + + <_> + + <_> + 4 12 12 3 -1. + + <_> + 4 13 12 1 3. + + + + <_> + + <_> + 2 12 18 3 -1. + + <_> + 2 13 18 1 3. + + + + <_> + + <_> + 0 0 16 3 -1. + + <_> + 0 1 16 1 3. + + + + <_> + + <_> + 12 2 2 12 -1. + + <_> + 12 2 1 12 2. + + + 1 + + <_> + + <_> + 10 2 12 2 -1. + + <_> + 10 2 12 1 2. + + + 1 + + <_> + + <_> + 13 10 6 7 -1. + + <_> + 15 10 2 7 3. + + + + <_> + + <_> + 5 13 12 2 -1. + + <_> + 11 13 6 2 2. + + + + <_> + + <_> + 16 8 6 8 -1. + + <_> + 19 8 3 4 2. + + <_> + 16 12 3 4 2. + + + + <_> + + <_> + 4 1 8 6 -1. + + <_> + 4 3 8 2 3. + + + + <_> + + <_> + 18 0 4 9 -1. + + <_> + 18 3 4 3 3. + + + + <_> + + <_> + 8 2 6 8 -1. + + <_> + 8 6 6 4 2. + + + + <_> + + <_> + 8 1 6 4 -1. + + <_> + 8 3 6 2 2. + + + + <_> + + <_> + 1 2 12 3 -1. + + <_> + 1 3 12 1 3. + + + + <_> + + <_> + 7 2 12 3 -1. + + <_> + 7 3 12 1 3. + + + + <_> + + <_> + 1 0 16 18 -1. + + <_> + 1 9 16 9 2. + + + + <_> + + <_> + 16 8 6 8 -1. + + <_> + 19 8 3 4 2. + + <_> + 16 12 3 4 2. + + + + <_> + + <_> + 0 8 6 8 -1. + + <_> + 0 8 3 4 2. + + <_> + 3 12 3 4 2. + + + + <_> + + <_> + 18 4 4 6 -1. + + <_> + 18 7 4 3 2. + + + + <_> + + <_> + 0 12 14 3 -1. + + <_> + 0 13 14 1 3. + + + + <_> + + <_> + 3 12 16 3 -1. + + <_> + 3 13 16 1 3. + + + + <_> + + <_> + 0 4 4 6 -1. + + <_> + 0 7 4 3 2. + + + + <_> + + <_> + 9 14 8 4 -1. + + <_> + 9 16 8 2 2. + + + + <_> + + <_> + 0 13 14 3 -1. + + <_> + 0 14 14 1 3. + + + + <_> + + <_> + 4 14 14 2 -1. + + <_> + 4 15 14 1 2. + + + + <_> + + <_> + 3 12 15 6 -1. + + <_> + 3 15 15 3 2. + + + + <_> + + <_> + 7 12 14 6 -1. + + <_> + 7 15 14 3 2. + + + + <_> + + <_> + 0 0 14 4 -1. + + <_> + 0 2 14 2 2. + + + + <_> + + <_> + 13 10 6 7 -1. + + <_> + 15 10 2 7 3. + + + + <_> + + <_> + 3 10 6 7 -1. + + <_> + 5 10 2 7 3. + + + + <_> + + <_> + 2 4 18 4 -1. + + <_> + 8 4 6 4 3. + + + + <_> + + <_> + 5 3 12 9 -1. + + <_> + 9 6 4 3 9. + + + + <_> + + <_> + 10 8 10 7 -1. + + <_> + 10 8 5 7 2. + + + + <_> + + <_> + 5 2 4 16 -1. + + <_> + 5 6 4 8 2. + + + + <_> + + <_> + 16 8 6 8 -1. + + <_> + 19 8 3 4 2. + + <_> + 16 12 3 4 2. + + + + <_> + + <_> + 0 12 17 4 -1. + + <_> + 0 14 17 2 2. + + + + <_> + + <_> + 7 12 14 6 -1. + + <_> + 7 15 14 3 2. + + + + <_> + + <_> + 0 13 12 4 -1. + + <_> + 0 13 6 2 2. + + <_> + 6 15 6 2 2. + + + + <_> + + <_> + 10 13 12 3 -1. + + <_> + 10 14 12 1 3. + + + + <_> + + <_> + 7 11 8 6 -1. + + <_> + 7 11 4 3 2. + + <_> + 11 14 4 3 2. + + + + <_> + + <_> + 9 6 12 9 -1. + + <_> + 12 6 6 9 2. + + + + <_> + + <_> + 1 6 12 8 -1. + + <_> + 4 6 6 8 2. + + + + <_> + + <_> + 8 12 6 6 -1. + + <_> + 8 14 6 2 3. + + + + <_> + + <_> + 1 4 20 14 -1. + + <_> + 1 4 10 7 2. + + <_> + 11 11 10 7 2. + + + + <_> + + <_> + 18 0 4 10 -1. + + <_> + 19 1 2 10 2. + + + 1 + + <_> + + <_> + 2 2 6 12 -1. + + <_> + 2 5 6 6 2. + + + + <_> + + <_> + 16 5 4 9 -1. + + <_> + 16 8 4 3 3. + + + + <_> + + <_> + 6 9 8 4 -1. + + <_> + 10 9 4 4 2. + + + + <_> + + <_> + 7 8 14 3 -1. + + <_> + 7 8 7 3 2. + + + + <_> + + <_> + 0 8 18 3 -1. + + <_> + 9 8 9 3 2. + + + + <_> + + <_> + 14 6 8 4 -1. + + <_> + 14 6 8 2 2. + + + 1 + + <_> + + <_> + 0 3 18 2 -1. + + <_> + 9 3 9 2 2. + + + + <_> + + <_> + 6 6 10 8 -1. + + <_> + 6 8 10 4 2. + + + + <_> + + <_> + 1 5 10 12 -1. + + <_> + 1 8 10 6 2. + + + + <_> + + <_> + 11 6 3 12 -1. + + <_> + 12 6 1 12 3. + + + + <_> + + <_> + 8 6 3 12 -1. + + <_> + 9 6 1 12 3. + + + + <_> + + <_> + 11 1 3 13 -1. + + <_> + 12 1 1 13 3. + + + + <_> + + <_> + 8 2 3 13 -1. + + <_> + 9 2 1 13 3. + + + + <_> + + <_> + 6 6 2 12 -1. + + <_> + 6 12 2 6 2. + + + + <_> + + <_> + 17 4 2 9 -1. + + <_> + 17 4 1 9 2. + + + 1 + + <_> + + <_> + 0 0 12 4 -1. + + <_> + 0 1 12 2 2. + + + + <_> + + <_> + 8 4 12 4 -1. + + <_> + 14 4 6 2 2. + + <_> + 8 6 6 2 2. + + + + <_> + + <_> + 6 13 6 4 -1. + + <_> + 6 15 6 2 2. + + + + <_> + + <_> + 7 13 12 4 -1. + + <_> + 7 15 12 2 2. + + + + <_> + + <_> + 1 8 6 4 -1. + + <_> + 4 8 3 4 2. + + + + <_> + + <_> + 15 8 6 10 -1. + + <_> + 15 8 3 10 2. + + + + <_> + + <_> + 1 8 6 10 -1. + + <_> + 4 8 3 10 2. + + + + <_> + + <_> + 16 12 6 4 -1. + + <_> + 16 12 3 4 2. + + + + <_> + + <_> + 1 6 6 8 -1. + + <_> + 1 6 3 4 2. + + <_> + 4 10 3 4 2. + + + + <_> + + <_> + 11 1 4 11 -1. + + <_> + 12 2 2 11 2. + + + 1 + + <_> + + <_> + 11 1 11 4 -1. + + <_> + 10 2 11 2 2. + + + 1 + + <_> + + <_> + 12 0 4 7 -1. + + <_> + 13 1 2 7 2. + + + 1 + + <_> + + <_> + 10 0 7 4 -1. + + <_> + 9 1 7 2 2. + + + 1 + + <_> + + <_> + 13 5 2 12 -1. + + <_> + 13 5 1 12 2. + + + + <_> + + <_> + 7 5 2 12 -1. + + <_> + 8 5 1 12 2. + + + + <_> + + <_> + 8 5 9 4 -1. + + <_> + 11 5 3 4 3. + + + + <_> + + <_> + 7 0 10 3 -1. + + <_> + 6 1 10 1 3. + + + 1 + + <_> + + <_> + 17 4 2 9 -1. + + <_> + 17 4 1 9 2. + + + 1 + + <_> + + <_> + 5 4 9 2 -1. + + <_> + 5 4 9 1 2. + + + 1 + + <_> + + <_> + 12 10 4 8 -1. + + <_> + 12 10 2 8 2. + + + + <_> + + <_> + 2 0 12 4 -1. + + <_> + 2 0 6 2 2. + + <_> + 8 2 6 2 2. + + + + <_> + + <_> + 7 7 15 3 -1. + + <_> + 7 8 15 1 3. + + + + <_> + + <_> + 2 0 12 4 -1. + + <_> + 2 0 6 2 2. + + <_> + 8 2 6 2 2. + + + + <_> + + <_> + 10 14 6 4 -1. + + <_> + 10 14 3 4 2. + + + + <_> + + <_> + 0 8 17 3 -1. + + <_> + 0 9 17 1 3. + + + + <_> + + <_> + 6 13 10 5 -1. + + <_> + 6 13 5 5 2. + + + + <_> + + <_> + 5 11 8 5 -1. + + <_> + 9 11 4 5 2. + + + + <_> + + <_> + 14 8 4 6 -1. + + <_> + 14 8 2 6 2. + + + + <_> + + <_> + 0 10 5 8 -1. + + <_> + 0 14 5 4 2. + + + + <_> + + <_> + 7 7 15 3 -1. + + <_> + 7 8 15 1 3. + + + + <_> + + <_> + 2 11 7 4 -1. + + <_> + 2 13 7 2 2. + + + + <_> + + <_> + 8 3 11 12 -1. + + <_> + 8 6 11 6 2. + + + + <_> + + <_> + 2 4 12 4 -1. + + <_> + 2 4 6 2 2. + + <_> + 8 6 6 2 2. + + + + <_> + + <_> + 19 2 3 12 -1. + + <_> + 20 3 1 12 3. + + + 1 + + <_> + + <_> + 1 6 12 4 -1. + + <_> + 1 6 6 2 2. + + <_> + 7 8 6 2 2. + + + + <_> + + <_> + 9 9 13 3 -1. + + <_> + 9 10 13 1 3. + + + + <_> + + <_> + 0 5 12 6 -1. + + <_> + 0 5 6 3 2. + + <_> + 6 8 6 3 2. + + + + <_> + + <_> + 11 0 3 13 -1. + + <_> + 12 0 1 13 3. + + + + <_> + + <_> + 8 0 3 13 -1. + + <_> + 9 0 1 13 3. + + + + <_> + + <_> + 14 6 8 8 -1. + + <_> + 14 10 8 4 2. + + + + <_> + + <_> + 0 8 8 6 -1. + + <_> + 0 10 8 2 3. + + + + <_> + + <_> + 9 9 13 3 -1. + + <_> + 9 10 13 1 3. + + + + <_> + + <_> + 0 9 13 3 -1. + + <_> + 0 10 13 1 3. + + + + <_> + + <_> + 4 14 14 4 -1. + + <_> + 11 14 7 2 2. + + <_> + 4 16 7 2 2. + + + + <_> + + <_> + 0 3 6 6 -1. + + <_> + 2 3 2 6 3. + + + + <_> + + <_> + 2 6 20 4 -1. + + <_> + 7 6 10 4 2. + + + + <_> + + <_> + 2 7 6 6 -1. + + <_> + 4 7 2 6 3. + + + + <_> + + <_> + 15 8 6 10 -1. + + <_> + 17 8 2 10 3. + + + + <_> + + <_> + 1 8 6 10 -1. + + <_> + 3 8 2 10 3. + + + + <_> + + <_> + 9 9 13 3 -1. + + <_> + 9 10 13 1 3. + + + + <_> + + <_> + 6 8 4 6 -1. + + <_> + 6 8 4 3 2. + + + 1 + + <_> + + <_> + 16 5 6 13 -1. + + <_> + 16 5 3 13 2. + + + + <_> + + <_> + 0 5 6 13 -1. + + <_> + 3 5 3 13 2. + + + + <_> + + <_> + 4 10 18 2 -1. + + <_> + 4 10 9 2 2. + + + + <_> + + <_> + 0 7 21 7 -1. + + <_> + 7 7 7 7 3. + + + + <_> + + <_> + 5 6 12 12 -1. + + <_> + 9 6 4 12 3. + + + + <_> + + <_> + 10 4 10 3 -1. + + <_> + 9 5 10 1 3. + + + 1 + + <_> + + <_> + 9 9 9 7 -1. + + <_> + 12 9 3 7 3. + + + + <_> + + <_> + 11 5 9 4 -1. + + <_> + 14 8 3 4 3. + + + 1 + + <_> + + <_> + 12 3 3 10 -1. + + <_> + 12 3 3 5 2. + + + 1 + + <_> + + <_> + 8 3 12 2 -1. + + <_> + 8 3 6 2 2. + + + 1 + + <_> + + <_> + 14 6 4 8 -1. + + <_> + 14 10 4 4 2. + + + + <_> + + <_> + 4 6 4 8 -1. + + <_> + 4 10 4 4 2. + + + + <_> + + <_> + 6 0 11 12 -1. + + <_> + 6 3 11 6 2. + + + + <_> + + <_> + 8 0 6 6 -1. + + <_> + 8 3 6 3 2. + + + + <_> + + <_> + 10 0 10 4 -1. + + <_> + 10 0 5 4 2. + + + + <_> + + <_> + 2 0 10 4 -1. + + <_> + 7 0 5 4 2. + + + + <_> + + <_> + 10 3 8 8 -1. + + <_> + 14 3 4 4 2. + + <_> + 10 7 4 4 2. + + + + <_> + + <_> + 4 3 8 8 -1. + + <_> + 4 3 4 4 2. + + <_> + 8 7 4 4 2. + + + + <_> + + <_> + 2 9 18 5 -1. + + <_> + 8 9 6 5 3. + + + + <_> + + <_> + 0 15 16 3 -1. + + <_> + 0 16 16 1 3. + + + + <_> + + <_> + 6 16 12 2 -1. + + <_> + 6 17 12 1 2. + + + + <_> + + <_> + 3 0 4 8 -1. + + <_> + 3 4 4 4 2. + + + + <_> + + <_> + 15 6 6 6 -1. + + <_> + 13 8 6 2 3. + + + 1 + + <_> + + <_> + 7 6 6 6 -1. + + <_> + 9 8 2 6 3. + + + 1 + + <_> + + <_> + 13 12 6 6 -1. + + <_> + 13 14 6 2 3. + + + + <_> + + <_> + 3 12 6 6 -1. + + <_> + 3 14 6 2 3. + + + + <_> + + <_> + 8 13 14 4 -1. + + <_> + 8 14 14 2 2. + + + + <_> + + <_> + 0 13 14 4 -1. + + <_> + 0 14 14 2 2. + + + + <_> + + <_> + 3 13 17 2 -1. + + <_> + 3 14 17 1 2. + + + + <_> + + <_> + 4 6 12 4 -1. + + <_> + 8 6 4 4 3. + + + + <_> + + <_> + 8 7 9 4 -1. + + <_> + 11 7 3 4 3. + + + + <_> + + <_> + 10 0 6 8 -1. + + <_> + 8 2 6 4 2. + + + 1 + + <_> + + <_> + 9 2 12 12 -1. + + <_> + 9 6 12 4 3. + + + + <_> + + <_> + 11 0 6 3 -1. + + <_> + 10 1 6 1 3. + + + 1 + + <_> + + <_> + 13 1 3 7 -1. + + <_> + 14 2 1 7 3. + + + 1 + + <_> + + <_> + 2 3 12 9 -1. + + <_> + 6 6 4 3 9. + + + + <_> + + <_> + 19 2 3 12 -1. + + <_> + 20 3 1 12 3. + + + 1 + + <_> + + <_> + 3 5 12 5 -1. + + <_> + 7 5 4 5 3. + + + + <_> + + <_> + 13 1 3 7 -1. + + <_> + 14 2 1 7 3. + + + 1 + + <_> + + <_> + 9 1 7 3 -1. + + <_> + 8 2 7 1 3. + + + 1 + + <_> + + <_> + 9 7 8 6 -1. + + <_> + 13 7 4 3 2. + + <_> + 9 10 4 3 2. + + + + <_> + + <_> + 4 14 14 4 -1. + + <_> + 4 15 14 2 2. + + + + <_> + + <_> + 10 14 6 4 -1. + + <_> + 10 14 3 4 2. + + + + <_> + + <_> + 6 14 6 4 -1. + + <_> + 9 14 3 4 2. + + + + <_> + + <_> + 14 0 4 16 -1. + + <_> + 16 0 2 8 2. + + <_> + 14 8 2 8 2. + + + + <_> + + <_> + 0 15 20 3 -1. + + <_> + 5 15 10 3 2. + + + + <_> + + <_> + 16 5 3 13 -1. + + <_> + 17 5 1 13 3. + + + + <_> + + <_> + 2 6 13 8 -1. + + <_> + 2 10 13 4 2. + + + + <_> + + <_> + 16 5 3 13 -1. + + <_> + 17 5 1 13 3. + + + + <_> + + <_> + 7 12 7 4 -1. + + <_> + 7 14 7 2 2. + + + + <_> + + <_> + 15 1 4 9 -1. + + <_> + 15 4 4 3 3. + + + + <_> + + <_> + 0 4 16 2 -1. + + <_> + 0 5 16 1 2. + + + + <_> + + <_> + 8 4 12 2 -1. + + <_> + 8 5 12 1 2. + + + + <_> + + <_> + 6 3 9 15 -1. + + <_> + 9 8 3 5 9. + + + + <_> + + <_> + 12 3 3 8 -1. + + <_> + 12 7 3 4 2. + + + + <_> + + <_> + 5 6 12 4 -1. + + <_> + 5 6 6 2 2. + + <_> + 11 8 6 2 2. + + + + <_> + + <_> + 16 3 3 14 -1. + + <_> + 17 3 1 14 3. + + + + <_> + + <_> + 3 3 3 14 -1. + + <_> + 4 3 1 14 3. + + + + <_> + + <_> + 0 4 22 4 -1. + + <_> + 11 4 11 2 2. + + <_> + 0 6 11 2 2. + + + + <_> + + <_> + 1 4 4 9 -1. + + <_> + 1 7 4 3 3. + + + + <_> + + <_> + 7 13 12 4 -1. + + <_> + 7 15 12 2 2. + + + + <_> + + <_> + 3 13 12 4 -1. + + <_> + 3 15 12 2 2. + + + + <_> + + <_> + 11 14 6 4 -1. + + <_> + 11 16 6 2 2. + + + + <_> + + <_> + 1 0 13 3 -1. + + <_> + 1 1 13 1 3. + + + + <_> + + <_> + 11 0 6 4 -1. + + <_> + 11 2 6 2 2. + + + + <_> + + <_> + 4 14 14 4 -1. + + <_> + 4 14 7 2 2. + + <_> + 11 16 7 2 2. + + + + <_> + + <_> + 6 0 12 2 -1. + + <_> + 6 1 12 1 2. + + + + <_> + + <_> + 5 0 6 4 -1. + + <_> + 5 2 6 2 2. + + + + <_> + + <_> + 11 0 3 6 -1. + + <_> + 12 1 1 6 3. + + + 1 + + <_> + + <_> + 11 0 6 3 -1. + + <_> + 10 1 6 1 3. + + + 1 + + <_> + + <_> + 7 12 8 6 -1. + + <_> + 9 12 4 6 2. + + + + <_> + + <_> + 1 1 5 10 -1. + + <_> + 1 6 5 5 2. + + + + <_> + + <_> + 13 0 2 12 -1. + + <_> + 13 6 2 6 2. + + + + <_> + + <_> + 7 0 2 12 -1. + + <_> + 7 6 2 6 2. + + + + <_> + + <_> + 12 1 8 14 -1. + + <_> + 16 1 4 7 2. + + <_> + 12 8 4 7 2. + + + + <_> + + <_> + 1 0 8 10 -1. + + <_> + 1 0 4 5 2. + + <_> + 5 5 4 5 2. + + + + <_> + + <_> + 6 6 16 4 -1. + + <_> + 10 6 8 4 2. + + + + <_> + + <_> + 1 14 13 2 -1. + + <_> + 1 15 13 1 2. + + + + <_> + + <_> + 2 7 20 3 -1. + + <_> + 7 7 10 3 2. + + + + <_> + + <_> + 11 2 9 4 -1. + + <_> + 14 5 3 4 3. + + + 1 + + <_> + + <_> + 6 5 13 2 -1. + + <_> + 6 6 13 1 2. + + + + <_> + + <_> + 3 0 6 15 -1. + + <_> + 6 0 3 15 2. + + + + <_> + + <_> + 3 12 8 6 -1. + + <_> + 5 12 4 6 2. + + + + <_> + + <_> + 13 1 4 7 -1. + + <_> + 14 2 2 7 2. + + + 1 + + <_> + + <_> + 9 1 7 4 -1. + + <_> + 8 2 7 2 2. + + + 1 + + <_> + + <_> + 11 11 6 4 -1. + + <_> + 11 13 6 2 2. + + + + <_> + + <_> + 0 12 8 6 -1. + + <_> + 0 12 4 3 2. + + <_> + 4 15 4 3 2. + + + + <_> + + <_> + 11 11 6 4 -1. + + <_> + 11 13 6 2 2. + + + + <_> + + <_> + 2 6 6 12 -1. + + <_> + 2 6 3 6 2. + + <_> + 5 12 3 6 2. + + + + <_> + + <_> + 11 11 6 4 -1. + + <_> + 11 13 6 2 2. + + + + <_> + + <_> + 5 11 9 4 -1. + + <_> + 8 11 3 4 3. + + + + <_> + + <_> + 8 13 9 5 -1. + + <_> + 11 13 3 5 3. + + + + <_> + + <_> + 3 15 8 3 -1. + + <_> + 7 15 4 3 2. + + + + <_> + + <_> + 4 12 14 6 -1. + + <_> + 11 12 7 3 2. + + <_> + 4 15 7 3 2. + + + + <_> + + <_> + 2 15 8 3 -1. + + <_> + 6 15 4 3 2. + + + + <_> + + <_> + 11 11 6 4 -1. + + <_> + 11 13 6 2 2. + + + + <_> + + <_> + 6 5 6 7 -1. + + <_> + 8 5 2 7 3. + + + + <_> + + <_> + 8 4 9 12 -1. + + <_> + 11 8 3 4 9. + + + + <_> + + <_> + 5 4 9 12 -1. + + <_> + 8 8 3 4 9. + + + + <_> + + <_> + 14 12 6 4 -1. + + <_> + 14 14 6 2 2. + + + + <_> + + <_> + 2 12 6 4 -1. + + <_> + 2 14 6 2 2. + + + + <_> + + <_> + 9 6 6 8 -1. + + <_> + 11 6 2 8 3. + + + + <_> + + <_> + 7 4 8 6 -1. + + <_> + 7 6 8 2 3. + + + + <_> + + <_> + 13 7 6 4 -1. + + <_> + 13 7 6 2 2. + + + 1 + + <_> + + <_> + 10 2 12 3 -1. + + <_> + 9 3 12 1 3. + + + 1 + + <_> + + <_> + 12 4 6 6 -1. + + <_> + 14 6 2 6 3. + + + 1 + + <_> + + <_> + 10 4 6 6 -1. + + <_> + 8 6 6 2 3. + + + 1 + + <_> + + <_> + 11 5 3 9 -1. + + <_> + 12 6 1 9 3. + + + 1 + + <_> + + <_> + 4 0 16 2 -1. + + <_> + 4 0 16 1 2. + + + 1 + + <_> + + <_> + 12 12 8 3 -1. + + <_> + 12 12 4 3 2. + + + + <_> + + <_> + 10 0 12 6 -1. + + <_> + 13 3 6 6 2. + + + 1 + + <_> + + <_> + 9 2 4 6 -1. + + <_> + 9 5 4 3 2. + + + + <_> + + <_> + 0 2 18 9 -1. + + <_> + 6 5 6 3 9. + + + + <_> + + <_> + 16 2 3 9 -1. + + <_> + 17 3 1 9 3. + + + 1 + + <_> + + <_> + 6 2 9 3 -1. + + <_> + 5 3 9 1 3. + + + 1 + + <_> + + <_> + 10 1 12 4 -1. + + <_> + 14 1 4 4 3. + + + + <_> + + <_> + 0 1 12 4 -1. + + <_> + 4 1 4 4 3. + + + + <_> + + <_> + 6 14 12 4 -1. + + <_> + 12 14 6 2 2. + + <_> + 6 16 6 2 2. + + + + <_> + + <_> + 4 2 13 3 -1. + + <_> + 4 3 13 1 3. + + + + <_> + + <_> + 7 2 13 3 -1. + + <_> + 7 3 13 1 3. + + + + <_> + + <_> + 1 12 20 2 -1. + + <_> + 11 12 10 2 2. + + + + <_> + + <_> + 5 2 12 3 -1. + + <_> + 9 2 4 3 3. + + + + <_> + + <_> + 4 8 14 9 -1. + + <_> + 11 8 7 9 2. + + + + <_> + + <_> + 10 2 4 8 -1. + + <_> + 10 2 2 8 2. + + + + <_> + + <_> + 8 2 4 8 -1. + + <_> + 10 2 2 8 2. + + + + <_> + + <_> + 16 1 2 16 -1. + + <_> + 16 9 2 8 2. + + + + <_> + + <_> + 2 8 9 4 -1. + + <_> + 5 8 3 4 3. + + + + <_> + + <_> + 16 1 2 16 -1. + + <_> + 16 9 2 8 2. + + + + <_> + + <_> + 4 1 2 16 -1. + + <_> + 4 9 2 8 2. + + + + <_> + + <_> + 10 7 8 6 -1. + + <_> + 14 7 4 3 2. + + <_> + 10 10 4 3 2. + + + + <_> + + <_> + 4 7 8 6 -1. + + <_> + 4 7 4 3 2. + + <_> + 8 10 4 3 2. + + + + <_> + + <_> + 12 8 2 7 -1. + + <_> + 12 8 1 7 2. + + + 1 + + <_> + + <_> + 5 8 6 8 -1. + + <_> + 5 8 3 4 2. + + <_> + 8 12 3 4 2. + + + + <_> + + <_> + 12 8 2 7 -1. + + <_> + 12 8 1 7 2. + + + 1 + + <_> + + <_> + 10 8 7 2 -1. + + <_> + 10 8 7 1 2. + + + 1 + + <_> + + <_> + 5 9 13 8 -1. + + <_> + 5 11 13 4 2. + + + + <_> + + <_> + 7 9 4 9 -1. + + <_> + 9 9 2 9 2. + + + + <_> + + <_> + 9 6 6 10 -1. + + <_> + 11 6 2 10 3. + + + + <_> + + <_> + 7 6 6 10 -1. + + <_> + 9 6 2 10 3. + + + + <_> + + <_> + 6 0 14 6 -1. + + <_> + 13 0 7 3 2. + + <_> + 6 3 7 3 2. + + + + <_> + + <_> + 2 0 14 6 -1. + + <_> + 2 0 7 3 2. + + <_> + 9 3 7 3 2. + + + + <_> + + <_> + 3 6 16 3 -1. + + <_> + 3 7 16 1 3. + + + + <_> + + <_> + 1 6 15 3 -1. + + <_> + 1 7 15 1 3. + + + + <_> + + <_> + 8 5 8 4 -1. + + <_> + 8 7 8 2 2. + + + + <_> + + <_> + 2 4 12 10 -1. + + <_> + 8 4 6 10 2. + + + + <_> + + <_> + 7 0 14 16 -1. + + <_> + 7 0 7 16 2. + + + + <_> + + <_> + 1 1 18 3 -1. + + <_> + 10 1 9 3 2. + + + + <_> + + <_> + 8 8 12 2 -1. + + <_> + 8 8 6 2 2. + + + + <_> + + <_> + 8 1 6 4 -1. + + <_> + 11 1 3 4 2. + + + + <_> + + <_> + 11 0 4 10 -1. + + <_> + 12 1 2 10 2. + + + 1 + + <_> + + <_> + 11 0 10 4 -1. + + <_> + 10 1 10 2 2. + + + 1 + + <_> + + <_> + 13 7 9 4 -1. + + <_> + 16 7 3 4 3. + + + + <_> + + <_> + 11 1 6 2 -1. + + <_> + 11 1 6 1 2. + + + 1 + + <_> + + <_> + 8 8 12 2 -1. + + <_> + 8 8 6 2 2. + + + + <_> + + <_> + 7 12 6 5 -1. + + <_> + 10 12 3 5 2. + + + + <_> + + <_> + 10 7 9 11 -1. + + <_> + 13 7 3 11 3. + + + + <_> + + <_> + 6 15 8 3 -1. + + <_> + 10 15 4 3 2. + + + + <_> + + <_> + 19 3 2 12 -1. + + <_> + 19 3 1 12 2. + + + + <_> + + <_> + 1 3 2 12 -1. + + <_> + 2 3 1 12 2. + + + + <_> + + <_> + 11 1 9 10 -1. + + <_> + 14 1 3 10 3. + + + + <_> + + <_> + 1 3 16 6 -1. + + <_> + 5 3 8 6 2. + + + + <_> + + <_> + 7 1 12 12 -1. + + <_> + 11 1 4 12 3. + + + + <_> + + <_> + 2 8 12 2 -1. + + <_> + 8 8 6 2 2. + + + + <_> + + <_> + 14 7 3 10 -1. + + <_> + 14 12 3 5 2. + + + + <_> + + <_> + 1 15 18 3 -1. + + <_> + 10 15 9 3 2. + + + + <_> + + <_> + 9 0 13 3 -1. + + <_> + 9 1 13 1 3. + + + + <_> + + <_> + 5 0 12 3 -1. + + <_> + 5 1 12 1 3. + + + + <_> + + <_> + 12 1 2 15 -1. + + <_> + 12 1 1 15 2. + + + + <_> + + <_> + 8 1 2 15 -1. + + <_> + 9 1 1 15 2. + + + + <_> + + <_> + 12 2 3 13 -1. + + <_> + 13 2 1 13 3. + + + + <_> + + <_> + 1 6 4 8 -1. + + <_> + 3 6 2 8 2. + + + + <_> + + <_> + 17 1 4 12 -1. + + <_> + 19 1 2 6 2. + + <_> + 17 7 2 6 2. + + + + <_> + + <_> + 1 1 4 12 -1. + + <_> + 1 1 2 6 2. + + <_> + 3 7 2 6 2. + + + + <_> + + <_> + 17 0 4 7 -1. + + <_> + 17 0 2 7 2. + + + + <_> + + <_> + 1 0 4 7 -1. + + <_> + 3 0 2 7 2. + + + + <_> + + <_> + 12 2 3 13 -1. + + <_> + 13 2 1 13 3. + + + + <_> + + <_> + 7 4 5 9 -1. + + <_> + 7 7 5 3 3. + + + + <_> + + <_> + 12 2 3 13 -1. + + <_> + 13 2 1 13 3. + + + + <_> + + <_> + 7 2 3 13 -1. + + <_> + 8 2 1 13 3. + + + + <_> + + <_> + 3 5 17 4 -1. + + <_> + 3 6 17 2 2. + + + + <_> + + <_> + 2 3 18 3 -1. + + <_> + 2 4 18 1 3. + + + + <_> + + <_> + 11 11 6 4 -1. + + <_> + 11 13 6 2 2. + + + + <_> + + <_> + 5 11 6 4 -1. + + <_> + 5 13 6 2 2. + + + + <_> + + <_> + 15 5 6 4 -1. + + <_> + 15 5 6 2 2. + + + 1 + + <_> + + <_> + 7 5 4 6 -1. + + <_> + 7 5 2 6 2. + + + 1 + + <_> + + <_> + 13 1 8 8 -1. + + <_> + 15 1 4 8 2. + + + + <_> + + <_> + 3 1 12 12 -1. + + <_> + 7 1 4 12 3. + + + + <_> + + <_> + 14 2 4 12 -1. + + <_> + 14 2 2 12 2. + + + + <_> + + <_> + 4 2 4 12 -1. + + <_> + 6 2 2 12 2. + + + + <_> + + <_> + 15 0 2 14 -1. + + <_> + 15 0 1 14 2. + + + + <_> + + <_> + 5 0 2 14 -1. + + <_> + 6 0 1 14 2. + + + + <_> + + <_> + 15 1 7 15 -1. + + <_> + 15 6 7 5 3. + + + + <_> + + <_> + 6 1 7 6 -1. + + <_> + 4 3 7 2 3. + + + 1 + + <_> + + <_> + 1 4 20 14 -1. + + <_> + 11 4 10 7 2. + + <_> + 1 11 10 7 2. + + + + <_> + + <_> + 1 2 6 8 -1. + + <_> + 3 2 2 8 3. + + + + <_> + + <_> + 15 0 2 13 -1. + + <_> + 15 0 1 13 2. + + + + <_> + + <_> + 2 1 9 10 -1. + + <_> + 5 1 3 10 3. + + + + <_> + + <_> + 9 9 6 6 -1. + + <_> + 11 9 2 6 3. + + + + <_> + + <_> + 5 5 8 4 -1. + + <_> + 5 5 8 2 2. + + + 1 + + <_> + + <_> + 5 8 14 4 -1. + + <_> + 5 9 14 2 2. + + + + <_> + + <_> + 0 7 20 2 -1. + + <_> + 10 7 10 2 2. + + + + <_> + + <_> + 8 0 10 10 -1. + + <_> + 8 0 5 10 2. + + + + <_> + + <_> + 4 0 10 10 -1. + + <_> + 9 0 5 10 2. + + + + <_> + + <_> + 5 1 15 10 -1. + + <_> + 10 1 5 10 3. + + + + <_> + + <_> + 0 9 18 4 -1. + + <_> + 0 10 18 2 2. + + + + <_> + + <_> + 8 8 10 6 -1. + + <_> + 8 10 10 2 3. + + + + <_> + + <_> + 4 8 10 6 -1. + + <_> + 4 10 10 2 3. + + + + <_> + + <_> + 11 6 10 12 -1. + + <_> + 11 10 10 4 3. + + + + <_> + + <_> + 8 5 4 8 -1. + + <_> + 8 5 4 4 2. + + + 1 + + <_> + + <_> + 17 8 5 6 -1. + + <_> + 17 11 5 3 2. + + + + <_> + + <_> + 8 11 4 7 -1. + + <_> + 10 11 2 7 2. + + + + <_> + + <_> + 9 5 12 3 -1. + + <_> + 9 6 12 1 3. + + + + <_> + + <_> + 2 9 13 3 -1. + + <_> + 2 10 13 1 3. + + + + <_> + + <_> + 3 13 16 3 -1. + + <_> + 3 13 8 3 2. + + + + <_> + + <_> + 5 12 8 4 -1. + + <_> + 9 12 4 4 2. + + + + <_> + + <_> + 14 8 6 9 -1. + + <_> + 14 11 6 3 3. + + + + <_> + + <_> + 4 10 12 3 -1. + + <_> + 4 11 12 1 3. + + + + <_> + + <_> + 6 7 11 9 -1. + + <_> + 6 10 11 3 3. + + + + <_> + + <_> + 4 1 9 4 -1. + + <_> + 7 4 3 4 3. + + + 1 + + <_> + + <_> + 12 1 9 9 -1. + + <_> + 15 1 3 9 3. + + + + <_> + + <_> + 1 1 9 9 -1. + + <_> + 4 1 3 9 3. + + + + <_> + + <_> + 14 1 6 6 -1. + + <_> + 16 1 2 6 3. + + + + <_> + + <_> + 4 6 4 6 -1. + + <_> + 6 6 2 6 2. + + + + <_> + + <_> + 7 5 12 7 -1. + + <_> + 10 5 6 7 2. + + + + <_> + + <_> + 3 5 12 7 -1. + + <_> + 6 5 6 7 2. + + + + + + \ No newline at end of file diff --git a/squirrowse.web/_Imports.razor b/squirrowse.web/_Imports.razor new file mode 100644 index 0000000..c24d5c2 --- /dev/null +++ b/squirrowse.web/_Imports.razor @@ -0,0 +1,9 @@ +@using System.Net.Http +@using Microsoft.AspNetCore.Authorization +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.JSInterop +@using squirrowse.web +@using squirrowse.web.Shared \ No newline at end of file diff --git a/squirrowse.web/appsettings.Development.json b/squirrowse.web/appsettings.Development.json new file mode 100644 index 0000000..5a3cede --- /dev/null +++ b/squirrowse.web/appsettings.Development.json @@ -0,0 +1,10 @@ +{ + "DetailedErrors": true, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} \ No newline at end of file diff --git a/squirrowse.web/appsettings.json b/squirrowse.web/appsettings.json new file mode 100644 index 0000000..222224e --- /dev/null +++ b/squirrowse.web/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +} \ No newline at end of file diff --git a/squirrowse.web/db-log.db b/squirrowse.web/db-log.db new file mode 100644 index 0000000..8d63b33 Binary files /dev/null and b/squirrowse.web/db-log.db differ diff --git a/squirrowse.web/db.db b/squirrowse.web/db.db new file mode 100644 index 0000000..e0162ba Binary files /dev/null and b/squirrowse.web/db.db differ diff --git a/squirrowse.web/libman.json b/squirrowse.web/libman.json new file mode 100644 index 0000000..eed7fe1 --- /dev/null +++ b/squirrowse.web/libman.json @@ -0,0 +1,14 @@ +{ + "version": "1.0", + "defaultProvider": "cdnjs", + "libraries": [ + { + "library": "lightgallery@1.6.12", + "destination": "wwwroot/lib/lightgallery/" + }, + { + "library": "jquery@3.4.1", + "destination": "wwwroot/jquery/" + } + ] +} \ No newline at end of file diff --git a/squirrowse.web/squirrowse.web.csproj b/squirrowse.web/squirrowse.web.csproj new file mode 100644 index 0000000..41465ef --- /dev/null +++ b/squirrowse.web/squirrowse.web.csproj @@ -0,0 +1,35 @@ + + + + netcoreapp3.1 + e06d99cb-4df6-41f0-8639-cd34df940830 + Linux + + + + + + + + + + + + + + + + + + + Always + + + + + + + + + + \ No newline at end of file diff --git a/squirrowse.web/wwwroot/css/bootstrap/bootstrap.min.css b/squirrowse.web/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..92e3fe8 --- /dev/null +++ b/squirrowse.web/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/squirrowse.web/wwwroot/css/bootstrap/bootstrap.min.css.map b/squirrowse.web/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 0000000..1e9cb78 --- /dev/null +++ b/squirrowse.web/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","bootstrap.css","../../scss/mixins/_hover.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_forms.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_forms.scss","../../scss/mixins/_gradients.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/mixins/_nav-divider.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/mixins/_badge.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/utilities/_align.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_background.scss","../../scss/utilities/_borders.scss","../../scss/utilities/_display.scss","../../scss/utilities/_embed.scss","../../scss/utilities/_flex.scss","../../scss/utilities/_float.scss","../../scss/utilities/_overflow.scss","../../scss/utilities/_position.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_shadows.scss","../../scss/utilities/_sizing.scss","../../scss/utilities/_stretched-link.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss","../../scss/_print.scss"],"names":[],"mappings":"AAAA;;;;;ACAA,MAGI,OAAA,QAAA,SAAA,QAAA,SAAA,QAAA,OAAA,QAAA,MAAA,QAAA,SAAA,QAAA,SAAA,QAAA,QAAA,QAAA,OAAA,QAAA,OAAA,QAAA,QAAA,KAAA,OAAA,QAAA,YAAA,QAIA,UAAA,QAAA,YAAA,QAAA,UAAA,QAAA,OAAA,QAAA,UAAA,QAAA,SAAA,QAAA,QAAA,QAAA,OAAA,QAIA,gBAAA,EAAA,gBAAA,MAAA,gBAAA,MAAA,gBAAA,MAAA,gBAAA,OAKF,yBAAA,aAAA,CAAA,kBAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,wBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UCCF,ECqBA,QADA,SDjBE,WAAA,WAGF,KACE,YAAA,WACA,YAAA,KACA,yBAAA,KACA,4BAAA,YAMF,QAAA,MAAA,WAAA,OAAA,OAAA,OAAA,OAAA,KAAA,IAAA,QACE,QAAA,MAUF,KACE,OAAA,EACA,YAAA,aAAA,CAAA,kBAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBEgFI,UAAA,KF9EJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,KACA,iBAAA,KGYF,sBHHE,QAAA,YASF,GACE,WAAA,YACA,OAAA,EACA,SAAA,QAaF,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAOF,EACE,WAAA,EACA,cAAA,KCZF,0BDuBA,YAEE,gBAAA,UACA,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,cAAA,EACA,iCAAA,KAAA,yBAAA,KAGF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QCjBF,GDoBA,GCrBA,GDwBE,WAAA,EACA,cAAA,KAGF,MCpBA,MACA,MAFA,MDyBE,cAAA,EAGF,GACE,YAAA,IAGF,GACE,cAAA,MACA,YAAA,EAGF,WACE,OAAA,EAAA,EAAA,KAGF,ECrBA,ODuBE,YAAA,OAGF,MEpFI,UAAA,IF6FJ,IC1BA,ID4BE,SAAA,SE/FE,UAAA,IFiGF,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAON,EACE,MAAA,QACA,gBAAA,KACA,iBAAA,YI5KA,QJ+KE,MAAA,QACA,gBAAA,UAUJ,8BACE,MAAA,QACA,gBAAA,KIxLA,oCAAA,oCJ2LE,MAAA,QACA,gBAAA,KANJ,oCAUI,QAAA,EC5BJ,KACA,IDoCA,ICnCA,KDuCE,YAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UErJE,UAAA,IFyJJ,IAEE,WAAA,EAEA,cAAA,KAEA,SAAA,KAQF,OAEE,OAAA,EAAA,EAAA,KAQF,IACE,eAAA,OACA,aAAA,KAGF,IAGE,SAAA,OACA,eAAA,OAQF,MACE,gBAAA,SAGF,QACE,YAAA,OACA,eAAA,OACA,MAAA,QACA,WAAA,KACA,aAAA,OAGF,GAGE,WAAA,QAQF,MAEE,QAAA,aACA,cAAA,MAMF,OAEE,cAAA,EAOF,aACE,QAAA,IAAA,OACA,QAAA,IAAA,KAAA,yBCvEF,OD0EA,MCxEA,SADA,OAEA,SD4EE,OAAA,EACA,YAAA,QEtPE,UAAA,QFwPF,YAAA,QAGF,OC1EA,MD4EE,SAAA,QAGF,OC1EA,OD4EE,eAAA,KAMF,OACE,UAAA,OC1EF,cACA,aACA,cD+EA,OAIE,mBAAA,OC9EF,6BACA,4BACA,6BDiFE,sBAKI,OAAA,QCjFN,gCACA,+BACA,gCDqFA,yBAIE,QAAA,EACA,aAAA,KCpFF,qBDuFA,kBAEE,WAAA,WACA,QAAA,EAIF,iBCvFA,2BACA,kBAFA,iBDiGE,mBAAA,QAGF,SACE,SAAA,KAEA,OAAA,SAGF,SAME,UAAA,EAEA,QAAA,EACA,OAAA,EACA,OAAA,EAKF,OACE,QAAA,MACA,MAAA,KACA,UAAA,KACA,QAAA,EACA,cAAA,MElSI,UAAA,OFoSJ,YAAA,QACA,MAAA,QACA,YAAA,OAGF,SACE,eAAA,SGtGF,yCFGA,yCDyGE,OAAA,KGvGF,cH+GE,eAAA,KACA,mBAAA,KG3GF,yCHmHE,mBAAA,KAQF,6BACE,KAAA,QACA,mBAAA,OAOF,OACE,QAAA,aAGF,QACE,QAAA,UACA,OAAA,QAGF,SACE,QAAA,KGxHF,SH8HE,QAAA,eCvHF,IAAK,IAAK,IAAK,IAAK,IAAK,IIpWzB,GAAA,GAAA,GAAA,GAAA,GAAA,GAEE,cAAA,MAEA,YAAA,IACA,YAAA,IAIF,IAAA,GHgHM,UAAA,OG/GN,IAAA,GH+GM,UAAA,KG9GN,IAAA,GH8GM,UAAA,QG7GN,IAAA,GH6GM,UAAA,OG5GN,IAAA,GH4GM,UAAA,QG3GN,IAAA,GH2GM,UAAA,KGzGN,MHyGM,UAAA,QGvGJ,YAAA,IAIF,WHmGM,UAAA,KGjGJ,YAAA,IACA,YAAA,IAEF,WH8FM,UAAA,OG5FJ,YAAA,IACA,YAAA,IAEF,WHyFM,UAAA,OGvFJ,YAAA,IACA,YAAA,IAEF,WHoFM,UAAA,OGlFJ,YAAA,IACA,YAAA,ILyBF,GKhBE,WAAA,KACA,cAAA,KACA,OAAA,EACA,WAAA,IAAA,MAAA,eJmXF,OI3WA,MHMI,UAAA,IGHF,YAAA,IJ8WF,MI3WA,KAEE,QAAA,KACA,iBAAA,QAQF,eC/EE,aAAA,EACA,WAAA,KDmFF,aCpFE,aAAA,EACA,WAAA,KDsFF,kBACE,QAAA,aADF,mCAII,aAAA,MAUJ,YHjCI,UAAA,IGmCF,eAAA,UAIF,YACE,cAAA,KHeI,UAAA,QGXN,mBACE,QAAA,MH7CE,UAAA,IG+CF,MAAA,QAHF,2BAMI,QAAA,aEnHJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QEXE,cAAA,ODMF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBLkCI,UAAA,IKhCF,MAAA,QGvCF,KRuEI,UAAA,MQrEF,MAAA,QACA,WAAA,WAGA,OACE,MAAA,QAKJ,IACE,QAAA,MAAA,MR0DE,UAAA,MQxDF,MAAA,KACA,iBAAA,QDZE,cAAA,MCQJ,QASI,QAAA,ERkDA,UAAA,KQhDA,YAAA,IVyMJ,IUlME,QAAA,MRyCE,UAAA,MQvCF,MAAA,QAHF,SR0CI,UAAA,QQlCA,MAAA,QACA,WAAA,OAKJ,gBACE,WAAA,MACA,WAAA,OCzCA,WCAA,MAAA,KACA,cAAA,KACA,aAAA,KACA,aAAA,KACA,YAAA,KCmDE,yBFvDF,WCYI,UAAA,OC2CF,yBFvDF,WCYI,UAAA,OC2CF,yBFvDF,WCYI,UAAA,OC2CF,0BFvDF,WCYI,UAAA,QDAJ,iBCZA,MAAA,KACA,cAAA,KACA,aAAA,KACA,aAAA,KACA,YAAA,KDkBA,KCJA,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,aAAA,MACA,YAAA,MDOA,YACE,aAAA,EACA,YAAA,EAFF,iBVyjBF,0BUnjBM,cAAA,EACA,aAAA,EGjCJ,KAAA,OAAA,QAAA,QAAA,QAAA,OAAA,OAAA,OAAA,OAAA,OAAA,OAAA,OAAA,ObylBF,UAEqJ,QAAvI,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtG,aAFqJ,QAAvI,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtG,aAFkJ,QAAvI,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACnG,aAEqJ,QAAvI,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtG,aa5lBI,SAAA,SACA,MAAA,KACA,cAAA,KACA,aAAA,KAmBE,KACE,wBAAA,EAAA,WAAA,EACA,kBAAA,EAAA,UAAA,EACA,UAAA,KAEF,UACE,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,UAAA,KAIA,OFFN,SAAA,EAAA,EAAA,UAAA,KAAA,EAAA,EAAA,UAIA,UAAA,UEFM,OFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,OFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,OFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,OFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,OFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,OFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,OFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,OFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,QFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,QFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,QFFN,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KAIA,UAAA,KEGI,aAAwB,eAAA,GAAA,MAAA,GAExB,YAAuB,eAAA,GAAA,MAAA,GAGrB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,SAAwB,eAAA,EAAA,MAAA,EAAxB,UAAwB,eAAA,GAAA,MAAA,GAAxB,UAAwB,eAAA,GAAA,MAAA,GAAxB,UAAwB,eAAA,GAAA,MAAA,GAMtB,UFTR,YAAA,UESQ,UFTR,YAAA,WESQ,UFTR,YAAA,IESQ,UFTR,YAAA,WESQ,UFTR,YAAA,WESQ,UFTR,YAAA,IESQ,UFTR,YAAA,WESQ,UFTR,YAAA,WESQ,UFTR,YAAA,IESQ,WFTR,YAAA,WESQ,WFTR,YAAA,WCWE,yBC9BE,QACE,wBAAA,EAAA,WAAA,EACA,kBAAA,EAAA,UAAA,EACA,UAAA,KAEF,aACE,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,UAAA,KAIA,UFFN,SAAA,EAAA,EAAA,UAAA,KAAA,EAAA,EAAA,UAIA,UAAA,UEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KAIA,UAAA,KEGI,gBAAwB,eAAA,GAAA,MAAA,GAExB,eAAuB,eAAA,GAAA,MAAA,GAGrB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAMtB,aFTR,YAAA,EESQ,aFTR,YAAA,UESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,cFTR,YAAA,WESQ,cFTR,YAAA,YCWE,yBC9BE,QACE,wBAAA,EAAA,WAAA,EACA,kBAAA,EAAA,UAAA,EACA,UAAA,KAEF,aACE,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,UAAA,KAIA,UFFN,SAAA,EAAA,EAAA,UAAA,KAAA,EAAA,EAAA,UAIA,UAAA,UEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KAIA,UAAA,KEGI,gBAAwB,eAAA,GAAA,MAAA,GAExB,eAAuB,eAAA,GAAA,MAAA,GAGrB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAMtB,aFTR,YAAA,EESQ,aFTR,YAAA,UESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,cFTR,YAAA,WESQ,cFTR,YAAA,YCWE,yBC9BE,QACE,wBAAA,EAAA,WAAA,EACA,kBAAA,EAAA,UAAA,EACA,UAAA,KAEF,aACE,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,UAAA,KAIA,UFFN,SAAA,EAAA,EAAA,UAAA,KAAA,EAAA,EAAA,UAIA,UAAA,UEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KAIA,UAAA,KEGI,gBAAwB,eAAA,GAAA,MAAA,GAExB,eAAuB,eAAA,GAAA,MAAA,GAGrB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAMtB,aFTR,YAAA,EESQ,aFTR,YAAA,UESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,cFTR,YAAA,WESQ,cFTR,YAAA,YCWE,0BC9BE,QACE,wBAAA,EAAA,WAAA,EACA,kBAAA,EAAA,UAAA,EACA,UAAA,KAEF,aACE,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,UAAA,KAIA,UFFN,SAAA,EAAA,EAAA,UAAA,KAAA,EAAA,EAAA,UAIA,UAAA,UEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,UFFN,SAAA,EAAA,EAAA,IAAA,KAAA,EAAA,EAAA,IAIA,UAAA,IEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,WAAA,KAAA,EAAA,EAAA,WAIA,UAAA,WEFM,WFFN,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KAIA,UAAA,KEGI,gBAAwB,eAAA,GAAA,MAAA,GAExB,eAAuB,eAAA,GAAA,MAAA,GAGrB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,YAAwB,eAAA,EAAA,MAAA,EAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAAxB,aAAwB,eAAA,GAAA,MAAA,GAMtB,aFTR,YAAA,EESQ,aFTR,YAAA,UESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,aFTR,YAAA,WESQ,aFTR,YAAA,WESQ,aFTR,YAAA,IESQ,cFTR,YAAA,WESQ,cFTR,YAAA,YG7CF,OACE,MAAA,KACA,cAAA,KACA,MAAA,Qdy+CF,Uc5+CA,UAQI,QAAA,OACA,eAAA,IACA,WAAA,IAAA,MAAA,QAVJ,gBAcI,eAAA,OACA,cAAA,IAAA,MAAA,QAfJ,mBAmBI,WAAA,IAAA,MAAA,Qdy+CJ,ach+CA,aAGI,QAAA,MASJ,gBACE,OAAA,IAAA,MAAA,Qd49CF,mBc79CA,mBAKI,OAAA,IAAA,MAAA,Qd69CJ,yBcl+CA,yBAWM,oBAAA,Id89CN,8BAFA,qBcv9CA,qBdw9CA,2Bcn9CI,OAAA,EAQJ,yCAEI,iBAAA,gBX/DF,4BW2EI,MAAA,QACA,iBAAA,iBCnFJ,ef+hDF,kBADA,kBe1hDM,iBAAA,QfkiDN,2BAFA,kBepiDE,kBfqiDF,wBezhDQ,aAAA,QZLN,kCYiBM,iBAAA,QALN,qCf4hDF,qCenhDU,iBAAA,QA5BR,iBfqjDF,oBADA,oBehjDM,iBAAA,QfwjDN,6BAFA,oBe1jDE,oBf2jDF,0Be/iDQ,aAAA,QZLN,oCYiBM,iBAAA,QALN,uCfkjDF,uCeziDU,iBAAA,QA5BR,ef2kDF,kBADA,kBetkDM,iBAAA,Qf8kDN,2BAFA,kBehlDE,kBfilDF,wBerkDQ,aAAA,QZLN,kCYiBM,iBAAA,QALN,qCfwkDF,qCe/jDU,iBAAA,QA5BR,YfimDF,eADA,ee5lDM,iBAAA,QfomDN,wBAFA,eetmDE,efumDF,qBe3lDQ,aAAA,QZLN,+BYiBM,iBAAA,QALN,kCf8lDF,kCerlDU,iBAAA,QA5BR,efunDF,kBADA,kBelnDM,iBAAA,Qf0nDN,2BAFA,kBe5nDE,kBf6nDF,wBejnDQ,aAAA,QZLN,kCYiBM,iBAAA,QALN,qCfonDF,qCe3mDU,iBAAA,QA5BR,cf6oDF,iBADA,iBexoDM,iBAAA,QfgpDN,0BAFA,iBelpDE,iBfmpDF,uBevoDQ,aAAA,QZLN,iCYiBM,iBAAA,QALN,oCf0oDF,oCejoDU,iBAAA,QA5BR,afmqDF,gBADA,gBe9pDM,iBAAA,QfsqDN,yBAFA,gBexqDE,gBfyqDF,sBe7pDQ,aAAA,QZLN,gCYiBM,iBAAA,QALN,mCfgqDF,mCevpDU,iBAAA,QA5BR,YfyrDF,eADA,eeprDM,iBAAA,Qf4rDN,wBAFA,ee9rDE,ef+rDF,qBenrDQ,aAAA,QZLN,+BYiBM,iBAAA,QALN,kCfsrDF,kCe7qDU,iBAAA,QA5BR,cf+sDF,iBADA,iBe1sDM,iBAAA,iBZGJ,iCYiBM,iBAAA,iBALN,oCfqsDF,oCe5rDU,iBAAA,iBD8EV,sBAGM,MAAA,KACA,iBAAA,QACA,aAAA,QALN,uBAWM,MAAA,QACA,iBAAA,QACA,aAAA,QAKN,YACE,MAAA,KACA,iBAAA,QdgnDF,eclnDA,edmnDA,qBc5mDI,aAAA,QAPJ,2BAWI,OAAA,EAXJ,oDAgBM,iBAAA,sBXrIJ,uCW4IM,MAAA,KACA,iBAAA,uBFhFJ,4BEiGA,qBAEI,QAAA,MACA,MAAA,KACA,WAAA,KACA,2BAAA,MALH,qCASK,OAAA,GF1GN,4BEiGA,qBAEI,QAAA,MACA,MAAA,KACA,WAAA,KACA,2BAAA,MALH,qCASK,OAAA,GF1GN,4BEiGA,qBAEI,QAAA,MACA,MAAA,KACA,WAAA,KACA,2BAAA,MALH,qCASK,OAAA,GF1GN,6BEiGA,qBAEI,QAAA,MACA,MAAA,KACA,WAAA,KACA,2BAAA,MALH,qCASK,OAAA,GAdV,kBAOQ,QAAA,MACA,MAAA,KACA,WAAA,KACA,2BAAA,MAVR,kCAcU,OAAA,EE7KV,cACE,QAAA,MACA,MAAA,KACA,OAAA,2BACA,QAAA,QAAA,OfqHI,UAAA,KelHJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QRbE,cAAA,OSCE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAKF,uCDLJ,cCMM,WAAA,MDNN,0BAsBI,iBAAA,YACA,OAAA,EEhBF,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,MAAA,oBFhBN,yCA+BI,MAAA,QAEA,QAAA,EAjCJ,gCA+BI,MAAA,QAEA,QAAA,EAjCJ,oCA+BI,MAAA,QAEA,QAAA,EAjCJ,qCA+BI,MAAA,QAEA,QAAA,EAjCJ,2BA+BI,MAAA,QAEA,QAAA,EAjCJ,uBAAA,wBA2CI,iBAAA,QAEA,QAAA,EAIJ,qCAOI,MAAA,QACA,iBAAA,KAKJ,mBhBm0DA,oBgBj0DE,QAAA,MACA,MAAA,KAUF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EfZE,UAAA,QecF,YAAA,IAGF,mBACE,YAAA,kBACA,eAAA,kBfoCI,UAAA,QelCJ,YAAA,IAGF,mBACE,YAAA,mBACA,eAAA,mBf6BI,UAAA,Qe3BJ,YAAA,IASF,wBACE,QAAA,MACA,MAAA,KACA,YAAA,QACA,eAAA,QACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAVF,wCAAA,wCAcI,cAAA,EACA,aAAA,EAYJ,iBACE,OAAA,0BACA,QAAA,OAAA,MfXI,UAAA,QeaJ,YAAA,IRvIE,cAAA,MQ2IJ,iBACE,OAAA,yBACA,QAAA,MAAA,KfnBI,UAAA,QeqBJ,YAAA,IR/IE,cAAA,MQoJJ,8BAAA,0BAGI,OAAA,KAIJ,sBACE,OAAA,KAQF,YACE,cAAA,KAGF,WACE,QAAA,MACA,WAAA,OAQF,UACE,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,aAAA,KACA,YAAA,KAJF,ehBwyDA,wBgBhyDI,cAAA,IACA,aAAA,IASJ,YACE,SAAA,SACA,QAAA,MACA,aAAA,QAGF,kBACE,SAAA,SACA,WAAA,MACA,YAAA,SAHF,6CAMI,MAAA,QAIJ,kBACE,cAAA,EAGF,mBACE,QAAA,mBAAA,QAAA,YACA,eAAA,OAAA,YAAA,OACA,aAAA,EACA,aAAA,OAJF,qCAQI,SAAA,OACA,WAAA,EACA,aAAA,SACA,YAAA,EE3MF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OjBwCA,UAAA,IiBtCA,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MjBmFE,UAAA,QiBjFF,YAAA,IACA,MAAA,KACA,iBAAA,mBV3CA,cAAA,OUgDA,uBAAA,mCAEE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,OAAA,MAAA,wBACA,gBAAA,sBAAA,sBATJ,6BAAA,yCAaI,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBlB2+D6C,uCACrD,sCkB1/DI,mDlBy/DJ,kDkBt+DQ,QAAA,MAOJ,2CAAA,+BAGI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBAMJ,wBAAA,oCAEE,aAAA,QAGE,cAAA,uCACA,WAAA,0JAAA,UAAA,MAAA,OAAA,MAAA,CAAA,IAAA,IAAA,CAAA,2OAAA,KAAA,UAAA,OAAA,MAAA,OAAA,CAAA,sBAAA,sBANJ,8BAAA,0CAUI,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBlBg+D8C,wCACtD,uCkB5+DI,oDlB2+DJ,mDkB39DQ,QAAA,MlBi+DkD,4CAC1D,2CkB39DI,wDlB09DJ,uDkBt9DQ,QAAA,MAMJ,6CAAA,yDAGI,MAAA,QlBu9DiD,2CACzD,0CkB39DI,uDlB09DJ,sDkBl9DQ,QAAA,MAMJ,qDAAA,iEAGI,MAAA,QAHJ,6DAAA,yEAMM,aAAA,QlBo9DmD,+CAC7D,8CkB39DI,2DlB09DJ,0DkB98DQ,QAAA,MAZJ,qEAAA,iFAiBM,aAAA,QCnJN,iBAAA,QDkIA,mEAAA,+EAwBM,WAAA,EAAA,EAAA,EAAA,MAAA,oBAxBN,iFAAA,6FA4BM,aAAA,QAQN,+CAAA,2DAGI,aAAA,QlB08DkD,4CAC1D,2CkB98DI,wDlB68DJ,uDkBr8DQ,QAAA,MARJ,qDAAA,iEAaM,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBA7JR,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OjBwCA,UAAA,IiBtCA,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MjBmFE,UAAA,QiBjFF,YAAA,IACA,MAAA,KACA,iBAAA,mBV3CA,cAAA,OUgDA,yBAAA,qCAEE,aAAA,QAGE,cAAA,qBACA,iBAAA,qRACA,kBAAA,UACA,oBAAA,OAAA,MAAA,wBACA,gBAAA,sBAAA,sBATJ,+BAAA,2CAaI,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBlBsmEiD,2CACzD,0CkBrnEI,uDlBonEJ,sDkBjmEQ,QAAA,MAOJ,6CAAA,iCAGI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBAMJ,0BAAA,sCAEE,aAAA,QAGE,cAAA,uCACA,WAAA,0JAAA,UAAA,MAAA,OAAA,MAAA,CAAA,IAAA,IAAA,CAAA,qRAAA,KAAA,UAAA,OAAA,MAAA,OAAA,CAAA,sBAAA,sBANJ,gCAAA,4CAUI,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBlB2lEkD,4CAC1D,2CkBvmEI,wDlBsmEJ,uDkBtlEQ,QAAA,MlB4lEsD,gDAC9D,+CkBtlEI,4DlBqlEJ,2DkBjlEQ,QAAA,MAMJ,+CAAA,2DAGI,MAAA,QlBklEqD,+CAC7D,8CkBtlEI,2DlBqlEJ,0DkB7kEQ,QAAA,MAMJ,uDAAA,mEAGI,MAAA,QAHJ,+DAAA,2EAMM,aAAA,QlB+kEuD,mDACjE,kDkBtlEI,+DlBqlEJ,8DkBzkEQ,QAAA,MAZJ,uEAAA,mFAiBM,aAAA,QCnJN,iBAAA,QDkIA,qEAAA,iFAwBM,WAAA,EAAA,EAAA,EAAA,MAAA,oBAxBN,mFAAA,+FA4BM,aAAA,QAQN,iDAAA,6DAGI,aAAA,QlBqkEsD,gDAC9D,+CkBzkEI,4DlBwkEJ,2DkBhkEQ,QAAA,MARJ,uDAAA,mEAaM,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBFuEV,aACE,QAAA,YAAA,QAAA,KACA,cAAA,IAAA,KAAA,UAAA,IAAA,KACA,eAAA,OAAA,YAAA,OAHF,yBASI,MAAA,KJ9MA,yBIqMJ,mBAeM,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,OAAA,gBAAA,OACA,cAAA,EAlBN,yBAuBM,QAAA,YAAA,QAAA,KACA,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,cAAA,IAAA,KAAA,UAAA,IAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,EA3BN,2BAgCM,QAAA,aACA,MAAA,KACA,eAAA,OAlCN,qCAuCM,QAAA,ahBigEJ,4BgBxiEF,0BA4CM,MAAA,KA5CN,yBAkDM,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,OAAA,gBAAA,OACA,MAAA,KACA,aAAA,EAtDN,+BAyDM,SAAA,SACA,kBAAA,EAAA,YAAA,EACA,WAAA,EACA,aAAA,OACA,YAAA,EA7DN,6BAiEM,eAAA,OAAA,YAAA,OACA,cAAA,OAAA,gBAAA,OAlEN,mCAqEM,cAAA,GIhUN,KACE,QAAA,aAEA,YAAA,IACA,MAAA,QACA,WAAA,OACA,eAAA,OACA,oBAAA,KAAA,iBAAA,KAAA,gBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YCsFA,QAAA,QAAA,OpB0BI,UAAA,KoBxBJ,YAAA,IblGE,cAAA,OSCE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAKF,uCGLJ,KHMM,WAAA,MdAJ,WiBQE,MAAA,QACA,gBAAA,KAfJ,WAAA,WAoBI,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBArBJ,cAAA,cA2BI,QAAA,IAeJ,epBi0EA,wBoB/zEE,eAAA,KASA,aCrDA,MAAA,KFAE,iBAAA,QEEF,aAAA,QlBIA,mBkBAE,MAAA,KFNA,iBAAA,QEQA,aAAA,QAGF,mBAAA,mBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,oBAKJ,sBAAA,sBAEE,MAAA,KACA,iBAAA,QACA,aAAA,QAOF,kDAAA,kDrBq2EF,mCqBl2EI,MAAA,KACA,iBAAA,QAIA,aAAA,QAEA,wDAAA,wDrBk2EJ,yCqB71EQ,WAAA,EAAA,EAAA,EAAA,MAAA,oBDKN,eCrDA,MAAA,KFAE,iBAAA,QEEF,aAAA,QlBIA,qBkBAE,MAAA,KFNA,iBAAA,QEQA,aAAA,QAGF,qBAAA,qBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,qBAKJ,wBAAA,wBAEE,MAAA,KACA,iBAAA,QACA,aAAA,QAOF,oDAAA,oDrBu4EF,qCqBp4EI,MAAA,KACA,iBAAA,QAIA,aAAA,QAEA,0DAAA,0DrBo4EJ,2CqB/3EQ,WAAA,EAAA,EAAA,EAAA,MAAA,qBDKN,aCrDA,MAAA,KFAE,iBAAA,QEEF,aAAA,QlBIA,mBkBAE,MAAA,KFNA,iBAAA,QEQA,aAAA,QAGF,mBAAA,mBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,mBAKJ,sBAAA,sBAEE,MAAA,KACA,iBAAA,QACA,aAAA,QAOF,kDAAA,kDrBy6EF,mCqBt6EI,MAAA,KACA,iBAAA,QAIA,aAAA,QAEA,wDAAA,wDrBs6EJ,yCqBj6EQ,WAAA,EAAA,EAAA,EAAA,MAAA,mBDKN,UCrDA,MAAA,KFAE,iBAAA,QEEF,aAAA,QlBIA,gBkBAE,MAAA,KFNA,iBAAA,QEQA,aAAA,QAGF,gBAAA,gBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,oBAKJ,mBAAA,mBAEE,MAAA,KACA,iBAAA,QACA,aAAA,QAOF,+CAAA,+CrB28EF,gCqBx8EI,MAAA,KACA,iBAAA,QAIA,aAAA,QAEA,qDAAA,qDrBw8EJ,sCqBn8EQ,WAAA,EAAA,EAAA,EAAA,MAAA,oBDKN,aCrDA,MAAA,QFAE,iBAAA,QEEF,aAAA,QlBIA,mBkBAE,MAAA,QFNA,iBAAA,QEQA,aAAA,QAGF,mBAAA,mBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,oBAKJ,sBAAA,sBAEE,MAAA,QACA,iBAAA,QACA,aAAA,QAOF,kDAAA,kDrB6+EF,mCqB1+EI,MAAA,QACA,iBAAA,QAIA,aAAA,QAEA,wDAAA,wDrB0+EJ,yCqBr+EQ,WAAA,EAAA,EAAA,EAAA,MAAA,oBDKN,YCrDA,MAAA,KFAE,iBAAA,QEEF,aAAA,QlBIA,kBkBAE,MAAA,KFNA,iBAAA,QEQA,aAAA,QAGF,kBAAA,kBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,mBAKJ,qBAAA,qBAEE,MAAA,KACA,iBAAA,QACA,aAAA,QAOF,iDAAA,iDrB+gFF,kCqB5gFI,MAAA,KACA,iBAAA,QAIA,aAAA,QAEA,uDAAA,uDrB4gFJ,wCqBvgFQ,WAAA,EAAA,EAAA,EAAA,MAAA,mBDKN,WCrDA,MAAA,QFAE,iBAAA,QEEF,aAAA,QlBIA,iBkBAE,MAAA,QFNA,iBAAA,QEQA,aAAA,QAGF,iBAAA,iBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,qBAKJ,oBAAA,oBAEE,MAAA,QACA,iBAAA,QACA,aAAA,QAOF,gDAAA,gDrBijFF,iCqB9iFI,MAAA,QACA,iBAAA,QAIA,aAAA,QAEA,sDAAA,sDrB8iFJ,uCqBziFQ,WAAA,EAAA,EAAA,EAAA,MAAA,qBDKN,UCrDA,MAAA,KFAE,iBAAA,QEEF,aAAA,QlBIA,gBkBAE,MAAA,KFNA,iBAAA,QEQA,aAAA,QAGF,gBAAA,gBAMI,WAAA,EAAA,EAAA,EAAA,MAAA,kBAKJ,mBAAA,mBAEE,MAAA,KACA,iBAAA,QACA,aAAA,QAOF,+CAAA,+CrBmlFF,gCqBhlFI,MAAA,KACA,iBAAA,QAIA,aAAA,QAEA,qDAAA,qDrBglFJ,sCqB3kFQ,WAAA,EAAA,EAAA,EAAA,MAAA,kBDWN,qBCJA,MAAA,QACA,aAAA,QlBlDA,2BkBqDE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,2BAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,MAAA,mBAGF,8BAAA,8BAEE,MAAA,QACA,iBAAA,YAGF,0DAAA,0DrBykFF,2CqBtkFI,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,gEAAA,gErBykFJ,iDqBpkFQ,WAAA,EAAA,EAAA,EAAA,MAAA,mBD5BN,uBCJA,MAAA,QACA,aAAA,QlBlDA,6BkBqDE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,6BAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,MAAA,qBAGF,gCAAA,gCAEE,MAAA,QACA,iBAAA,YAGF,4DAAA,4DrBymFF,6CqBtmFI,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,kEAAA,kErBymFJ,mDqBpmFQ,WAAA,EAAA,EAAA,EAAA,MAAA,qBD5BN,qBCJA,MAAA,QACA,aAAA,QlBlDA,2BkBqDE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,2BAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,MAAA,mBAGF,8BAAA,8BAEE,MAAA,QACA,iBAAA,YAGF,0DAAA,0DrByoFF,2CqBtoFI,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,gEAAA,gErByoFJ,iDqBpoFQ,WAAA,EAAA,EAAA,EAAA,MAAA,mBD5BN,kBCJA,MAAA,QACA,aAAA,QlBlDA,wBkBqDE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wBAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,MAAA,oBAGF,2BAAA,2BAEE,MAAA,QACA,iBAAA,YAGF,uDAAA,uDrByqFF,wCqBtqFI,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6DAAA,6DrByqFJ,8CqBpqFQ,WAAA,EAAA,EAAA,EAAA,MAAA,oBD5BN,qBCJA,MAAA,QACA,aAAA,QlBlDA,2BkBqDE,MAAA,QACA,iBAAA,QACA,aAAA,QAGF,2BAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,MAAA,mBAGF,8BAAA,8BAEE,MAAA,QACA,iBAAA,YAGF,0DAAA,0DrBysFF,2CqBtsFI,MAAA,QACA,iBAAA,QACA,aAAA,QAEA,gEAAA,gErBysFJ,iDqBpsFQ,WAAA,EAAA,EAAA,EAAA,MAAA,mBD5BN,oBCJA,MAAA,QACA,aAAA,QlBlDA,0BkBqDE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,0BAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,MAAA,mBAGF,6BAAA,6BAEE,MAAA,QACA,iBAAA,YAGF,yDAAA,yDrByuFF,0CqBtuFI,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+DAAA,+DrByuFJ,gDqBpuFQ,WAAA,EAAA,EAAA,EAAA,MAAA,mBD5BN,mBCJA,MAAA,QACA,aAAA,QlBlDA,yBkBqDE,MAAA,QACA,iBAAA,QACA,aAAA,QAGF,yBAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,MAAA,qBAGF,4BAAA,4BAEE,MAAA,QACA,iBAAA,YAGF,wDAAA,wDrBywFF,yCqBtwFI,MAAA,QACA,iBAAA,QACA,aAAA,QAEA,8DAAA,8DrBywFJ,+CqBpwFQ,WAAA,EAAA,EAAA,EAAA,MAAA,qBD5BN,kBCJA,MAAA,QACA,aAAA,QlBlDA,wBkBqDE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wBAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,MAAA,kBAGF,2BAAA,2BAEE,MAAA,QACA,iBAAA,YAGF,uDAAA,uDrByyFF,wCqBtyFI,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6DAAA,6DrByyFJ,8CqBpyFQ,WAAA,EAAA,EAAA,EAAA,MAAA,kBDjBR,UACE,YAAA,IACA,MAAA,QACA,gBAAA,KjBnEA,gBiBsEE,MAAA,QACA,gBAAA,UAPJ,gBAAA,gBAYI,gBAAA,UACA,WAAA,KAbJ,mBAAA,mBAkBI,MAAA,QACA,eAAA,KAWJ,mBAAA,QCLE,QAAA,MAAA,KpB0BI,UAAA,QoBxBJ,YAAA,IblGE,cAAA,MYyGJ,mBAAA,QCTE,QAAA,OAAA,MpB0BI,UAAA,QoBxBJ,YAAA,IblGE,cAAA,MYkHJ,WACE,QAAA,MACA,MAAA,KAFF,sBAMI,WAAA,MpBszFJ,6BADA,4BoBhzFA,6BAII,MAAA,KEtIJ,MLMM,WAAA,QAAA,KAAA,OAKF,uCKXJ,MLYM,WAAA,MKZN,iBAII,QAAA,EAIJ,qBAEI,QAAA,KAIJ,YACE,SAAA,SACA,OAAA,EACA,SAAA,OLXI,WAAA,OAAA,KAAA,KAKF,uCKGJ,YLFM,WAAA,MjB48FN,UACA,UAFA,WuBt9FA,QAIE,SAAA,SAGF,iBACE,YAAA,OCoBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED1CN,eACE,SAAA,SACA,IAAA,KACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,QAAA,EAAA,EtBsGI,UAAA,KsBpGJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gBf3BE,cAAA,OeoCA,oBACE,MAAA,KACA,KAAA,EAGF,qBACE,MAAA,EACA,KAAA,KXYF,yBWnBA,uBACE,MAAA,KACA,KAAA,EAGF,wBACE,MAAA,EACA,KAAA,MXYF,yBWnBA,uBACE,MAAA,KACA,KAAA,EAGF,wBACE,MAAA,EACA,KAAA,MXYF,yBWnBA,uBACE,MAAA,KACA,KAAA,EAGF,wBACE,MAAA,EACA,KAAA,MXYF,0BWnBA,uBACE,MAAA,KACA,KAAA,EAGF,wBACE,MAAA,EACA,KAAA,MAON,uBAEI,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC/BA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,EDUN,0BAEI,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC7CA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,yCACE,YAAA,EA7BF,mCDmDE,eAAA,EAKN,yBAEI,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC9DA,kCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAJF,kCAgBI,QAAA,KAGF,mCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,wCACE,YAAA,EAVA,mCDiDA,eAAA,EAON,oCAAA,kCAAA,mCAAA,iCAKI,MAAA,KACA,OAAA,KAKJ,kBE9GE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,QFkHF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,OACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,YAAA,OACA,iBAAA,YACA,OAAA,EpBpHA,qBAAA,qBoBmIE,MAAA,QACA,gBAAA,KJ9IA,iBAAA,QIoHJ,sBAAA,sBAgCI,MAAA,KACA,gBAAA,KJrJA,iBAAA,QIoHJ,wBAAA,wBAuCI,MAAA,QACA,eAAA,KACA,iBAAA,YAQJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,OACA,cAAA,EtBpDI,UAAA,QsBsDJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,OACA,MAAA,QG1LF,W1B4sGA,oB0B1sGE,SAAA,SACA,QAAA,mBAAA,QAAA,YACA,eAAA,O1BgtGF,yB0BptGA,gBAOI,SAAA,SACA,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,K1BmtGJ,+BGltGE,sBuBII,QAAA,E1BqtGN,gCADA,gCADA,+B0BhuGA,uBAAA,uBAAA,sBAkBM,QAAA,EAMN,aACE,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,cAAA,MAAA,gBAAA,WAHF,0BAMI,MAAA,K1BstGJ,wC0BltGA,kCAII,YAAA,K1BmtGJ,4C0BvtGA,uDlBhBI,wBAAA,EACA,2BAAA,ER4uGJ,6C0B7tGA,kClBFI,uBAAA,EACA,0BAAA,EkBgCJ,uBACE,cAAA,SACA,aAAA,SAFF,8B1B0sGA,yCADA,sC0BlsGI,YAAA,EAGF,yCACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,mBAAA,OAAA,eAAA,OACA,eAAA,MAAA,YAAA,WACA,cAAA,OAAA,gBAAA,OAHF,yB1B4rGA,+B0BrrGI,MAAA,K1B0rGJ,iD0BjsGA,2CAYI,WAAA,K1B0rGJ,qD0BtsGA,gElBlFI,2BAAA,EACA,0BAAA,ER6xGJ,sD0B5sGA,2ClBhGI,uBAAA,EACA,wBAAA,EkBuIJ,uB1B0qGA,kC0BvqGI,cAAA,E1B4qGJ,4C0B/qGA,yC1BirGA,uDADA,oD0BzqGM,SAAA,SACA,KAAA,cACA,eAAA,KCzJN,aACE,SAAA,SACA,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,eAAA,QAAA,YAAA,QACA,MAAA,K3Bg1GF,0BADA,4B2Bp1GA,2B3Bm1GA,qC2Bx0GI,SAAA,SACA,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KAGA,MAAA,GACA,cAAA,E3Bw1GJ,uCADA,yCADA,wCADA,yCADA,2CADA,0CAJA,wCADA,0C2B91GA,yC3Bk2GA,kDADA,oDADA,mD2B30GM,YAAA,K3By1GN,sEADA,kC2B72GA,iCA6BI,QAAA,EA7BJ,mDAkCI,QAAA,E3Bq1GJ,6C2Bv3GA,4CnBeI,wBAAA,EACA,2BAAA,ER62GJ,8C2B73GA,6CnB6BI,uBAAA,EACA,0BAAA,EmB9BJ,0BA8CI,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OA/CJ,8D3B04GA,qEQ33GI,wBAAA,EACA,2BAAA,EmBhBJ,+DnB6BI,uBAAA,EACA,0BAAA,ERu3GJ,oB2Bv1GA,qBAEE,QAAA,YAAA,QAAA,K3B21GF,yB2B71GA,0BAQI,SAAA,SACA,QAAA,E3B01GJ,+B2Bn2GA,gCAYM,QAAA,E3B+1GN,8BACA,2CAEA,2CADA,wD2B72GA,+B3Bw2GA,4CAEA,4CADA,yD2Br1GI,YAAA,KAIJ,qBAAuB,aAAA,KACvB,oBAAsB,YAAA,KAQtB,kBACE,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,QAAA,QAAA,OACA,cAAA,E1BsBI,UAAA,K0BpBJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QnB5GE,cAAA,OR48GJ,uC2B52GA,oCAkBI,WAAA,E3B+1GJ,+B2Br1GA,4CAEE,OAAA,yB3Bw1GF,+B2Br1GA,8B3By1GA,yCAFA,sDACA,0CAFA,uD2Bh1GE,QAAA,MAAA,K1BbI,UAAA,Q0BeJ,YAAA,InBzIE,cAAA,MRk+GJ,+B2Br1GA,4CAEE,OAAA,0B3Bw1GF,+B2Br1GA,8B3By1GA,yCAFA,sDACA,0CAFA,uD2Bh1GE,QAAA,OAAA,M1B9BI,UAAA,Q0BgCJ,YAAA,InB1JE,cAAA,MmB8JJ,+B3Bq1GA,+B2Bn1GE,cAAA,Q3B21GF,wFACA,+EAHA,uDACA,oE2B/0GA,uC3B60GA,oDQx+GI,wBAAA,EACA,2BAAA,EmBmKJ,sC3B80GA,mDAGA,qEACA,kFAHA,yDACA,sEQt+GI,uBAAA,EACA,0BAAA,EoB3BJ,gBACE,SAAA,SACA,QAAA,MACA,WAAA,OACA,aAAA,OAGF,uBACE,QAAA,mBAAA,QAAA,YACA,aAAA,KAGF,sBACE,SAAA,SACA,QAAA,GACA,QAAA,EAHF,4DAMI,MAAA,KACA,aAAA,QTtBA,iBAAA,QSeJ,0DAiBM,WAAA,EAAA,EAAA,EAAA,MAAA,oBAjBN,wEAsBI,aAAA,QAtBJ,0EA0BI,MAAA,KACA,iBAAA,QACA,aAAA,QA5BJ,qDAkCM,MAAA,QAlCN,6DAqCQ,iBAAA,QAUR,sBACE,SAAA,SACA,cAAA,EACA,eAAA,IAHF,8BAOI,SAAA,SACA,IAAA,OACA,KAAA,QACA,QAAA,MACA,MAAA,KACA,OAAA,KACA,eAAA,KACA,QAAA,GACA,iBAAA,KACA,OAAA,QAAA,MAAA,IAhBJ,6BAsBI,SAAA,SACA,IAAA,OACA,KAAA,QACA,QAAA,MACA,MAAA,KACA,OAAA,KACA,QAAA,GACA,WAAA,UAAA,GAAA,CAAA,IAAA,IASJ,+CpBrGI,cAAA,OoBqGJ,4EAOM,iBAAA,4LAPN,mFAaM,aAAA,QTjHF,iBAAA,QSoGJ,kFAkBM,iBAAA,yIAlBN,sFAwBM,iBAAA,mBAxBN,4FA2BM,iBAAA,mBASN,4CAGI,cAAA,IAHJ,yEAQM,iBAAA,sIARN,mFAcM,iBAAA,mBAUN,eACE,aAAA,QADF,6CAKM,KAAA,SACA,MAAA,QACA,eAAA,IAEA,cAAA,MATN,4CAaM,IAAA,mBACA,KAAA,qBACA,MAAA,iBACA,OAAA,iBACA,iBAAA,QAEA,cAAA,MXnLA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,kBAAA,KAAA,YAAA,WAAA,UAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,UAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,kBAAA,KAAA,YAKF,uCW2JJ,4CX1JM,WAAA,MW0JN,0EA0BM,iBAAA,KACA,kBAAA,mBAAA,UAAA,mBA3BN,oFAiCM,iBAAA,mBAYN,eACE,QAAA,aACA,MAAA,KACA,OAAA,2BACA,QAAA,QAAA,QAAA,QAAA,O3BxFI,UAAA,K2B2FJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,eAAA,OACA,WAAA,0JAAA,UAAA,MAAA,OAAA,MAAA,CAAA,IAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QpB3NE,cAAA,OoB8NF,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAhBF,qBAmBI,aAAA,QACA,QAAA,EAIE,WAAA,EAAA,EAAA,EAAA,MAAA,oBAxBN,gCAiCM,MAAA,QACA,iBAAA,KAlCN,yBAAA,qCAwCI,OAAA,KACA,cAAA,OACA,iBAAA,KA1CJ,wBA8CI,MAAA,QACA,iBAAA,QA/CJ,2BAoDI,QAAA,KAIJ,kBACE,OAAA,0BACA,YAAA,OACA,eAAA,OACA,aAAA,M3BhJI,UAAA,Q2BoJN,kBACE,OAAA,yBACA,YAAA,MACA,eAAA,MACA,aAAA,K3BxJI,UAAA,Q2BiKN,aACE,SAAA,SACA,QAAA,aACA,MAAA,KACA,OAAA,2BACA,cAAA,EAGF,mBACE,SAAA,SACA,QAAA,EACA,MAAA,KACA,OAAA,2BACA,OAAA,EACA,QAAA,EANF,4CASI,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBAVJ,+CAcI,iBAAA,QAdJ,sDAmBM,QAAA,SAnBN,0DAwBI,QAAA,kBAIJ,mBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,EACA,OAAA,2BACA,QAAA,QAAA,OAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,OAAA,IAAA,MAAA,QpB5UE,cAAA,OoB+TJ,0BAkBI,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,QAAA,EACA,QAAA,MACA,OAAA,qBACA,QAAA,QAAA,OACA,YAAA,IACA,MAAA,QACA,QAAA,ST1VA,iBAAA,QS4VA,YAAA,QpB7VA,cAAA,EAAA,OAAA,OAAA,EoBwWJ,cACE,MAAA,KACA,OAAA,mBACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KALF,oBAQI,QAAA,EARJ,0CAY8B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,MAAA,oBAZ9B,sCAa8B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,MAAA,oBAb9B,+BAc8B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,MAAA,oBAd9B,gCAkBI,OAAA,EAlBJ,oCAsBI,MAAA,KACA,OAAA,KACA,WAAA,QT/XA,iBAAA,QSiYA,OAAA,EpBlYA,cAAA,KSCE,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YWqYF,mBAAA,KAAA,WAAA,KXhYA,uCWkWJ,oCXjWM,WAAA,MWiWN,2CTvWI,iBAAA,QSuWJ,6CAsCI,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YpBnZA,cAAA,KoBwWJ,gCAiDI,MAAA,KACA,OAAA,KTzZA,iBAAA,QS2ZA,OAAA,EpB5ZA,cAAA,KSCE,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YW+ZF,gBAAA,KAAA,WAAA,KX1ZA,uCWkWJ,gCXjWM,WAAA,MWiWN,uCTvWI,iBAAA,QSuWJ,gCAgEI,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YpB7aA,cAAA,KoBwWJ,yBA2EI,MAAA,KACA,OAAA,KACA,WAAA,EACA,aAAA,MACA,YAAA,MTtbA,iBAAA,QSwbA,OAAA,EpBzbA,cAAA,KSCE,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YW4bF,WAAA,KXvbA,uCWkWJ,yBXjWM,WAAA,MWiWN,gCTvWI,iBAAA,QSuWJ,yBA6FI,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,YACA,aAAA,YACA,aAAA,MAnGJ,8BAwGI,iBAAA,QpBhdA,cAAA,KoBwWJ,8BA6GI,aAAA,KACA,iBAAA,QpBtdA,cAAA,KoBwWJ,6CAoHM,iBAAA,QApHN,sDAwHM,OAAA,QAxHN,yCA4HM,iBAAA,QA5HN,yCAgIM,OAAA,QAhIN,kCAoIM,iBAAA,QAKN,8B5Bi9GA,mBACA,eiBl8HM,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAKF,uCW2eJ,8B5Bw9GE,mBACA,eiBn8HI,WAAA,MYPN,KACE,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,K1BCA,gBAAA,gB0BEE,gBAAA,KALJ,mBAUI,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QADF,oBAII,cAAA,KAJJ,oBAQI,OAAA,IAAA,MAAA,YrB3BA,uBAAA,OACA,wBAAA,OLCF,0BAAA,0B0B6BI,aAAA,QAAA,QAAA,QAZN,6BAgBM,MAAA,QACA,iBAAA,YACA,aAAA,Y7Bm9HN,mC6Br+HA,2BAwBI,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KA1BJ,yBA+BI,WAAA,KrBlDA,uBAAA,EACA,wBAAA,EqB4DJ,qBrBtEI,cAAA,OqBsEJ,4B7B48HA,2B6Br8HI,MAAA,KACA,iBAAA,QASJ,oBAEI,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,WAAA,OAIJ,yBAEI,wBAAA,EAAA,WAAA,EACA,kBAAA,EAAA,UAAA,EACA,WAAA,OASJ,uBAEI,QAAA,KAFJ,qBAKI,QAAA,MCpGJ,QACE,SAAA,SACA,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,QAAA,gBAAA,cACA,QAAA,MAAA,KANF,mB9B+iIA,yB8BniII,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,QAAA,gBAAA,cASJ,cACE,QAAA,aACA,YAAA,SACA,eAAA,SACA,aAAA,K7BkFI,UAAA,Q6BhFJ,YAAA,QACA,YAAA,O3BhCA,oBAAA,oB2BmCE,gBAAA,KASJ,YACE,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KALF,sBAQI,cAAA,EACA,aAAA,EATJ,2BAaI,SAAA,OACA,MAAA,KASJ,aACE,QAAA,aACA,YAAA,MACA,eAAA,MAYF,iBACE,wBAAA,KAAA,WAAA,KACA,kBAAA,EAAA,UAAA,EAGA,eAAA,OAAA,YAAA,OAIF,gBACE,QAAA,OAAA,O7BmBI,UAAA,Q6BjBJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,YtB3GE,cAAA,OLWF,sBAAA,sB2BoGE,gBAAA,KAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,QAAA,GACA,WAAA,UAAA,OAAA,OACA,gBAAA,KAAA,KlBxDE,4BkBkEC,6B9B0gIH,mC8BtgIQ,cAAA,EACA,aAAA,GlBpFN,yBkB+EA,kBAUI,cAAA,IAAA,OAAA,UAAA,IAAA,OACA,cAAA,MAAA,gBAAA,WAXH,8BAcK,mBAAA,IAAA,eAAA,IAdL,6CAiBO,SAAA,SAjBP,wCAqBO,cAAA,MACA,aAAA,MAtBP,6B9BmiIH,mC8BtgIQ,cAAA,OAAA,UAAA,OA7BL,mCAiCK,QAAA,sBAAA,QAAA,eAGA,wBAAA,KAAA,WAAA,KApCL,kCAwCK,QAAA,MlB1GN,4BkBkEC,6B9BojIH,mC8BhjIQ,cAAA,EACA,aAAA,GlBpFN,yBkB+EA,kBAUI,cAAA,IAAA,OAAA,UAAA,IAAA,OACA,cAAA,MAAA,gBAAA,WAXH,8BAcK,mBAAA,IAAA,eAAA,IAdL,6CAiBO,SAAA,SAjBP,wCAqBO,cAAA,MACA,aAAA,MAtBP,6B9B6kIH,mC8BhjIQ,cAAA,OAAA,UAAA,OA7BL,mCAiCK,QAAA,sBAAA,QAAA,eAGA,wBAAA,KAAA,WAAA,KApCL,kCAwCK,QAAA,MlB1GN,4BkBkEC,6B9B8lIH,mC8B1lIQ,cAAA,EACA,aAAA,GlBpFN,yBkB+EA,kBAUI,cAAA,IAAA,OAAA,UAAA,IAAA,OACA,cAAA,MAAA,gBAAA,WAXH,8BAcK,mBAAA,IAAA,eAAA,IAdL,6CAiBO,SAAA,SAjBP,wCAqBO,cAAA,MACA,aAAA,MAtBP,6B9BunIH,mC8B1lIQ,cAAA,OAAA,UAAA,OA7BL,mCAiCK,QAAA,sBAAA,QAAA,eAGA,wBAAA,KAAA,WAAA,KApCL,kCAwCK,QAAA,MlB1GN,6BkBkEC,6B9BwoIH,mC8BpoIQ,cAAA,EACA,aAAA,GlBpFN,0BkB+EA,kBAUI,cAAA,IAAA,OAAA,UAAA,IAAA,OACA,cAAA,MAAA,gBAAA,WAXH,8BAcK,mBAAA,IAAA,eAAA,IAdL,6CAiBO,SAAA,SAjBP,wCAqBO,cAAA,MACA,aAAA,MAtBP,6B9BiqIH,mC8BpoIQ,cAAA,OAAA,UAAA,OA7BL,mCAiCK,QAAA,sBAAA,QAAA,eAGA,wBAAA,KAAA,WAAA,KApCL,kCAwCK,QAAA,MA7CV,eAeQ,cAAA,IAAA,OAAA,UAAA,IAAA,OACA,cAAA,MAAA,gBAAA,WAhBR,0B9B6rIA,gC8BprIU,cAAA,EACA,aAAA,EAVV,2BAmBU,mBAAA,IAAA,eAAA,IAnBV,0CAsBY,SAAA,SAtBZ,qCA0BY,cAAA,MACA,aAAA,MA3BZ,0B9BitIA,gC8B/qIU,cAAA,OAAA,UAAA,OAlCV,gCAsCU,QAAA,sBAAA,QAAA,eAGA,wBAAA,KAAA,WAAA,KAzCV,+BA6CU,QAAA,KAaV,4BAEI,MAAA,e3BlLF,kCAAA,kC2BqLI,MAAA,eALN,oCAWM,MAAA,e3B3LJ,0CAAA,0C2B8LM,MAAA,eAdR,6CAkBQ,MAAA,e9B0qIR,4CAEA,2CADA,yC8B7rIA,0CA0BM,MAAA,eA1BN,8BA+BI,MAAA,eACA,aAAA,eAhCJ,mCAoCI,iBAAA,uOApCJ,2BAwCI,MAAA,eAxCJ,6BA0CM,MAAA,e3B1NJ,mCAAA,mC2B6NM,MAAA,eAOR,2BAEI,MAAA,K3BtOF,iCAAA,iC2ByOI,MAAA,KALN,mCAWM,MAAA,qB3B/OJ,yCAAA,yC2BkPM,MAAA,sBAdR,4CAkBQ,MAAA,sB9BsqIR,2CAEA,0CADA,wC8BzrIA,yCA0BM,MAAA,KA1BN,6BA+BI,MAAA,qBACA,aAAA,qBAhCJ,kCAoCI,iBAAA,6OApCJ,0BAwCI,MAAA,qBAxCJ,4BA0CM,MAAA,K3B9QJ,kCAAA,kC2BiRM,MAAA,KC7RR,MACE,SAAA,SACA,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OACA,UAAA,EACA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iBvBPE,cAAA,OuBDJ,SAYI,aAAA,EACA,YAAA,EAbJ,2DvBUI,uBAAA,OACA,wBAAA,OuBXJ,yDvBwBI,2BAAA,OACA,0BAAA,OuBIJ,WAGE,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,QAAA,QAIF,YACE,cAAA,OAGF,eACE,WAAA,SACA,cAAA,EAGF,sBACE,cAAA,E5BvCA,iB4B4CE,gBAAA,KAFJ,sBAMI,YAAA,QAQJ,aACE,QAAA,OAAA,QACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBALF,yBvB/DI,cAAA,mBAAA,mBAAA,EAAA,EuB+DJ,sDAaM,WAAA,EAKN,aACE,QAAA,OAAA,QACA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAHF,wBvBjFI,cAAA,EAAA,EAAA,mBAAA,mBuBgGJ,kBACE,aAAA,SACA,cAAA,QACA,YAAA,SACA,cAAA,EAGF,mBACE,aAAA,SACA,YAAA,SAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,QAGF,UACE,MAAA,KvBvHE,cAAA,mBuB4HJ,cACE,MAAA,KvBpHE,uBAAA,mBACA,wBAAA,mBuBuHJ,iBACE,MAAA,KvB3GE,2BAAA,mBACA,0BAAA,mBuBiHJ,WACE,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OAFF,iBAKI,cAAA,KnBvFA,yBmBkFJ,WASI,cAAA,IAAA,KAAA,UAAA,IAAA,KACA,aAAA,MACA,YAAA,MAXJ,iBAcM,QAAA,YAAA,QAAA,KAEA,SAAA,EAAA,EAAA,GAAA,KAAA,EAAA,EAAA,GACA,mBAAA,OAAA,eAAA,OACA,aAAA,KACA,cAAA,EACA,YAAA,MAUN,YACE,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OAFF,kBAOI,cAAA,KnBvHA,yBmBgHJ,YAWI,cAAA,IAAA,KAAA,UAAA,IAAA,KAXJ,kBAgBM,SAAA,EAAA,EAAA,GAAA,KAAA,EAAA,EAAA,GACA,cAAA,EAjBN,wBAoBQ,YAAA,EACA,YAAA,EArBR,mCvBvJI,wBAAA,EACA,2BAAA,ERqmJF,gD+B/8IF,iDAgCY,wBAAA,E/Bm7IV,gD+Bn9IF,oDAqCY,2BAAA,EArCZ,oCvBzII,uBAAA,EACA,0BAAA,ERmmJF,iD+B39IF,kDA+CY,uBAAA,E/Bg7IV,iD+B/9IF,qDAoDY,0BAAA,GAaZ,oBAEI,cAAA,OnBnLA,yBmBiLJ,cAMI,qBAAA,EAAA,kBAAA,EAAA,aAAA,EACA,mBAAA,QAAA,gBAAA,QAAA,WAAA,QACA,QAAA,EACA,OAAA,EATJ,oBAYM,QAAA,aACA,MAAA,MAUN,iBAEI,SAAA,OAFJ,8DvB/PI,cAAA,EuB+PJ,wDAUQ,cAAA,EvBzQJ,cAAA,EuB+PJ,+BAgBM,cAAA,EvBxPF,2BAAA,EACA,0BAAA,EuBuOJ,8BvBtPI,uBAAA,EACA,wBAAA,EuBqPJ,8BAyBM,cAAA,KC7RN,YACE,QAAA,YAAA,QAAA,KACA,cAAA,KAAA,UAAA,KACA,QAAA,OAAA,KACA,cAAA,KACA,WAAA,KACA,iBAAA,QxBDE,cAAA,OwBKJ,kCAGI,aAAA,MAHJ,0CAMM,QAAA,aACA,cAAA,MACA,MAAA,QACA,QAAA,IATN,gDAoBI,gBAAA,UApBJ,gDAwBI,gBAAA,KAxBJ,wBA4BI,MAAA,QCtCJ,YACE,QAAA,YAAA,QAAA,K5BGA,aAAA,EACA,WAAA,KGAE,cAAA,OyBCJ,WACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,OACA,YAAA,KACA,YAAA,KACA,MAAA,QACA,iBAAA,KACA,OAAA,IAAA,MAAA,QARF,iBAWI,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QACA,aAAA,QAfJ,iBAmBI,QAAA,EACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBAIJ,kCAGM,YAAA,EzBCF,uBAAA,OACA,0BAAA,OyBLJ,iCzBVI,wBAAA,OACA,2BAAA,OyBSJ,6BAcI,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAjBJ,+BAqBI,MAAA,QACA,eAAA,KAEA,OAAA,KACA,iBAAA,KACA,aAAA,QCtDF,0BACE,QAAA,OAAA,OjC2HE,UAAA,QiCzHF,YAAA,IAKE,iD1BwBF,uBAAA,MACA,0BAAA,M0BpBE,gD1BKF,wBAAA,MACA,2BAAA,M0BnBF,0BACE,QAAA,OAAA,MjC2HE,UAAA,QiCzHF,YAAA,IAKE,iD1BwBF,uBAAA,MACA,0BAAA,M0BpBE,gD1BKF,wBAAA,MACA,2BAAA,M2BjBJ,OACE,QAAA,aACA,QAAA,MAAA,KlCiEE,UAAA,IkC/DF,YAAA,IACA,YAAA,EACA,WAAA,OACA,YAAA,OACA,eAAA,S3BRE,cAAA,OSCE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAKF,uCkBNJ,OlBOM,WAAA,MdIJ,cAAA,cgCGI,gBAAA,KAdN,aAoBI,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KAOF,YACE,cAAA,KACA,aAAA,K3BpCE,cAAA,M2B6CF,eCjDA,MAAA,KACA,iBAAA,QjCcA,sBAAA,sBiCVI,MAAA,KACA,iBAAA,QAHI,sBAAA,sBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,mBDqCJ,iBCjDA,MAAA,KACA,iBAAA,QjCcA,wBAAA,wBiCVI,MAAA,KACA,iBAAA,QAHI,wBAAA,wBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,qBDqCJ,eCjDA,MAAA,KACA,iBAAA,QjCcA,sBAAA,sBiCVI,MAAA,KACA,iBAAA,QAHI,sBAAA,sBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,mBDqCJ,YCjDA,MAAA,KACA,iBAAA,QjCcA,mBAAA,mBiCVI,MAAA,KACA,iBAAA,QAHI,mBAAA,mBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,oBDqCJ,eCjDA,MAAA,QACA,iBAAA,QjCcA,sBAAA,sBiCVI,MAAA,QACA,iBAAA,QAHI,sBAAA,sBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,mBDqCJ,cCjDA,MAAA,KACA,iBAAA,QjCcA,qBAAA,qBiCVI,MAAA,KACA,iBAAA,QAHI,qBAAA,qBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,mBDqCJ,aCjDA,MAAA,QACA,iBAAA,QjCcA,oBAAA,oBiCVI,MAAA,QACA,iBAAA,QAHI,oBAAA,oBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,qBDqCJ,YCjDA,MAAA,KACA,iBAAA,QjCcA,mBAAA,mBiCVI,MAAA,KACA,iBAAA,QAHI,mBAAA,mBAQJ,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,MAAA,kBCbN,WACE,QAAA,KAAA,KACA,cAAA,KAEA,iBAAA,Q7BCE,cAAA,MIuDA,yByB5DJ,WAQI,QAAA,KAAA,MAIJ,iBACE,cAAA,EACA,aAAA,E7BTE,cAAA,E8BDJ,OACE,SAAA,SACA,QAAA,OAAA,QACA,cAAA,KACA,OAAA,IAAA,MAAA,Y9BHE,cAAA,O8BQJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KADF,0BAKI,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,OAAA,QACA,MAAA,QAUF,eC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,kBACE,iBAAA,QAGF,2BACE,MAAA,QDqCF,iBC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,oBACE,iBAAA,QAGF,6BACE,MAAA,QDqCF,eC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,kBACE,iBAAA,QAGF,2BACE,MAAA,QDqCF,YC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,eACE,iBAAA,QAGF,wBACE,MAAA,QDqCF,eC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,kBACE,iBAAA,QAGF,2BACE,MAAA,QDqCF,cC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,iBACE,iBAAA,QAGF,0BACE,MAAA,QDqCF,aC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,gBACE,iBAAA,QAGF,yBACE,MAAA,QDqCF,YC9CA,MAAA,QpBKE,iBAAA,QoBHF,aAAA,QAEA,eACE,iBAAA,QAGF,wBACE,MAAA,QCRF,wCACE,KAAO,oBAAA,KAAA,EACP,GAAK,oBAAA,EAAA,GAFP,gCACE,KAAO,oBAAA,KAAA,EACP,GAAK,oBAAA,EAAA,GAIT,UACE,QAAA,YAAA,QAAA,KACA,OAAA,KACA,SAAA,OvCoHI,UAAA,OuClHJ,iBAAA,QhCRE,cAAA,OgCaJ,cACE,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OACA,cAAA,OAAA,gBAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QvBnBI,WAAA,MAAA,IAAA,KAKF,uCuBOJ,cvBNM,WAAA,MuBiBN,sBrBcE,iBAAA,iKqBZA,gBAAA,KAAA,KAIA,uBACE,kBAAA,qBAAA,GAAA,OAAA,SAAA,UAAA,qBAAA,GAAA,OAAA,SAEA,uCAHF,uBAII,kBAAA,KAAA,UAAA,MCvCN,OACE,QAAA,YAAA,QAAA,KACA,eAAA,MAAA,YAAA,WAGF,YACE,SAAA,EAAA,KAAA,ECFF,YACE,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OAGA,aAAA,EACA,cAAA,EASF,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QvCNA,8BAAA,8BuCUE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAVJ,+BAcI,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,OAAA,QAEA,cAAA,KAEA,iBAAA,KACA,OAAA,IAAA,MAAA,iBARF,6BlC7BI,uBAAA,OACA,wBAAA,OkC4BJ,4BAeI,cAAA,ElC9BA,2BAAA,OACA,0BAAA,OkCcJ,0BAAA,0BAqBI,MAAA,QACA,eAAA,KACA,iBAAA,KAvBJ,wBA4BI,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAaA,uBACE,mBAAA,IAAA,eAAA,IADF,wCAII,aAAA,KACA,cAAA,EALJ,oDlCpDA,uBAAA,OACA,0BAAA,OAYA,wBAAA,EkCuCA,mDAaM,aAAA,ElC/EN,wBAAA,OACA,2BAAA,OAsCA,0BAAA,EIAA,yB8B2BA,0BACE,mBAAA,IAAA,eAAA,IADF,2CAII,aAAA,KACA,cAAA,EALJ,uDlCpDA,uBAAA,OACA,0BAAA,OAYA,wBAAA,EkCuCA,sDAaM,aAAA,ElC/EN,wBAAA,OACA,2BAAA,OAsCA,0BAAA,GIAA,yB8B2BA,0BACE,mBAAA,IAAA,eAAA,IADF,2CAII,aAAA,KACA,cAAA,EALJ,uDlCpDA,uBAAA,OACA,0BAAA,OAYA,wBAAA,EkCuCA,sDAaM,aAAA,ElC/EN,wBAAA,OACA,2BAAA,OAsCA,0BAAA,GIAA,yB8B2BA,0BACE,mBAAA,IAAA,eAAA,IADF,2CAII,aAAA,KACA,cAAA,EALJ,uDlCpDA,uBAAA,OACA,0BAAA,OAYA,wBAAA,EkCuCA,sDAaM,aAAA,ElC/EN,wBAAA,OACA,2BAAA,OAsCA,0BAAA,GIAA,0B8B2BA,0BACE,mBAAA,IAAA,eAAA,IADF,2CAII,aAAA,KACA,cAAA,EALJ,uDlCpDA,uBAAA,OACA,0BAAA,OAYA,wBAAA,EkCuCA,sDAaM,aAAA,ElC/EN,wBAAA,OACA,2BAAA,OAsCA,0BAAA,GkCuDJ,mCAEI,aAAA,EACA,YAAA,ElCjHA,cAAA,EkC8GJ,8CAOM,cAAA,KAPN,2DAaM,WAAA,EAbN,yDAmBM,cAAA,EACA,cAAA,ECpIJ,yBACE,MAAA,QACA,iBAAA,QxCWF,sDAAA,sDwCPM,MAAA,QACA,iBAAA,QAPN,uDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,2BACE,MAAA,QACA,iBAAA,QxCWF,wDAAA,wDwCPM,MAAA,QACA,iBAAA,QAPN,yDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,yBACE,MAAA,QACA,iBAAA,QxCWF,sDAAA,sDwCPM,MAAA,QACA,iBAAA,QAPN,uDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,sBACE,MAAA,QACA,iBAAA,QxCWF,mDAAA,mDwCPM,MAAA,QACA,iBAAA,QAPN,oDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,yBACE,MAAA,QACA,iBAAA,QxCWF,sDAAA,sDwCPM,MAAA,QACA,iBAAA,QAPN,uDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,wBACE,MAAA,QACA,iBAAA,QxCWF,qDAAA,qDwCPM,MAAA,QACA,iBAAA,QAPN,sDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,uBACE,MAAA,QACA,iBAAA,QxCWF,oDAAA,oDwCPM,MAAA,QACA,iBAAA,QAPN,qDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QAbN,sBACE,MAAA,QACA,iBAAA,QxCWF,mDAAA,mDwCPM,MAAA,QACA,iBAAA,QAPN,oDAWM,MAAA,KACA,iBAAA,QACA,aAAA,QChBR,OACE,MAAA,M3C8HI,UAAA,O2C5HJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,YAAA,EAAA,IAAA,EAAA,KACA,QAAA,GzCKA,ayCDE,MAAA,KACA,gBAAA,KzCIF,2CAAA,2CyCCI,QAAA,IAWN,aACE,QAAA,EACA,iBAAA,YACA,OAAA,EACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAMF,iBACE,eAAA,KCvCF,OACE,UAAA,MACA,SAAA,O5C6HI,UAAA,Q4C1HJ,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,OAAA,OAAA,eACA,wBAAA,WAAA,gBAAA,WACA,QAAA,ErCLE,cAAA,OqCLJ,wBAcI,cAAA,OAdJ,eAkBI,QAAA,EAlBJ,YAsBI,QAAA,MACA,QAAA,EAvBJ,YA2BI,QAAA,KAIJ,cACE,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,QAAA,OAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gBAGF,YACE,QAAA,OCpCF,YAEE,SAAA,OAFF,mBAKI,WAAA,OACA,WAAA,KAKJ,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,SAAA,OAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BrCI,WAAA,kBAAA,IAAA,SAAA,WAAA,UAAA,IAAA,SAAA,WAAA,UAAA,IAAA,QAAA,CAAA,kBAAA,IAAA,S6BuCF,kBAAA,mBAAA,UAAA,mB7BlCA,uC6BgCF,0B7B/BI,WAAA,M6BmCJ,0BACE,kBAAA,KAAA,UAAA,KAIJ,yBACE,QAAA,YAAA,QAAA,KACA,WAAA,kBAFF,wCAKI,WAAA,mBACA,SAAA,O9CulLJ,uC8C7lLA,uCAWI,kBAAA,EAAA,YAAA,EAXJ,qCAeI,WAAA,KAIJ,uBACE,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,WAAA,kBAHF,+BAOI,QAAA,MACA,OAAA,mBACA,QAAA,GATJ,+CAcI,mBAAA,OAAA,eAAA,OACA,cAAA,OAAA,gBAAA,OACA,OAAA,KAhBJ,8DAmBM,WAAA,KAnBN,uDAuBM,QAAA,KAMN,eACE,SAAA,SACA,QAAA,YAAA,QAAA,KACA,mBAAA,OAAA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,etCzGE,cAAA,MsC6GF,QAAA,EAIF,gBACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAPF,qBAUW,QAAA,EAVX,qBAWW,QAAA,GAKX,cACE,QAAA,YAAA,QAAA,KACA,eAAA,MAAA,YAAA,WACA,cAAA,QAAA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,QtC7HE,uBAAA,MACA,wBAAA,MsCuHJ,qBASI,QAAA,KAAA,KAEA,OAAA,MAAA,MAAA,MAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,IAAA,gBAAA,SACA,QAAA,KACA,WAAA,IAAA,MAAA,QtC/IE,2BAAA,MACA,0BAAA,MsCyIJ,iCASyB,YAAA,OATzB,gCAUwB,aAAA,OAIxB,yBACE,SAAA,SACA,IAAA,QACA,MAAA,KACA,OAAA,KACA,SAAA,OlC7HE,yBkCzBJ,cA6JI,UAAA,MACA,OAAA,QAAA,KA7IJ,yBAiJI,WAAA,oBAjJJ,wCAoJM,WAAA,qBAjIN,uBAsII,WAAA,oBAtIJ,+BAyIM,OAAA,qBAQJ,UAAY,UAAA,OlC5JV,yBkCgKF,U9CglLA,U8C9kLE,UAAA,OlClKA,0BkCuKF,UAAY,UAAA,QClOd,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,aAAA,CAAA,kBAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,K/CgHI,UAAA,Q8CpHJ,UAAA,WACA,QAAA,EAXF,cAaW,QAAA,GAbX,gBAgBI,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAnBJ,wBAsBM,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,mCAAA,gBACE,QAAA,MAAA,EADF,0CAAA,uBAII,OAAA,EAJJ,kDAAA,+BAOM,IAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,qCAAA,kBACE,QAAA,EAAA,MADF,4CAAA,yBAII,KAAA,EACA,MAAA,MACA,OAAA,MANJ,oDAAA,iCASM,MAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,sCAAA,mBACE,QAAA,MAAA,EADF,6CAAA,0BAII,IAAA,EAJJ,qDAAA,kCAOM,OAAA,EACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,oCAAA,iBACE,QAAA,EAAA,MADF,2CAAA,wBAII,MAAA,EACA,MAAA,MACA,OAAA,MANJ,mDAAA,gCASM,KAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,KvC3GE,cAAA,OyCLJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,aAAA,CAAA,kBAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,K/CgHI,UAAA,QgDnHJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,ezCVE,cAAA,MyCLJ,gBAoBI,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MACA,OAAA,EAAA,MAxBJ,uBAAA,wBA4BM,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,mCAAA,gBACE,cAAA,MADF,0CAAA,uBAII,OAAA,yBAJJ,kDAAA,+BAOM,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBATN,iDAAA,8BAaM,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,qCAAA,kBACE,YAAA,MADF,4CAAA,yBAII,KAAA,yBACA,MAAA,MACA,OAAA,KACA,OAAA,MAAA,EAPJ,oDAAA,iCAUM,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAZN,mDAAA,gCAgBM,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,sCAAA,mBACE,WAAA,MADF,6CAAA,0BAII,IAAA,yBAJJ,qDAAA,kCAOM,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBATN,oDAAA,iCAaM,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAfN,8DAAA,2CAqBI,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAIJ,oCAAA,iBACE,aAAA,MADF,2CAAA,wBAII,MAAA,yBACA,MAAA,MACA,OAAA,KACA,OAAA,MAAA,EAPJ,mDAAA,gCAUM,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAZN,kDAAA,+BAgBM,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAsBN,gBACE,QAAA,MAAA,OACA,cAAA,EhD3BI,UAAA,KgD8BJ,iBAAA,QACA,cAAA,IAAA,MAAA,QzChJE,uBAAA,kBACA,wBAAA,kByCyIJ,sBAWI,QAAA,KAIJ,cACE,QAAA,MAAA,OACA,MAAA,QC5JF,UACE,SAAA,SAGF,wBACE,iBAAA,MAAA,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCvBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDwBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OjC5BI,WAAA,kBAAA,IAAA,YAAA,WAAA,UAAA,IAAA,YAAA,WAAA,UAAA,IAAA,WAAA,CAAA,kBAAA,IAAA,YAKF,uCiCiBJ,ejChBM,WAAA,MjBomMN,oBACA,oBkD3kMA,sBAGE,QAAA,MlD6kMF,4BkD1kMA,6CAEE,kBAAA,iBAAA,UAAA,iBlD8kMF,2BkD3kMA,8CAEE,kBAAA,kBAAA,UAAA,kBAQF,8BAEI,QAAA,EACA,oBAAA,QACA,kBAAA,KAAA,UAAA,KlD0kMJ,sDACA,uDkD/kMA,qCAUI,QAAA,EACA,QAAA,EAXJ,0ClDqlMA,2CkDrkMI,QAAA,EACA,QAAA,EjCtEE,WAAA,GAAA,IAAA,QAKF,uCiCgDJ,0ClD6lME,2CiB5oMI,WAAA,MjBkpMN,uBkDxkMA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,YAAA,QAAA,KACA,eAAA,OAAA,YAAA,OACA,cAAA,OAAA,gBAAA,OACA,MAAA,IACA,MAAA,KACA,WAAA,OACA,QAAA,GjC7FI,WAAA,QAAA,KAAA,KAKF,uCjBuqMF,uBkD5lMF,uBjC1EM,WAAA,MjB6qMN,6BADA,6BGxqME,6BAAA,6B+CwFE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAKF,uBACE,MAAA,ElDolMF,4BkD7kMA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,WAAA,UAAA,GAAA,CAAA,KAAA,KAEF,4BACE,iBAAA,kLAEF,4BACE,iBAAA,kLASF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,GACA,QAAA,YAAA,QAAA,KACA,cAAA,OAAA,gBAAA,OACA,aAAA,EAEA,aAAA,IACA,YAAA,IACA,WAAA,KAZF,wBAeI,WAAA,YACA,SAAA,EAAA,EAAA,KAAA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GjCtKE,WAAA,QAAA,IAAA,KAKF,uCiCqIJ,wBjCpIM,WAAA,MiCoIN,6BAiCI,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,KACA,KAAA,IACA,QAAA,GACA,YAAA,KACA,eAAA,KACA,MAAA,KACA,WAAA,OE/LF,kCACE,GAAK,kBAAA,eAAA,UAAA,gBADP,0BACE,GAAK,kBAAA,eAAA,UAAA,gBAGP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,YACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,eAAA,KAAA,OAAA,SAAA,UAAA,eAAA,KAAA,OAAA,SAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAOF,gCACE,GACE,kBAAA,SAAA,UAAA,SAEF,IACE,QAAA,GALJ,wBACE,GACE,kBAAA,SAAA,UAAA,SAEF,IACE,QAAA,GAIJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,YACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,aAAA,KAAA,OAAA,SAAA,UAAA,aAAA,KAAA,OAAA,SAGF,iBACE,MAAA,KACA,OAAA,KCnDF,gBAAqB,eAAA,mBACrB,WAAqB,eAAA,cACrB,cAAqB,eAAA,iBACrB,cAAqB,eAAA,iBACrB,mBAAqB,eAAA,sBACrB,gBAAqB,eAAA,mBCFnB,YACE,iBAAA,kBnDUF,mBAAA,mBHm2MF,wBADA,wBsDv2MM,iBAAA,kBANJ,cACE,iBAAA,kBnDUF,qBAAA,qBH62MF,0BADA,0BsDj3MM,iBAAA,kBANJ,YACE,iBAAA,kBnDUF,mBAAA,mBHu3MF,wBADA,wBsD33MM,iBAAA,kBANJ,SACE,iBAAA,kBnDUF,gBAAA,gBHi4MF,qBADA,qBsDr4MM,iBAAA,kBANJ,YACE,iBAAA,kBnDUF,mBAAA,mBH24MF,wBADA,wBsD/4MM,iBAAA,kBANJ,WACE,iBAAA,kBnDUF,kBAAA,kBHq5MF,uBADA,uBsDz5MM,iBAAA,kBANJ,UACE,iBAAA,kBnDUF,iBAAA,iBH+5MF,sBADA,sBsDn6MM,iBAAA,kBANJ,SACE,iBAAA,kBnDUF,gBAAA,gBHy6MF,qBADA,qBsD76MM,iBAAA,kBCCN,UACE,iBAAA,eAGF,gBACE,iBAAA,sBCXF,QAAkB,OAAA,IAAA,MAAA,kBAClB,YAAkB,WAAA,IAAA,MAAA,kBAClB,cAAkB,aAAA,IAAA,MAAA,kBAClB,eAAkB,cAAA,IAAA,MAAA,kBAClB,aAAkB,YAAA,IAAA,MAAA,kBAElB,UAAmB,OAAA,YACnB,cAAmB,WAAA,YACnB,gBAAmB,aAAA,YACnB,iBAAmB,cAAA,YACnB,eAAmB,YAAA,YAGjB,gBACE,aAAA,kBADF,kBACE,aAAA,kBADF,gBACE,aAAA,kBADF,aACE,aAAA,kBADF,gBACE,aAAA,kBADF,eACE,aAAA,kBADF,cACE,aAAA,kBADF,aACE,aAAA,kBAIJ,cACE,aAAA,eAOF,YACE,cAAA,gBAGF,SACE,cAAA,iBAGF,aACE,uBAAA,iBACA,wBAAA,iBAGF,eACE,wBAAA,iBACA,2BAAA,iBAGF,gBACE,2BAAA,iBACA,0BAAA,iBAGF,cACE,uBAAA,iBACA,0BAAA,iBAGF,YACE,cAAA,gBAGF,gBACE,cAAA,cAGF,cACE,cAAA,gBAGF,WACE,cAAA,YLxEA,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GMOE,QAAwB,QAAA,eAAxB,UAAwB,QAAA,iBAAxB,gBAAwB,QAAA,uBAAxB,SAAwB,QAAA,gBAAxB,SAAwB,QAAA,gBAAxB,aAAwB,QAAA,oBAAxB,cAAwB,QAAA,qBAAxB,QAAwB,QAAA,sBAAA,QAAA,eAAxB,eAAwB,QAAA,6BAAA,QAAA,sB7CiD1B,yB6CjDE,WAAwB,QAAA,eAAxB,aAAwB,QAAA,iBAAxB,mBAAwB,QAAA,uBAAxB,YAAwB,QAAA,gBAAxB,YAAwB,QAAA,gBAAxB,gBAAwB,QAAA,oBAAxB,iBAAwB,QAAA,qBAAxB,WAAwB,QAAA,sBAAA,QAAA,eAAxB,kBAAwB,QAAA,6BAAA,QAAA,uB7CiD1B,yB6CjDE,WAAwB,QAAA,eAAxB,aAAwB,QAAA,iBAAxB,mBAAwB,QAAA,uBAAxB,YAAwB,QAAA,gBAAxB,YAAwB,QAAA,gBAAxB,gBAAwB,QAAA,oBAAxB,iBAAwB,QAAA,qBAAxB,WAAwB,QAAA,sBAAA,QAAA,eAAxB,kBAAwB,QAAA,6BAAA,QAAA,uB7CiD1B,yB6CjDE,WAAwB,QAAA,eAAxB,aAAwB,QAAA,iBAAxB,mBAAwB,QAAA,uBAAxB,YAAwB,QAAA,gBAAxB,YAAwB,QAAA,gBAAxB,gBAAwB,QAAA,oBAAxB,iBAAwB,QAAA,qBAAxB,WAAwB,QAAA,sBAAA,QAAA,eAAxB,kBAAwB,QAAA,6BAAA,QAAA,uB7CiD1B,0B6CjDE,WAAwB,QAAA,eAAxB,aAAwB,QAAA,iBAAxB,mBAAwB,QAAA,uBAAxB,YAAwB,QAAA,gBAAxB,YAAwB,QAAA,gBAAxB,gBAAwB,QAAA,oBAAxB,iBAAwB,QAAA,qBAAxB,WAAwB,QAAA,sBAAA,QAAA,eAAxB,kBAAwB,QAAA,6BAAA,QAAA,uBAU9B,aAEI,cAAqB,QAAA,eAArB,gBAAqB,QAAA,iBAArB,sBAAqB,QAAA,uBAArB,eAAqB,QAAA,gBAArB,eAAqB,QAAA,gBAArB,mBAAqB,QAAA,oBAArB,oBAAqB,QAAA,qBAArB,cAAqB,QAAA,sBAAA,QAAA,eAArB,qBAAqB,QAAA,6BAAA,QAAA,uBCrBzB,kBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,QAAA,EACA,SAAA,OALF,0BAQI,QAAA,MACA,QAAA,GATJ,yC1DsxNA,wBADA,yBAEA,yBACA,wB0DvwNI,SAAA,SACA,IAAA,EACA,OAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KACA,OAAA,EAQF,gCAEI,YAAA,WAFJ,gCAEI,YAAA,OAFJ,+BAEI,YAAA,IAFJ,+BAEI,YAAA,KCzBF,UAAgC,mBAAA,cAAA,eAAA,cAChC,aAAgC,mBAAA,iBAAA,eAAA,iBAChC,kBAAgC,mBAAA,sBAAA,eAAA,sBAChC,qBAAgC,mBAAA,yBAAA,eAAA,yBAEhC,WAA8B,cAAA,eAAA,UAAA,eAC9B,aAA8B,cAAA,iBAAA,UAAA,iBAC9B,mBAA8B,cAAA,uBAAA,UAAA,uBAC9B,WAA8B,SAAA,EAAA,EAAA,eAAA,KAAA,EAAA,EAAA,eAC9B,aAA8B,kBAAA,YAAA,UAAA,YAC9B,aAA8B,kBAAA,YAAA,UAAA,YAC9B,eAA8B,kBAAA,YAAA,YAAA,YAC9B,eAA8B,kBAAA,YAAA,YAAA,YAE9B,uBAAoC,cAAA,gBAAA,gBAAA,qBACpC,qBAAoC,cAAA,cAAA,gBAAA,mBACpC,wBAAoC,cAAA,iBAAA,gBAAA,iBACpC,yBAAoC,cAAA,kBAAA,gBAAA,wBACpC,wBAAoC,cAAA,qBAAA,gBAAA,uBAEpC,mBAAiC,eAAA,gBAAA,YAAA,qBACjC,iBAAiC,eAAA,cAAA,YAAA,mBACjC,oBAAiC,eAAA,iBAAA,YAAA,iBACjC,sBAAiC,eAAA,mBAAA,YAAA,mBACjC,qBAAiC,eAAA,kBAAA,YAAA,kBAEjC,qBAAkC,mBAAA,gBAAA,cAAA,qBAClC,mBAAkC,mBAAA,cAAA,cAAA,mBAClC,sBAAkC,mBAAA,iBAAA,cAAA,iBAClC,uBAAkC,mBAAA,kBAAA,cAAA,wBAClC,sBAAkC,mBAAA,qBAAA,cAAA,uBAClC,uBAAkC,mBAAA,kBAAA,cAAA,kBAElC,iBAAgC,oBAAA,eAAA,WAAA,eAChC,kBAAgC,oBAAA,gBAAA,WAAA,qBAChC,gBAAgC,oBAAA,cAAA,WAAA,mBAChC,mBAAgC,oBAAA,iBAAA,WAAA,iBAChC,qBAAgC,oBAAA,mBAAA,WAAA,mBAChC,oBAAgC,oBAAA,kBAAA,WAAA,kB/CYhC,yB+ClDA,aAAgC,mBAAA,cAAA,eAAA,cAChC,gBAAgC,mBAAA,iBAAA,eAAA,iBAChC,qBAAgC,mBAAA,sBAAA,eAAA,sBAChC,wBAAgC,mBAAA,yBAAA,eAAA,yBAEhC,cAA8B,cAAA,eAAA,UAAA,eAC9B,gBAA8B,cAAA,iBAAA,UAAA,iBAC9B,sBAA8B,cAAA,uBAAA,UAAA,uBAC9B,cAA8B,SAAA,EAAA,EAAA,eAAA,KAAA,EAAA,EAAA,eAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAE9B,0BAAoC,cAAA,gBAAA,gBAAA,qBACpC,wBAAoC,cAAA,cAAA,gBAAA,mBACpC,2BAAoC,cAAA,iBAAA,gBAAA,iBACpC,4BAAoC,cAAA,kBAAA,gBAAA,wBACpC,2BAAoC,cAAA,qBAAA,gBAAA,uBAEpC,sBAAiC,eAAA,gBAAA,YAAA,qBACjC,oBAAiC,eAAA,cAAA,YAAA,mBACjC,uBAAiC,eAAA,iBAAA,YAAA,iBACjC,yBAAiC,eAAA,mBAAA,YAAA,mBACjC,wBAAiC,eAAA,kBAAA,YAAA,kBAEjC,wBAAkC,mBAAA,gBAAA,cAAA,qBAClC,sBAAkC,mBAAA,cAAA,cAAA,mBAClC,yBAAkC,mBAAA,iBAAA,cAAA,iBAClC,0BAAkC,mBAAA,kBAAA,cAAA,wBAClC,yBAAkC,mBAAA,qBAAA,cAAA,uBAClC,0BAAkC,mBAAA,kBAAA,cAAA,kBAElC,oBAAgC,oBAAA,eAAA,WAAA,eAChC,qBAAgC,oBAAA,gBAAA,WAAA,qBAChC,mBAAgC,oBAAA,cAAA,WAAA,mBAChC,sBAAgC,oBAAA,iBAAA,WAAA,iBAChC,wBAAgC,oBAAA,mBAAA,WAAA,mBAChC,uBAAgC,oBAAA,kBAAA,WAAA,mB/CYhC,yB+ClDA,aAAgC,mBAAA,cAAA,eAAA,cAChC,gBAAgC,mBAAA,iBAAA,eAAA,iBAChC,qBAAgC,mBAAA,sBAAA,eAAA,sBAChC,wBAAgC,mBAAA,yBAAA,eAAA,yBAEhC,cAA8B,cAAA,eAAA,UAAA,eAC9B,gBAA8B,cAAA,iBAAA,UAAA,iBAC9B,sBAA8B,cAAA,uBAAA,UAAA,uBAC9B,cAA8B,SAAA,EAAA,EAAA,eAAA,KAAA,EAAA,EAAA,eAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAE9B,0BAAoC,cAAA,gBAAA,gBAAA,qBACpC,wBAAoC,cAAA,cAAA,gBAAA,mBACpC,2BAAoC,cAAA,iBAAA,gBAAA,iBACpC,4BAAoC,cAAA,kBAAA,gBAAA,wBACpC,2BAAoC,cAAA,qBAAA,gBAAA,uBAEpC,sBAAiC,eAAA,gBAAA,YAAA,qBACjC,oBAAiC,eAAA,cAAA,YAAA,mBACjC,uBAAiC,eAAA,iBAAA,YAAA,iBACjC,yBAAiC,eAAA,mBAAA,YAAA,mBACjC,wBAAiC,eAAA,kBAAA,YAAA,kBAEjC,wBAAkC,mBAAA,gBAAA,cAAA,qBAClC,sBAAkC,mBAAA,cAAA,cAAA,mBAClC,yBAAkC,mBAAA,iBAAA,cAAA,iBAClC,0BAAkC,mBAAA,kBAAA,cAAA,wBAClC,yBAAkC,mBAAA,qBAAA,cAAA,uBAClC,0BAAkC,mBAAA,kBAAA,cAAA,kBAElC,oBAAgC,oBAAA,eAAA,WAAA,eAChC,qBAAgC,oBAAA,gBAAA,WAAA,qBAChC,mBAAgC,oBAAA,cAAA,WAAA,mBAChC,sBAAgC,oBAAA,iBAAA,WAAA,iBAChC,wBAAgC,oBAAA,mBAAA,WAAA,mBAChC,uBAAgC,oBAAA,kBAAA,WAAA,mB/CYhC,yB+ClDA,aAAgC,mBAAA,cAAA,eAAA,cAChC,gBAAgC,mBAAA,iBAAA,eAAA,iBAChC,qBAAgC,mBAAA,sBAAA,eAAA,sBAChC,wBAAgC,mBAAA,yBAAA,eAAA,yBAEhC,cAA8B,cAAA,eAAA,UAAA,eAC9B,gBAA8B,cAAA,iBAAA,UAAA,iBAC9B,sBAA8B,cAAA,uBAAA,UAAA,uBAC9B,cAA8B,SAAA,EAAA,EAAA,eAAA,KAAA,EAAA,EAAA,eAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAE9B,0BAAoC,cAAA,gBAAA,gBAAA,qBACpC,wBAAoC,cAAA,cAAA,gBAAA,mBACpC,2BAAoC,cAAA,iBAAA,gBAAA,iBACpC,4BAAoC,cAAA,kBAAA,gBAAA,wBACpC,2BAAoC,cAAA,qBAAA,gBAAA,uBAEpC,sBAAiC,eAAA,gBAAA,YAAA,qBACjC,oBAAiC,eAAA,cAAA,YAAA,mBACjC,uBAAiC,eAAA,iBAAA,YAAA,iBACjC,yBAAiC,eAAA,mBAAA,YAAA,mBACjC,wBAAiC,eAAA,kBAAA,YAAA,kBAEjC,wBAAkC,mBAAA,gBAAA,cAAA,qBAClC,sBAAkC,mBAAA,cAAA,cAAA,mBAClC,yBAAkC,mBAAA,iBAAA,cAAA,iBAClC,0BAAkC,mBAAA,kBAAA,cAAA,wBAClC,yBAAkC,mBAAA,qBAAA,cAAA,uBAClC,0BAAkC,mBAAA,kBAAA,cAAA,kBAElC,oBAAgC,oBAAA,eAAA,WAAA,eAChC,qBAAgC,oBAAA,gBAAA,WAAA,qBAChC,mBAAgC,oBAAA,cAAA,WAAA,mBAChC,sBAAgC,oBAAA,iBAAA,WAAA,iBAChC,wBAAgC,oBAAA,mBAAA,WAAA,mBAChC,uBAAgC,oBAAA,kBAAA,WAAA,mB/CYhC,0B+ClDA,aAAgC,mBAAA,cAAA,eAAA,cAChC,gBAAgC,mBAAA,iBAAA,eAAA,iBAChC,qBAAgC,mBAAA,sBAAA,eAAA,sBAChC,wBAAgC,mBAAA,yBAAA,eAAA,yBAEhC,cAA8B,cAAA,eAAA,UAAA,eAC9B,gBAA8B,cAAA,iBAAA,UAAA,iBAC9B,sBAA8B,cAAA,uBAAA,UAAA,uBAC9B,cAA8B,SAAA,EAAA,EAAA,eAAA,KAAA,EAAA,EAAA,eAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,gBAA8B,kBAAA,YAAA,UAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAC9B,kBAA8B,kBAAA,YAAA,YAAA,YAE9B,0BAAoC,cAAA,gBAAA,gBAAA,qBACpC,wBAAoC,cAAA,cAAA,gBAAA,mBACpC,2BAAoC,cAAA,iBAAA,gBAAA,iBACpC,4BAAoC,cAAA,kBAAA,gBAAA,wBACpC,2BAAoC,cAAA,qBAAA,gBAAA,uBAEpC,sBAAiC,eAAA,gBAAA,YAAA,qBACjC,oBAAiC,eAAA,cAAA,YAAA,mBACjC,uBAAiC,eAAA,iBAAA,YAAA,iBACjC,yBAAiC,eAAA,mBAAA,YAAA,mBACjC,wBAAiC,eAAA,kBAAA,YAAA,kBAEjC,wBAAkC,mBAAA,gBAAA,cAAA,qBAClC,sBAAkC,mBAAA,cAAA,cAAA,mBAClC,yBAAkC,mBAAA,iBAAA,cAAA,iBAClC,0BAAkC,mBAAA,kBAAA,cAAA,wBAClC,yBAAkC,mBAAA,qBAAA,cAAA,uBAClC,0BAAkC,mBAAA,kBAAA,cAAA,kBAElC,oBAAgC,oBAAA,eAAA,WAAA,eAChC,qBAAgC,oBAAA,gBAAA,WAAA,qBAChC,mBAAgC,oBAAA,cAAA,WAAA,mBAChC,sBAAgC,oBAAA,iBAAA,WAAA,iBAChC,wBAAgC,oBAAA,mBAAA,WAAA,mBAChC,uBAAgC,oBAAA,kBAAA,WAAA,mBC1ChC,YAAwB,MAAA,eACxB,aAAwB,MAAA,gBACxB,YAAwB,MAAA,ehDoDxB,yBgDtDA,eAAwB,MAAA,eACxB,gBAAwB,MAAA,gBACxB,eAAwB,MAAA,gBhDoDxB,yBgDtDA,eAAwB,MAAA,eACxB,gBAAwB,MAAA,gBACxB,eAAwB,MAAA,gBhDoDxB,yBgDtDA,eAAwB,MAAA,eACxB,gBAAwB,MAAA,gBACxB,eAAwB,MAAA,gBhDoDxB,0BgDtDA,eAAwB,MAAA,eACxB,gBAAwB,MAAA,gBACxB,eAAwB,MAAA,gBCL1B,eAAsB,SAAA,eAAtB,iBAAsB,SAAA,iBCCtB,iBAAyB,SAAA,iBAAzB,mBAAyB,SAAA,mBAAzB,mBAAyB,SAAA,mBAAzB,gBAAyB,SAAA,gBAAzB,iBAAyB,SAAA,yBAAA,SAAA,iBAK3B,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAI4B,2DAD9B,YAEI,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCzBJ,SCEE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,SAAA,OACA,KAAA,cACA,YAAA,OACA,OAAA,EAUA,0BAAA,yBAEE,SAAA,OACA,MAAA,KACA,OAAA,KACA,SAAA,QACA,KAAA,KACA,YAAA,OC5BJ,WAAa,WAAA,EAAA,QAAA,OAAA,2BACb,QAAU,WAAA,EAAA,MAAA,KAAA,0BACV,WAAa,WAAA,EAAA,KAAA,KAAA,2BACb,aAAe,WAAA,eCCX,MAAuB,MAAA,cAAvB,MAAuB,MAAA,cAAvB,MAAuB,MAAA,cAAvB,OAAuB,MAAA,eAAvB,QAAuB,MAAA,eAAvB,MAAuB,OAAA,cAAvB,MAAuB,OAAA,cAAvB,MAAuB,OAAA,cAAvB,OAAuB,OAAA,eAAvB,QAAuB,OAAA,eAI3B,QAAU,UAAA,eACV,QAAU,WAAA,eAIV,YAAc,UAAA,gBACd,YAAc,WAAA,gBAEd,QAAU,MAAA,gBACV,QAAU,OAAA,gBCfV,uBAEI,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EAEA,eAAA,KACA,QAAA,GAEA,iBAAA,cCNI,KAAgC,OAAA,YAChC,MpEsuPR,MoEpuPU,WAAA,YAEF,MpEuuPR,MoEruPU,aAAA,YAEF,MpEwuPR,MoEtuPU,cAAA,YAEF,MpEyuPR,MoEvuPU,YAAA,YAfF,KAAgC,OAAA,iBAChC,MpE8vPR,MoE5vPU,WAAA,iBAEF,MpE+vPR,MoE7vPU,aAAA,iBAEF,MpEgwPR,MoE9vPU,cAAA,iBAEF,MpEiwPR,MoE/vPU,YAAA,iBAfF,KAAgC,OAAA,gBAChC,MpEsxPR,MoEpxPU,WAAA,gBAEF,MpEuxPR,MoErxPU,aAAA,gBAEF,MpEwxPR,MoEtxPU,cAAA,gBAEF,MpEyxPR,MoEvxPU,YAAA,gBAfF,KAAgC,OAAA,eAChC,MpE8yPR,MoE5yPU,WAAA,eAEF,MpE+yPR,MoE7yPU,aAAA,eAEF,MpEgzPR,MoE9yPU,cAAA,eAEF,MpEizPR,MoE/yPU,YAAA,eAfF,KAAgC,OAAA,iBAChC,MpEs0PR,MoEp0PU,WAAA,iBAEF,MpEu0PR,MoEr0PU,aAAA,iBAEF,MpEw0PR,MoEt0PU,cAAA,iBAEF,MpEy0PR,MoEv0PU,YAAA,iBAfF,KAAgC,OAAA,eAChC,MpE81PR,MoE51PU,WAAA,eAEF,MpE+1PR,MoE71PU,aAAA,eAEF,MpEg2PR,MoE91PU,cAAA,eAEF,MpEi2PR,MoE/1PU,YAAA,eAfF,KAAgC,QAAA,YAChC,MpEs3PR,MoEp3PU,YAAA,YAEF,MpEu3PR,MoEr3PU,cAAA,YAEF,MpEw3PR,MoEt3PU,eAAA,YAEF,MpEy3PR,MoEv3PU,aAAA,YAfF,KAAgC,QAAA,iBAChC,MpE84PR,MoE54PU,YAAA,iBAEF,MpE+4PR,MoE74PU,cAAA,iBAEF,MpEg5PR,MoE94PU,eAAA,iBAEF,MpEi5PR,MoE/4PU,aAAA,iBAfF,KAAgC,QAAA,gBAChC,MpEs6PR,MoEp6PU,YAAA,gBAEF,MpEu6PR,MoEr6PU,cAAA,gBAEF,MpEw6PR,MoEt6PU,eAAA,gBAEF,MpEy6PR,MoEv6PU,aAAA,gBAfF,KAAgC,QAAA,eAChC,MpE87PR,MoE57PU,YAAA,eAEF,MpE+7PR,MoE77PU,cAAA,eAEF,MpEg8PR,MoE97PU,eAAA,eAEF,MpEi8PR,MoE/7PU,aAAA,eAfF,KAAgC,QAAA,iBAChC,MpEs9PR,MoEp9PU,YAAA,iBAEF,MpEu9PR,MoEr9PU,cAAA,iBAEF,MpEw9PR,MoEt9PU,eAAA,iBAEF,MpEy9PR,MoEv9PU,aAAA,iBAfF,KAAgC,QAAA,eAChC,MpE8+PR,MoE5+PU,YAAA,eAEF,MpE++PR,MoE7+PU,cAAA,eAEF,MpEg/PR,MoE9+PU,eAAA,eAEF,MpEi/PR,MoE/+PU,aAAA,eAQF,MAAwB,OAAA,kBACxB,OpE++PR,OoE7+PU,WAAA,kBAEF,OpEg/PR,OoE9+PU,aAAA,kBAEF,OpEi/PR,OoE/+PU,cAAA,kBAEF,OpEk/PR,OoEh/PU,YAAA,kBAfF,MAAwB,OAAA,iBACxB,OpEugQR,OoErgQU,WAAA,iBAEF,OpEwgQR,OoEtgQU,aAAA,iBAEF,OpEygQR,OoEvgQU,cAAA,iBAEF,OpE0gQR,OoExgQU,YAAA,iBAfF,MAAwB,OAAA,gBACxB,OpE+hQR,OoE7hQU,WAAA,gBAEF,OpEgiQR,OoE9hQU,aAAA,gBAEF,OpEiiQR,OoE/hQU,cAAA,gBAEF,OpEkiQR,OoEhiQU,YAAA,gBAfF,MAAwB,OAAA,kBACxB,OpEujQR,OoErjQU,WAAA,kBAEF,OpEwjQR,OoEtjQU,aAAA,kBAEF,OpEyjQR,OoEvjQU,cAAA,kBAEF,OpE0jQR,OoExjQU,YAAA,kBAfF,MAAwB,OAAA,gBACxB,OpE+kQR,OoE7kQU,WAAA,gBAEF,OpEglQR,OoE9kQU,aAAA,gBAEF,OpEilQR,OoE/kQU,cAAA,gBAEF,OpEklQR,OoEhlQU,YAAA,gBAMN,QAAmB,OAAA,eACnB,SpEklQJ,SoEhlQM,WAAA,eAEF,SpEmlQJ,SoEjlQM,aAAA,eAEF,SpEolQJ,SoEllQM,cAAA,eAEF,SpEqlQJ,SoEnlQM,YAAA,exDTF,yBwDlDI,QAAgC,OAAA,YAChC,SpEspQN,SoEppQQ,WAAA,YAEF,SpEspQN,SoEppQQ,aAAA,YAEF,SpEspQN,SoEppQQ,cAAA,YAEF,SpEspQN,SoEppQQ,YAAA,YAfF,QAAgC,OAAA,iBAChC,SpEyqQN,SoEvqQQ,WAAA,iBAEF,SpEyqQN,SoEvqQQ,aAAA,iBAEF,SpEyqQN,SoEvqQQ,cAAA,iBAEF,SpEyqQN,SoEvqQQ,YAAA,iBAfF,QAAgC,OAAA,gBAChC,SpE4rQN,SoE1rQQ,WAAA,gBAEF,SpE4rQN,SoE1rQQ,aAAA,gBAEF,SpE4rQN,SoE1rQQ,cAAA,gBAEF,SpE4rQN,SoE1rQQ,YAAA,gBAfF,QAAgC,OAAA,eAChC,SpE+sQN,SoE7sQQ,WAAA,eAEF,SpE+sQN,SoE7sQQ,aAAA,eAEF,SpE+sQN,SoE7sQQ,cAAA,eAEF,SpE+sQN,SoE7sQQ,YAAA,eAfF,QAAgC,OAAA,iBAChC,SpEkuQN,SoEhuQQ,WAAA,iBAEF,SpEkuQN,SoEhuQQ,aAAA,iBAEF,SpEkuQN,SoEhuQQ,cAAA,iBAEF,SpEkuQN,SoEhuQQ,YAAA,iBAfF,QAAgC,OAAA,eAChC,SpEqvQN,SoEnvQQ,WAAA,eAEF,SpEqvQN,SoEnvQQ,aAAA,eAEF,SpEqvQN,SoEnvQQ,cAAA,eAEF,SpEqvQN,SoEnvQQ,YAAA,eAfF,QAAgC,QAAA,YAChC,SpEwwQN,SoEtwQQ,YAAA,YAEF,SpEwwQN,SoEtwQQ,cAAA,YAEF,SpEwwQN,SoEtwQQ,eAAA,YAEF,SpEwwQN,SoEtwQQ,aAAA,YAfF,QAAgC,QAAA,iBAChC,SpE2xQN,SoEzxQQ,YAAA,iBAEF,SpE2xQN,SoEzxQQ,cAAA,iBAEF,SpE2xQN,SoEzxQQ,eAAA,iBAEF,SpE2xQN,SoEzxQQ,aAAA,iBAfF,QAAgC,QAAA,gBAChC,SpE8yQN,SoE5yQQ,YAAA,gBAEF,SpE8yQN,SoE5yQQ,cAAA,gBAEF,SpE8yQN,SoE5yQQ,eAAA,gBAEF,SpE8yQN,SoE5yQQ,aAAA,gBAfF,QAAgC,QAAA,eAChC,SpEi0QN,SoE/zQQ,YAAA,eAEF,SpEi0QN,SoE/zQQ,cAAA,eAEF,SpEi0QN,SoE/zQQ,eAAA,eAEF,SpEi0QN,SoE/zQQ,aAAA,eAfF,QAAgC,QAAA,iBAChC,SpEo1QN,SoEl1QQ,YAAA,iBAEF,SpEo1QN,SoEl1QQ,cAAA,iBAEF,SpEo1QN,SoEl1QQ,eAAA,iBAEF,SpEo1QN,SoEl1QQ,aAAA,iBAfF,QAAgC,QAAA,eAChC,SpEu2QN,SoEr2QQ,YAAA,eAEF,SpEu2QN,SoEr2QQ,cAAA,eAEF,SpEu2QN,SoEr2QQ,eAAA,eAEF,SpEu2QN,SoEr2QQ,aAAA,eAQF,SAAwB,OAAA,kBACxB,UpEm2QN,UoEj2QQ,WAAA,kBAEF,UpEm2QN,UoEj2QQ,aAAA,kBAEF,UpEm2QN,UoEj2QQ,cAAA,kBAEF,UpEm2QN,UoEj2QQ,YAAA,kBAfF,SAAwB,OAAA,iBACxB,UpEs3QN,UoEp3QQ,WAAA,iBAEF,UpEs3QN,UoEp3QQ,aAAA,iBAEF,UpEs3QN,UoEp3QQ,cAAA,iBAEF,UpEs3QN,UoEp3QQ,YAAA,iBAfF,SAAwB,OAAA,gBACxB,UpEy4QN,UoEv4QQ,WAAA,gBAEF,UpEy4QN,UoEv4QQ,aAAA,gBAEF,UpEy4QN,UoEv4QQ,cAAA,gBAEF,UpEy4QN,UoEv4QQ,YAAA,gBAfF,SAAwB,OAAA,kBACxB,UpE45QN,UoE15QQ,WAAA,kBAEF,UpE45QN,UoE15QQ,aAAA,kBAEF,UpE45QN,UoE15QQ,cAAA,kBAEF,UpE45QN,UoE15QQ,YAAA,kBAfF,SAAwB,OAAA,gBACxB,UpE+6QN,UoE76QQ,WAAA,gBAEF,UpE+6QN,UoE76QQ,aAAA,gBAEF,UpE+6QN,UoE76QQ,cAAA,gBAEF,UpE+6QN,UoE76QQ,YAAA,gBAMN,WAAmB,OAAA,eACnB,YpE66QF,YoE36QI,WAAA,eAEF,YpE66QF,YoE36QI,aAAA,eAEF,YpE66QF,YoE36QI,cAAA,eAEF,YpE66QF,YoE36QI,YAAA,gBxDTF,yBwDlDI,QAAgC,OAAA,YAChC,SpE++QN,SoE7+QQ,WAAA,YAEF,SpE++QN,SoE7+QQ,aAAA,YAEF,SpE++QN,SoE7+QQ,cAAA,YAEF,SpE++QN,SoE7+QQ,YAAA,YAfF,QAAgC,OAAA,iBAChC,SpEkgRN,SoEhgRQ,WAAA,iBAEF,SpEkgRN,SoEhgRQ,aAAA,iBAEF,SpEkgRN,SoEhgRQ,cAAA,iBAEF,SpEkgRN,SoEhgRQ,YAAA,iBAfF,QAAgC,OAAA,gBAChC,SpEqhRN,SoEnhRQ,WAAA,gBAEF,SpEqhRN,SoEnhRQ,aAAA,gBAEF,SpEqhRN,SoEnhRQ,cAAA,gBAEF,SpEqhRN,SoEnhRQ,YAAA,gBAfF,QAAgC,OAAA,eAChC,SpEwiRN,SoEtiRQ,WAAA,eAEF,SpEwiRN,SoEtiRQ,aAAA,eAEF,SpEwiRN,SoEtiRQ,cAAA,eAEF,SpEwiRN,SoEtiRQ,YAAA,eAfF,QAAgC,OAAA,iBAChC,SpE2jRN,SoEzjRQ,WAAA,iBAEF,SpE2jRN,SoEzjRQ,aAAA,iBAEF,SpE2jRN,SoEzjRQ,cAAA,iBAEF,SpE2jRN,SoEzjRQ,YAAA,iBAfF,QAAgC,OAAA,eAChC,SpE8kRN,SoE5kRQ,WAAA,eAEF,SpE8kRN,SoE5kRQ,aAAA,eAEF,SpE8kRN,SoE5kRQ,cAAA,eAEF,SpE8kRN,SoE5kRQ,YAAA,eAfF,QAAgC,QAAA,YAChC,SpEimRN,SoE/lRQ,YAAA,YAEF,SpEimRN,SoE/lRQ,cAAA,YAEF,SpEimRN,SoE/lRQ,eAAA,YAEF,SpEimRN,SoE/lRQ,aAAA,YAfF,QAAgC,QAAA,iBAChC,SpEonRN,SoElnRQ,YAAA,iBAEF,SpEonRN,SoElnRQ,cAAA,iBAEF,SpEonRN,SoElnRQ,eAAA,iBAEF,SpEonRN,SoElnRQ,aAAA,iBAfF,QAAgC,QAAA,gBAChC,SpEuoRN,SoEroRQ,YAAA,gBAEF,SpEuoRN,SoEroRQ,cAAA,gBAEF,SpEuoRN,SoEroRQ,eAAA,gBAEF,SpEuoRN,SoEroRQ,aAAA,gBAfF,QAAgC,QAAA,eAChC,SpE0pRN,SoExpRQ,YAAA,eAEF,SpE0pRN,SoExpRQ,cAAA,eAEF,SpE0pRN,SoExpRQ,eAAA,eAEF,SpE0pRN,SoExpRQ,aAAA,eAfF,QAAgC,QAAA,iBAChC,SpE6qRN,SoE3qRQ,YAAA,iBAEF,SpE6qRN,SoE3qRQ,cAAA,iBAEF,SpE6qRN,SoE3qRQ,eAAA,iBAEF,SpE6qRN,SoE3qRQ,aAAA,iBAfF,QAAgC,QAAA,eAChC,SpEgsRN,SoE9rRQ,YAAA,eAEF,SpEgsRN,SoE9rRQ,cAAA,eAEF,SpEgsRN,SoE9rRQ,eAAA,eAEF,SpEgsRN,SoE9rRQ,aAAA,eAQF,SAAwB,OAAA,kBACxB,UpE4rRN,UoE1rRQ,WAAA,kBAEF,UpE4rRN,UoE1rRQ,aAAA,kBAEF,UpE4rRN,UoE1rRQ,cAAA,kBAEF,UpE4rRN,UoE1rRQ,YAAA,kBAfF,SAAwB,OAAA,iBACxB,UpE+sRN,UoE7sRQ,WAAA,iBAEF,UpE+sRN,UoE7sRQ,aAAA,iBAEF,UpE+sRN,UoE7sRQ,cAAA,iBAEF,UpE+sRN,UoE7sRQ,YAAA,iBAfF,SAAwB,OAAA,gBACxB,UpEkuRN,UoEhuRQ,WAAA,gBAEF,UpEkuRN,UoEhuRQ,aAAA,gBAEF,UpEkuRN,UoEhuRQ,cAAA,gBAEF,UpEkuRN,UoEhuRQ,YAAA,gBAfF,SAAwB,OAAA,kBACxB,UpEqvRN,UoEnvRQ,WAAA,kBAEF,UpEqvRN,UoEnvRQ,aAAA,kBAEF,UpEqvRN,UoEnvRQ,cAAA,kBAEF,UpEqvRN,UoEnvRQ,YAAA,kBAfF,SAAwB,OAAA,gBACxB,UpEwwRN,UoEtwRQ,WAAA,gBAEF,UpEwwRN,UoEtwRQ,aAAA,gBAEF,UpEwwRN,UoEtwRQ,cAAA,gBAEF,UpEwwRN,UoEtwRQ,YAAA,gBAMN,WAAmB,OAAA,eACnB,YpEswRF,YoEpwRI,WAAA,eAEF,YpEswRF,YoEpwRI,aAAA,eAEF,YpEswRF,YoEpwRI,cAAA,eAEF,YpEswRF,YoEpwRI,YAAA,gBxDTF,yBwDlDI,QAAgC,OAAA,YAChC,SpEw0RN,SoEt0RQ,WAAA,YAEF,SpEw0RN,SoEt0RQ,aAAA,YAEF,SpEw0RN,SoEt0RQ,cAAA,YAEF,SpEw0RN,SoEt0RQ,YAAA,YAfF,QAAgC,OAAA,iBAChC,SpE21RN,SoEz1RQ,WAAA,iBAEF,SpE21RN,SoEz1RQ,aAAA,iBAEF,SpE21RN,SoEz1RQ,cAAA,iBAEF,SpE21RN,SoEz1RQ,YAAA,iBAfF,QAAgC,OAAA,gBAChC,SpE82RN,SoE52RQ,WAAA,gBAEF,SpE82RN,SoE52RQ,aAAA,gBAEF,SpE82RN,SoE52RQ,cAAA,gBAEF,SpE82RN,SoE52RQ,YAAA,gBAfF,QAAgC,OAAA,eAChC,SpEi4RN,SoE/3RQ,WAAA,eAEF,SpEi4RN,SoE/3RQ,aAAA,eAEF,SpEi4RN,SoE/3RQ,cAAA,eAEF,SpEi4RN,SoE/3RQ,YAAA,eAfF,QAAgC,OAAA,iBAChC,SpEo5RN,SoEl5RQ,WAAA,iBAEF,SpEo5RN,SoEl5RQ,aAAA,iBAEF,SpEo5RN,SoEl5RQ,cAAA,iBAEF,SpEo5RN,SoEl5RQ,YAAA,iBAfF,QAAgC,OAAA,eAChC,SpEu6RN,SoEr6RQ,WAAA,eAEF,SpEu6RN,SoEr6RQ,aAAA,eAEF,SpEu6RN,SoEr6RQ,cAAA,eAEF,SpEu6RN,SoEr6RQ,YAAA,eAfF,QAAgC,QAAA,YAChC,SpE07RN,SoEx7RQ,YAAA,YAEF,SpE07RN,SoEx7RQ,cAAA,YAEF,SpE07RN,SoEx7RQ,eAAA,YAEF,SpE07RN,SoEx7RQ,aAAA,YAfF,QAAgC,QAAA,iBAChC,SpE68RN,SoE38RQ,YAAA,iBAEF,SpE68RN,SoE38RQ,cAAA,iBAEF,SpE68RN,SoE38RQ,eAAA,iBAEF,SpE68RN,SoE38RQ,aAAA,iBAfF,QAAgC,QAAA,gBAChC,SpEg+RN,SoE99RQ,YAAA,gBAEF,SpEg+RN,SoE99RQ,cAAA,gBAEF,SpEg+RN,SoE99RQ,eAAA,gBAEF,SpEg+RN,SoE99RQ,aAAA,gBAfF,QAAgC,QAAA,eAChC,SpEm/RN,SoEj/RQ,YAAA,eAEF,SpEm/RN,SoEj/RQ,cAAA,eAEF,SpEm/RN,SoEj/RQ,eAAA,eAEF,SpEm/RN,SoEj/RQ,aAAA,eAfF,QAAgC,QAAA,iBAChC,SpEsgSN,SoEpgSQ,YAAA,iBAEF,SpEsgSN,SoEpgSQ,cAAA,iBAEF,SpEsgSN,SoEpgSQ,eAAA,iBAEF,SpEsgSN,SoEpgSQ,aAAA,iBAfF,QAAgC,QAAA,eAChC,SpEyhSN,SoEvhSQ,YAAA,eAEF,SpEyhSN,SoEvhSQ,cAAA,eAEF,SpEyhSN,SoEvhSQ,eAAA,eAEF,SpEyhSN,SoEvhSQ,aAAA,eAQF,SAAwB,OAAA,kBACxB,UpEqhSN,UoEnhSQ,WAAA,kBAEF,UpEqhSN,UoEnhSQ,aAAA,kBAEF,UpEqhSN,UoEnhSQ,cAAA,kBAEF,UpEqhSN,UoEnhSQ,YAAA,kBAfF,SAAwB,OAAA,iBACxB,UpEwiSN,UoEtiSQ,WAAA,iBAEF,UpEwiSN,UoEtiSQ,aAAA,iBAEF,UpEwiSN,UoEtiSQ,cAAA,iBAEF,UpEwiSN,UoEtiSQ,YAAA,iBAfF,SAAwB,OAAA,gBACxB,UpE2jSN,UoEzjSQ,WAAA,gBAEF,UpE2jSN,UoEzjSQ,aAAA,gBAEF,UpE2jSN,UoEzjSQ,cAAA,gBAEF,UpE2jSN,UoEzjSQ,YAAA,gBAfF,SAAwB,OAAA,kBACxB,UpE8kSN,UoE5kSQ,WAAA,kBAEF,UpE8kSN,UoE5kSQ,aAAA,kBAEF,UpE8kSN,UoE5kSQ,cAAA,kBAEF,UpE8kSN,UoE5kSQ,YAAA,kBAfF,SAAwB,OAAA,gBACxB,UpEimSN,UoE/lSQ,WAAA,gBAEF,UpEimSN,UoE/lSQ,aAAA,gBAEF,UpEimSN,UoE/lSQ,cAAA,gBAEF,UpEimSN,UoE/lSQ,YAAA,gBAMN,WAAmB,OAAA,eACnB,YpE+lSF,YoE7lSI,WAAA,eAEF,YpE+lSF,YoE7lSI,aAAA,eAEF,YpE+lSF,YoE7lSI,cAAA,eAEF,YpE+lSF,YoE7lSI,YAAA,gBxDTF,0BwDlDI,QAAgC,OAAA,YAChC,SpEiqSN,SoE/pSQ,WAAA,YAEF,SpEiqSN,SoE/pSQ,aAAA,YAEF,SpEiqSN,SoE/pSQ,cAAA,YAEF,SpEiqSN,SoE/pSQ,YAAA,YAfF,QAAgC,OAAA,iBAChC,SpEorSN,SoElrSQ,WAAA,iBAEF,SpEorSN,SoElrSQ,aAAA,iBAEF,SpEorSN,SoElrSQ,cAAA,iBAEF,SpEorSN,SoElrSQ,YAAA,iBAfF,QAAgC,OAAA,gBAChC,SpEusSN,SoErsSQ,WAAA,gBAEF,SpEusSN,SoErsSQ,aAAA,gBAEF,SpEusSN,SoErsSQ,cAAA,gBAEF,SpEusSN,SoErsSQ,YAAA,gBAfF,QAAgC,OAAA,eAChC,SpE0tSN,SoExtSQ,WAAA,eAEF,SpE0tSN,SoExtSQ,aAAA,eAEF,SpE0tSN,SoExtSQ,cAAA,eAEF,SpE0tSN,SoExtSQ,YAAA,eAfF,QAAgC,OAAA,iBAChC,SpE6uSN,SoE3uSQ,WAAA,iBAEF,SpE6uSN,SoE3uSQ,aAAA,iBAEF,SpE6uSN,SoE3uSQ,cAAA,iBAEF,SpE6uSN,SoE3uSQ,YAAA,iBAfF,QAAgC,OAAA,eAChC,SpEgwSN,SoE9vSQ,WAAA,eAEF,SpEgwSN,SoE9vSQ,aAAA,eAEF,SpEgwSN,SoE9vSQ,cAAA,eAEF,SpEgwSN,SoE9vSQ,YAAA,eAfF,QAAgC,QAAA,YAChC,SpEmxSN,SoEjxSQ,YAAA,YAEF,SpEmxSN,SoEjxSQ,cAAA,YAEF,SpEmxSN,SoEjxSQ,eAAA,YAEF,SpEmxSN,SoEjxSQ,aAAA,YAfF,QAAgC,QAAA,iBAChC,SpEsySN,SoEpySQ,YAAA,iBAEF,SpEsySN,SoEpySQ,cAAA,iBAEF,SpEsySN,SoEpySQ,eAAA,iBAEF,SpEsySN,SoEpySQ,aAAA,iBAfF,QAAgC,QAAA,gBAChC,SpEyzSN,SoEvzSQ,YAAA,gBAEF,SpEyzSN,SoEvzSQ,cAAA,gBAEF,SpEyzSN,SoEvzSQ,eAAA,gBAEF,SpEyzSN,SoEvzSQ,aAAA,gBAfF,QAAgC,QAAA,eAChC,SpE40SN,SoE10SQ,YAAA,eAEF,SpE40SN,SoE10SQ,cAAA,eAEF,SpE40SN,SoE10SQ,eAAA,eAEF,SpE40SN,SoE10SQ,aAAA,eAfF,QAAgC,QAAA,iBAChC,SpE+1SN,SoE71SQ,YAAA,iBAEF,SpE+1SN,SoE71SQ,cAAA,iBAEF,SpE+1SN,SoE71SQ,eAAA,iBAEF,SpE+1SN,SoE71SQ,aAAA,iBAfF,QAAgC,QAAA,eAChC,SpEk3SN,SoEh3SQ,YAAA,eAEF,SpEk3SN,SoEh3SQ,cAAA,eAEF,SpEk3SN,SoEh3SQ,eAAA,eAEF,SpEk3SN,SoEh3SQ,aAAA,eAQF,SAAwB,OAAA,kBACxB,UpE82SN,UoE52SQ,WAAA,kBAEF,UpE82SN,UoE52SQ,aAAA,kBAEF,UpE82SN,UoE52SQ,cAAA,kBAEF,UpE82SN,UoE52SQ,YAAA,kBAfF,SAAwB,OAAA,iBACxB,UpEi4SN,UoE/3SQ,WAAA,iBAEF,UpEi4SN,UoE/3SQ,aAAA,iBAEF,UpEi4SN,UoE/3SQ,cAAA,iBAEF,UpEi4SN,UoE/3SQ,YAAA,iBAfF,SAAwB,OAAA,gBACxB,UpEo5SN,UoEl5SQ,WAAA,gBAEF,UpEo5SN,UoEl5SQ,aAAA,gBAEF,UpEo5SN,UoEl5SQ,cAAA,gBAEF,UpEo5SN,UoEl5SQ,YAAA,gBAfF,SAAwB,OAAA,kBACxB,UpEu6SN,UoEr6SQ,WAAA,kBAEF,UpEu6SN,UoEr6SQ,aAAA,kBAEF,UpEu6SN,UoEr6SQ,cAAA,kBAEF,UpEu6SN,UoEr6SQ,YAAA,kBAfF,SAAwB,OAAA,gBACxB,UpE07SN,UoEx7SQ,WAAA,gBAEF,UpE07SN,UoEx7SQ,aAAA,gBAEF,UpE07SN,UoEx7SQ,cAAA,gBAEF,UpE07SN,UoEx7SQ,YAAA,gBAMN,WAAmB,OAAA,eACnB,YpEw7SF,YoEt7SI,WAAA,eAEF,YpEw7SF,YoEt7SI,aAAA,eAEF,YpEw7SF,YoEt7SI,cAAA,eAEF,YpEw7SF,YoEt7SI,YAAA,gBC/DN,gBAAkB,YAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,oBAIlB,cAAiB,WAAA,kBACjB,WAAiB,YAAA,iBACjB,aAAiB,YAAA,iBACjB,eCTE,SAAA,OACA,cAAA,SACA,YAAA,ODeE,WAAwB,WAAA,eACxB,YAAwB,WAAA,gBACxB,aAAwB,WAAA,iBzDqCxB,yByDvCA,cAAwB,WAAA,eACxB,eAAwB,WAAA,gBACxB,gBAAwB,WAAA,kBzDqCxB,yByDvCA,cAAwB,WAAA,eACxB,eAAwB,WAAA,gBACxB,gBAAwB,WAAA,kBzDqCxB,yByDvCA,cAAwB,WAAA,eACxB,eAAwB,WAAA,gBACxB,gBAAwB,WAAA,kBzDqCxB,0ByDvCA,cAAwB,WAAA,eACxB,eAAwB,WAAA,gBACxB,gBAAwB,WAAA,kBAM5B,gBAAmB,eAAA,oBACnB,gBAAmB,eAAA,oBACnB,iBAAmB,eAAA,qBAInB,mBAAuB,YAAA,cACvB,qBAAuB,YAAA,kBACvB,oBAAuB,YAAA,cACvB,kBAAuB,YAAA,cACvB,oBAAuB,YAAA,iBACvB,aAAuB,WAAA,iBAIvB,YAAc,MAAA,eEvCZ,cACE,MAAA,kBpEUF,qBAAA,qBoELM,MAAA,kBANN,gBACE,MAAA,kBpEUF,uBAAA,uBoELM,MAAA,kBANN,cACE,MAAA,kBpEUF,qBAAA,qBoELM,MAAA,kBANN,WACE,MAAA,kBpEUF,kBAAA,kBoELM,MAAA,kBANN,cACE,MAAA,kBpEUF,qBAAA,qBoELM,MAAA,kBANN,aACE,MAAA,kBpEUF,oBAAA,oBoELM,MAAA,kBANN,YACE,MAAA,kBpEUF,mBAAA,mBoELM,MAAA,kBANN,WACE,MAAA,kBpEUF,kBAAA,kBoELM,MAAA,kBFuCR,WAAa,MAAA,kBACb,YAAc,MAAA,kBAEd,eAAiB,MAAA,yBACjB,eAAiB,MAAA,+BAIjB,WGvDE,KAAA,CAAA,CAAA,EAAA,EACA,MAAA,YACA,YAAA,KACA,iBAAA,YACA,OAAA,EHuDF,sBAAwB,gBAAA,eAExB,YACE,WAAA,qBACA,cAAA,qBAKF,YAAc,MAAA,kBIjEd,SACE,WAAA,kBAGF,WACE,WAAA,iBCAA,a3EOF,ECwtTE,QADA,S0ExtTI,YAAA,eAEA,WAAA,eAGF,YAEI,gBAAA,UASJ,mBACE,QAAA,KAAA,YAAA,I3E+LN,I2EhLM,YAAA,mB1EusTJ,W0ErsTE,IAEE,OAAA,IAAA,MAAA,QACA,kBAAA,MAQF,MACE,QAAA,mB1EisTJ,I0E9rTE,GAEE,kBAAA,M1EgsTJ,GACA,G0E9rTE,EAGE,QAAA,EACA,OAAA,EAGF,G1E4rTF,G0E1rTI,iBAAA,MAQF,MACE,KAAA,G3E5CN,K2E+CM,UAAA,gBhEvFJ,WgE0FI,UAAA,gB5C9EN,Q4CmFM,QAAA,KvC/FN,OuCkGM,OAAA,IAAA,MAAA,K5DnGN,O4DuGM,gBAAA,mBADF,U1EsrTF,U0EjrTM,iBAAA,e1EqrTN,mBcxvTF,mB4D0EQ,OAAA,IAAA,MAAA,kB5DWR,Y4DNM,MAAA,Q1EkrTJ,wBAFA,eetyTA,efuyTA,qB0E3qTM,aAAA,Q5DlBR,sB4DuBM,MAAA,QACA,aAAA","sourcesContent":["/*!\n * Bootstrap v4.3.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-blacklist\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Remove the inheritance of word-wrap in Safari.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24990\nselect {\n word-wrap: normal;\n}\n\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Opinionated: add \"hand\" cursor to non-disabled button elements.\n@if $enable-pointer-cursor-for-buttons {\n button,\n [type=\"button\"],\n [type=\"reset\"],\n [type=\"submit\"] {\n &:not(:disabled) {\n cursor: pointer;\n }\n }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n @include font-size(1.5rem);\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap v4.3.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #6c757d;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #6c757d;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nselect {\n word-wrap: normal;\n}\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d;\n}\n\n.blockquote-footer::before {\n content: \"\\2014\\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n}\n\n.col-1 {\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n -ms-flex-order: -1;\n order: -1;\n}\n\n.order-last {\n -ms-flex-order: 13;\n order: 13;\n}\n\n.order-0 {\n -ms-flex-order: 0;\n order: 0;\n}\n\n.order-1 {\n -ms-flex-order: 1;\n order: 1;\n}\n\n.order-2 {\n -ms-flex-order: 2;\n order: 2;\n}\n\n.order-3 {\n -ms-flex-order: 3;\n order: 3;\n}\n\n.order-4 {\n -ms-flex-order: 4;\n order: 4;\n}\n\n.order-5 {\n -ms-flex-order: 5;\n order: 5;\n}\n\n.order-6 {\n -ms-flex-order: 6;\n order: 6;\n}\n\n.order-7 {\n -ms-flex-order: 7;\n order: 7;\n}\n\n.order-8 {\n -ms-flex-order: 8;\n order: 8;\n}\n\n.order-9 {\n -ms-flex-order: 9;\n order: 9;\n}\n\n.order-10 {\n -ms-flex-order: 10;\n order: 10;\n}\n\n.order-11 {\n -ms-flex-order: 11;\n order: 11;\n}\n\n.order-12 {\n -ms-flex-order: 12;\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-sm-1 {\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n -ms-flex-order: -1;\n order: -1;\n }\n .order-sm-last {\n -ms-flex-order: 13;\n order: 13;\n }\n .order-sm-0 {\n -ms-flex-order: 0;\n order: 0;\n }\n .order-sm-1 {\n -ms-flex-order: 1;\n order: 1;\n }\n .order-sm-2 {\n -ms-flex-order: 2;\n order: 2;\n }\n .order-sm-3 {\n -ms-flex-order: 3;\n order: 3;\n }\n .order-sm-4 {\n -ms-flex-order: 4;\n order: 4;\n }\n .order-sm-5 {\n -ms-flex-order: 5;\n order: 5;\n }\n .order-sm-6 {\n -ms-flex-order: 6;\n order: 6;\n }\n .order-sm-7 {\n -ms-flex-order: 7;\n order: 7;\n }\n .order-sm-8 {\n -ms-flex-order: 8;\n order: 8;\n }\n .order-sm-9 {\n -ms-flex-order: 9;\n order: 9;\n }\n .order-sm-10 {\n -ms-flex-order: 10;\n order: 10;\n }\n .order-sm-11 {\n -ms-flex-order: 11;\n order: 11;\n }\n .order-sm-12 {\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-md-1 {\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n -ms-flex-order: -1;\n order: -1;\n }\n .order-md-last {\n -ms-flex-order: 13;\n order: 13;\n }\n .order-md-0 {\n -ms-flex-order: 0;\n order: 0;\n }\n .order-md-1 {\n -ms-flex-order: 1;\n order: 1;\n }\n .order-md-2 {\n -ms-flex-order: 2;\n order: 2;\n }\n .order-md-3 {\n -ms-flex-order: 3;\n order: 3;\n }\n .order-md-4 {\n -ms-flex-order: 4;\n order: 4;\n }\n .order-md-5 {\n -ms-flex-order: 5;\n order: 5;\n }\n .order-md-6 {\n -ms-flex-order: 6;\n order: 6;\n }\n .order-md-7 {\n -ms-flex-order: 7;\n order: 7;\n }\n .order-md-8 {\n -ms-flex-order: 8;\n order: 8;\n }\n .order-md-9 {\n -ms-flex-order: 9;\n order: 9;\n }\n .order-md-10 {\n -ms-flex-order: 10;\n order: 10;\n }\n .order-md-11 {\n -ms-flex-order: 11;\n order: 11;\n }\n .order-md-12 {\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-lg-1 {\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n -ms-flex-order: -1;\n order: -1;\n }\n .order-lg-last {\n -ms-flex-order: 13;\n order: 13;\n }\n .order-lg-0 {\n -ms-flex-order: 0;\n order: 0;\n }\n .order-lg-1 {\n -ms-flex-order: 1;\n order: 1;\n }\n .order-lg-2 {\n -ms-flex-order: 2;\n order: 2;\n }\n .order-lg-3 {\n -ms-flex-order: 3;\n order: 3;\n }\n .order-lg-4 {\n -ms-flex-order: 4;\n order: 4;\n }\n .order-lg-5 {\n -ms-flex-order: 5;\n order: 5;\n }\n .order-lg-6 {\n -ms-flex-order: 6;\n order: 6;\n }\n .order-lg-7 {\n -ms-flex-order: 7;\n order: 7;\n }\n .order-lg-8 {\n -ms-flex-order: 8;\n order: 8;\n }\n .order-lg-9 {\n -ms-flex-order: 9;\n order: 9;\n }\n .order-lg-10 {\n -ms-flex-order: 10;\n order: 10;\n }\n .order-lg-11 {\n -ms-flex-order: 11;\n order: 11;\n }\n .order-lg-12 {\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-xl-1 {\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n -ms-flex-order: -1;\n order: -1;\n }\n .order-xl-last {\n -ms-flex-order: 13;\n order: 13;\n }\n .order-xl-0 {\n -ms-flex-order: 0;\n order: 0;\n }\n .order-xl-1 {\n -ms-flex-order: 1;\n order: 1;\n }\n .order-xl-2 {\n -ms-flex-order: 2;\n order: 2;\n }\n .order-xl-3 {\n -ms-flex-order: 3;\n order: 3;\n }\n .order-xl-4 {\n -ms-flex-order: 4;\n order: 4;\n }\n .order-xl-5 {\n -ms-flex-order: 5;\n order: 5;\n }\n .order-xl-6 {\n -ms-flex-order: 6;\n order: 6;\n }\n .order-xl-7 {\n -ms-flex-order: 7;\n order: 7;\n }\n .order-xl-8 {\n -ms-flex-order: 8;\n order: 8;\n }\n .order-xl-9 {\n -ms-flex-order: 9;\n order: 9;\n }\n .order-xl-10 {\n -ms-flex-order: 10;\n order: 10;\n }\n .order-xl-11 {\n -ms-flex-order: 11;\n order: 11;\n }\n .order-xl-12 {\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n margin-bottom: 1rem;\n color: #212529;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-borderless th,\n.table-borderless td,\n.table-borderless thead th,\n.table-borderless tbody + tbody {\n border: 0;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n color: #212529;\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-primary th,\n.table-primary td,\n.table-primary thead th,\n.table-primary tbody + tbody {\n border-color: #7abaff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #d6d8db;\n}\n\n.table-secondary th,\n.table-secondary td,\n.table-secondary thead th,\n.table-secondary tbody + tbody {\n border-color: #b3b7bb;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #c8cbcf;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #c8cbcf;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-success th,\n.table-success td,\n.table-success thead th,\n.table-success tbody + tbody {\n border-color: #8fd19e;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-info th,\n.table-info td,\n.table-info thead th,\n.table-info tbody + tbody {\n border-color: #86cfda;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-warning th,\n.table-warning td,\n.table-warning thead th,\n.table-warning tbody + tbody {\n border-color: #ffdf7e;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-danger th,\n.table-danger td,\n.table-danger thead th,\n.table-danger tbody + tbody {\n border-color: #ed969e;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-light th,\n.table-light td,\n.table-light thead th,\n.table-light tbody + tbody {\n border-color: #fbfcfc;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th,\n.table-dark tbody + tbody {\n border-color: #95999c;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #343a40;\n border-color: #454d55;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #343a40;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #454d55;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n color: #fff;\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::-webkit-input-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control::-moz-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:-ms-input-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control::-ms-input-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm {\n height: calc(1.5em + 0.5rem + 2px);\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.form-control-lg {\n height: calc(1.5em + 1rem + 2px);\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control[size], select.form-control[multiple] {\n height: auto;\n}\n\ntextarea.form-control {\n height: auto;\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: -ms-inline-flexbox;\n display: inline-flex;\n -ms-flex-align: center;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid {\n border-color: #28a745;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: center right calc(0.375em + 0.1875rem);\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated textarea.form-control:valid, textarea.form-control.is-valid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .custom-select:valid, .custom-select.is-valid {\n border-color: #28a745;\n padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);\n background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\") no-repeat right 0.75rem center/8px 10px, url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-select:valid ~ .valid-feedback,\n.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-control-file:valid ~ .valid-feedback,\n.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,\n.form-control-file.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n border-color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n border-color: #34ce57;\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid {\n border-color: #dc3545;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E\");\n background-repeat: no-repeat;\n background-position: center right calc(0.375em + 0.1875rem);\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .custom-select:invalid, .custom-select.is-invalid {\n border-color: #dc3545;\n padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);\n background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\") no-repeat right 0.75rem center/8px 10px, url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E\") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-select:invalid ~ .invalid-feedback,\n.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-control-file:invalid ~ .invalid-feedback,\n.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,\n.form-control-file.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n border-color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n border-color: #e4606d;\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n -ms-flex-align: center;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: -ms-flexbox;\n display: flex;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n -ms-flex-align: center;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group,\n .form-inline .custom-select {\n width: auto;\n }\n .form-inline .form-check {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n -ms-flex-negative: 0;\n flex-shrink: 0;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n color: #212529;\n text-align: center;\n vertical-align: middle;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n background-color: transparent;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .btn {\n transition: none;\n }\n}\n\n.btn:hover {\n color: #212529;\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #5a6268;\n border-color: #545b62;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #545b62;\n border-color: #4e555b;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n text-decoration: none;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n pointer-events: none;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n transition: opacity 0.15s linear;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fade {\n transition: none;\n }\n}\n\n.fade:not(.show) {\n opacity: 0;\n}\n\n.collapse:not(.show) {\n display: none;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none;\n }\n}\n\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropdown-menu-left {\n right: auto;\n left: 0;\n}\n\n.dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n@media (min-width: 576px) {\n .dropdown-menu-sm-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-sm-right {\n right: 0;\n left: auto;\n }\n}\n\n@media (min-width: 768px) {\n .dropdown-menu-md-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-md-right {\n right: 0;\n left: auto;\n }\n}\n\n@media (min-width: 992px) {\n .dropdown-menu-lg-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-lg-right {\n right: 0;\n left: auto;\n }\n}\n\n@media (min-width: 1200px) {\n .dropdown-menu-xl-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-xl-right {\n right: 0;\n left: auto;\n }\n}\n\n.dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-menu[x-placement^=\"top\"], .dropdown-menu[x-placement^=\"right\"], .dropdown-menu[x-placement^=\"bottom\"], .dropdown-menu[x-placement^=\"left\"] {\n right: auto;\n bottom: auto;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1.5rem;\n color: #212529;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: -ms-inline-flexbox;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-toolbar {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-pack: start;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n margin-left: -1px;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after,\n.dropup .dropdown-toggle-split::after,\n.dropright .dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle-split::before {\n margin-right: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n -ms-flex-direction: column;\n flex-direction: column;\n -ms-flex-align: start;\n align-items: flex-start;\n -ms-flex-pack: center;\n justify-content: center;\n}\n\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) {\n margin-top: -1px;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-align: stretch;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .form-control-plaintext,\n.input-group > .custom-select,\n.input-group > .custom-file {\n position: relative;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group > .form-control + .form-control,\n.input-group > .form-control + .custom-select,\n.input-group > .form-control + .custom-file,\n.input-group > .form-control-plaintext + .form-control,\n.input-group > .form-control-plaintext + .custom-select,\n.input-group > .form-control-plaintext + .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n margin-left: -1px;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {\n z-index: 3;\n}\n\n.input-group > .custom-file .custom-file-input:focus {\n z-index: 4;\n}\n\n.input-group > .form-control:not(:last-child),\n.input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .form-control:not(:first-child),\n.input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group > .custom-file {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n}\n\n.input-group > .custom-file:not(:last-child) .custom-file-label,\n.input-group > .custom-file:not(:last-child) .custom-file-label::after {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .custom-file:not(:first-child) .custom-file-label {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: -ms-flexbox;\n display: flex;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn:focus,\n.input-group-append .btn:focus {\n z-index: 3;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group-lg > .form-control:not(textarea),\n.input-group-lg > .custom-select {\n height: calc(1.5em + 1rem + 2px);\n}\n\n.input-group-lg > .form-control,\n.input-group-lg > .custom-select,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.input-group-sm > .form-control:not(textarea),\n.input-group-sm > .custom-select {\n height: calc(1.5em + 0.5rem + 2px);\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .custom-select,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.input-group-lg > .custom-select,\n.input-group-sm > .custom-select {\n padding-right: 1.75rem;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: -ms-inline-flexbox;\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n border-color: #007bff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #80bdff;\n}\n\n.custom-control-input:not(:disabled):active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n border-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n position: relative;\n margin-bottom: 0;\n vertical-align: top;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n background-color: #fff;\n border: #adb5bd solid 1px;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background: no-repeat 50% / 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n border-color: #007bff;\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e\");\n}\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\");\n}\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-switch {\n padding-left: 2.25rem;\n}\n\n.custom-switch .custom-control-label::before {\n left: -2.25rem;\n width: 1.75rem;\n pointer-events: all;\n border-radius: 0.5rem;\n}\n\n.custom-switch .custom-control-label::after {\n top: calc(0.25rem + 2px);\n left: calc(-2.25rem + 2px);\n width: calc(1rem - 4px);\n height: calc(1rem - 4px);\n background-color: #adb5bd;\n border-radius: 0.5rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;\n transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-switch .custom-control-label::after {\n transition: none;\n }\n}\n\n.custom-switch .custom-control-input:checked ~ .custom-control-label::after {\n background-color: #fff;\n -webkit-transform: translateX(0.75rem);\n transform: translateX(0.75rem);\n}\n\n.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\") no-repeat right 0.75rem center/8px 10px;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n display: none;\n}\n\n.custom-select-sm {\n height: calc(1.5em + 0.5rem + 2px);\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n padding-left: 0.5rem;\n font-size: 0.875rem;\n}\n\n.custom-select-lg {\n height: calc(1.5em + 1rem + 2px);\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n padding-left: 1rem;\n font-size: 1.25rem;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-label {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:disabled ~ .custom-file-label {\n background-color: #e9ecef;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-input ~ .custom-file-label[data-browse]::after {\n content: attr(data-browse);\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 0.75rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(1.5em + 0.75rem);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: inherit;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.custom-range {\n width: 100%;\n height: calc(1rem + 0.4rem);\n padding: 0;\n background-color: transparent;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n\n.custom-range:focus {\n outline: none;\n}\n\n.custom-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-ms-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range::-moz-focus-outer {\n border: 0;\n}\n\n.custom-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -webkit-appearance: none;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-range::-webkit-slider-thumb {\n transition: none;\n }\n}\n\n.custom-range::-webkit-slider-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.custom-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -moz-appearance: none;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-range::-moz-range-thumb {\n transition: none;\n }\n}\n\n.custom-range::-moz-range-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.custom-range::-ms-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: 0;\n margin-right: 0.2rem;\n margin-left: 0.2rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-range::-ms-thumb {\n transition: none;\n }\n}\n\n.custom-range::-ms-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-ms-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: transparent;\n border-color: transparent;\n border-width: 0.5rem;\n}\n\n.custom-range::-ms-fill-lower {\n background-color: #dee2e6;\n border-radius: 1rem;\n}\n\n.custom-range::-ms-fill-upper {\n margin-right: 15px;\n background-color: #dee2e6;\n border-radius: 1rem;\n}\n\n.custom-range:disabled::-webkit-slider-thumb {\n background-color: #adb5bd;\n}\n\n.custom-range:disabled::-webkit-slider-runnable-track {\n cursor: default;\n}\n\n.custom-range:disabled::-moz-range-thumb {\n background-color: #adb5bd;\n}\n\n.custom-range:disabled::-moz-range-track {\n cursor: default;\n}\n\n.custom-range:disabled::-ms-thumb {\n background-color: #adb5bd;\n}\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-control-label::before,\n .custom-file-label,\n .custom-select {\n transition: none;\n }\n}\n\n.nav {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #6c757d;\n pointer-events: none;\n cursor: default;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -ms-flex-positive: 1;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: justify;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n -ms-flex-preferred-size: 100%;\n flex-basis: 100%;\n -ms-flex-positive: 1;\n flex-grow: 1;\n -ms-flex-align: center;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n}\n\n.navbar-expand {\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -ms-flex-pack: start;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n -ms-flex-direction: row;\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: -ms-flexbox;\n display: flex;\n -ms-flex: 1 0 0%;\n flex: 1 0 0%;\n -ms-flex-direction: column;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n }\n .card-group > .card {\n -ms-flex: 1 0 0%;\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-top,\n .card-group > .card:not(:last-child) .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-bottom,\n .card-group > .card:not(:last-child) .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-top,\n .card-group > .card:not(:first-child) .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-bottom,\n .card-group > .card:not(:first-child) .card-footer {\n border-bottom-left-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n -webkit-column-count: 3;\n -moz-column-count: 3;\n column-count: 3;\n -webkit-column-gap: 1.25rem;\n -moz-column-gap: 1.25rem;\n column-gap: 1.25rem;\n orphans: 1;\n widows: 1;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.accordion > .card {\n overflow: hidden;\n}\n\n.accordion > .card:not(:first-of-type) .card-header:first-child {\n border-radius: 0;\n}\n\n.accordion > .card:not(:first-of-type):not(:last-of-type) {\n border-bottom: 0;\n border-radius: 0;\n}\n\n.accordion > .card:first-of-type {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.accordion > .card:last-of-type {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.accordion > .card .card-header {\n margin-bottom: -1px;\n}\n\n.breadcrumb {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n color: #6c757d;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: -ms-flexbox;\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6;\n}\n\n.page-link:hover {\n z-index: 2;\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.page-link:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .badge {\n transition: none;\n }\n}\n\na.badge:hover, a.badge:focus {\n text-decoration: none;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem;\n}\n\n.badge-primary {\n color: #fff;\n background-color: #007bff;\n}\n\na.badge-primary:hover, a.badge-primary:focus {\n color: #fff;\n background-color: #0062cc;\n}\n\na.badge-primary:focus, a.badge-primary.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.badge-secondary {\n color: #fff;\n background-color: #6c757d;\n}\n\na.badge-secondary:hover, a.badge-secondary:focus {\n color: #fff;\n background-color: #545b62;\n}\n\na.badge-secondary:focus, a.badge-secondary.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.badge-success {\n color: #fff;\n background-color: #28a745;\n}\n\na.badge-success:hover, a.badge-success:focus {\n color: #fff;\n background-color: #1e7e34;\n}\n\na.badge-success:focus, a.badge-success.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.badge-info {\n color: #fff;\n background-color: #17a2b8;\n}\n\na.badge-info:hover, a.badge-info:focus {\n color: #fff;\n background-color: #117a8b;\n}\n\na.badge-info:focus, a.badge-info.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.badge-warning {\n color: #212529;\n background-color: #ffc107;\n}\n\na.badge-warning:hover, a.badge-warning:focus {\n color: #212529;\n background-color: #d39e00;\n}\n\na.badge-warning:focus, a.badge-warning.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.badge-danger {\n color: #fff;\n background-color: #dc3545;\n}\n\na.badge-danger:hover, a.badge-danger:focus {\n color: #fff;\n background-color: #bd2130;\n}\n\na.badge-danger:focus, a.badge-danger.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa;\n}\n\na.badge-light:hover, a.badge-light:focus {\n color: #212529;\n background-color: #dae0e5;\n}\n\na.badge-light:focus, a.badge-light.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.badge-dark {\n color: #fff;\n background-color: #343a40;\n}\n\na.badge-dark:hover, a.badge-dark:focus {\n color: #fff;\n background-color: #1d2124;\n}\n\na.badge-dark:focus, a.badge-dark.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem;\n}\n\n@media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem;\n }\n}\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0;\n}\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 4rem;\n}\n\n.alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit;\n}\n\n.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n\n.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.alert-primary .alert-link {\n color: #002752;\n}\n\n.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n}\n\n.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.alert-secondary .alert-link {\n color: #202326;\n}\n\n.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n}\n\n.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.alert-success .alert-link {\n color: #0b2e13;\n}\n\n.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n}\n\n.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.alert-info .alert-link {\n color: #062c33;\n}\n\n.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n}\n\n.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.alert-warning .alert-link {\n color: #533f03;\n}\n\n.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n\n.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.alert-danger .alert-link {\n color: #491217;\n}\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n\n.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.alert-light .alert-link {\n color: #686868;\n}\n\n.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n}\n\n.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n.alert-dark .alert-link {\n color: #040505;\n}\n\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n.progress {\n display: -ms-flexbox;\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n -ms-flex-pack: center;\n justify-content: center;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #007bff;\n transition: width 0.6s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none;\n }\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n -webkit-animation: progress-bar-stripes 1s linear infinite;\n animation: progress-bar-stripes 1s linear infinite;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .progress-bar-animated {\n -webkit-animation: none;\n animation: none;\n }\n}\n\n.media {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: start;\n align-items: flex-start;\n}\n\n.media-body {\n -ms-flex: 1;\n flex: 1;\n}\n\n.list-group {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n\n.list-group-item-action:hover, .list-group-item-action:focus {\n z-index: 1;\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.list-group-horizontal {\n -ms-flex-direction: row;\n flex-direction: row;\n}\n\n.list-group-horizontal .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n}\n\n.list-group-horizontal .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n}\n\n.list-group-horizontal .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n}\n\n@media (min-width: 576px) {\n .list-group-horizontal-sm {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .list-group-horizontal-sm .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-sm .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-sm .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n@media (min-width: 768px) {\n .list-group-horizontal-md {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .list-group-horizontal-md .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-md .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-md .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n@media (min-width: 992px) {\n .list-group-horizontal-lg {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .list-group-horizontal-lg .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-lg .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-lg .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .list-group-horizontal-xl {\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .list-group-horizontal-xl .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-xl .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xl .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.list-group-flush .list-group-item:last-child {\n margin-bottom: -1px;\n}\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0;\n}\n\n.list-group-flush:last-child .list-group-item:last-child {\n margin-bottom: 0;\n border-bottom: 0;\n}\n\n.list-group-item-primary {\n color: #004085;\n background-color: #b8daff;\n}\n\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #004085;\n background-color: #9fcdff;\n}\n\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #004085;\n border-color: #004085;\n}\n\n.list-group-item-secondary {\n color: #383d41;\n background-color: #d6d8db;\n}\n\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #383d41;\n background-color: #c8cbcf;\n}\n\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #383d41;\n border-color: #383d41;\n}\n\n.list-group-item-success {\n color: #155724;\n background-color: #c3e6cb;\n}\n\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #155724;\n background-color: #b1dfbb;\n}\n\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #155724;\n border-color: #155724;\n}\n\n.list-group-item-info {\n color: #0c5460;\n background-color: #bee5eb;\n}\n\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #0c5460;\n background-color: #abdde5;\n}\n\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #0c5460;\n border-color: #0c5460;\n}\n\n.list-group-item-warning {\n color: #856404;\n background-color: #ffeeba;\n}\n\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #856404;\n background-color: #ffe8a1;\n}\n\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #856404;\n border-color: #856404;\n}\n\n.list-group-item-danger {\n color: #721c24;\n background-color: #f5c6cb;\n}\n\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #721c24;\n background-color: #f1b0b7;\n}\n\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #721c24;\n border-color: #721c24;\n}\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe;\n}\n\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #818182;\n background-color: #ececf6;\n}\n\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #818182;\n border-color: #818182;\n}\n\n.list-group-item-dark {\n color: #1b1e21;\n background-color: #c6c8ca;\n}\n\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #1b1e21;\n background-color: #b9bbbe;\n}\n\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #1b1e21;\n border-color: #1b1e21;\n}\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5;\n}\n\n.close:hover {\n color: #000;\n text-decoration: none;\n}\n\n.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {\n opacity: .75;\n}\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n\na.close.disabled {\n pointer-events: none;\n}\n\n.toast {\n max-width: 350px;\n overflow: hidden;\n font-size: 0.875rem;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.1);\n box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);\n -webkit-backdrop-filter: blur(10px);\n backdrop-filter: blur(10px);\n opacity: 0;\n border-radius: 0.25rem;\n}\n\n.toast:not(:last-child) {\n margin-bottom: 0.75rem;\n}\n\n.toast.showing {\n opacity: 1;\n}\n\n.toast.show {\n display: block;\n opacity: 1;\n}\n\n.toast.hide {\n display: none;\n}\n\n.toast-header {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n padding: 0.25rem 0.75rem;\n color: #6c757d;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n}\n\n.toast-body {\n padding: 0.75rem;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1050;\n display: none;\n width: 100%;\n height: 100%;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: -webkit-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;\n -webkit-transform: translate(0, -50px);\n transform: translate(0, -50px);\n}\n\n@media (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none;\n }\n}\n\n.modal.show .modal-dialog {\n -webkit-transform: none;\n transform: none;\n}\n\n.modal-dialog-scrollable {\n display: -ms-flexbox;\n display: flex;\n max-height: calc(100% - 1rem);\n}\n\n.modal-dialog-scrollable .modal-content {\n max-height: calc(100vh - 1rem);\n overflow: hidden;\n}\n\n.modal-dialog-scrollable .modal-header,\n.modal-dialog-scrollable .modal-footer {\n -ms-flex-negative: 0;\n flex-shrink: 0;\n}\n\n.modal-dialog-scrollable .modal-body {\n overflow-y: auto;\n}\n\n.modal-dialog-centered {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n min-height: calc(100% - 1rem);\n}\n\n.modal-dialog-centered::before {\n display: block;\n height: calc(100vh - 1rem);\n content: \"\";\n}\n\n.modal-dialog-centered.modal-dialog-scrollable {\n -ms-flex-direction: column;\n flex-direction: column;\n -ms-flex-pack: center;\n justify-content: center;\n height: 100%;\n}\n\n.modal-dialog-centered.modal-dialog-scrollable .modal-content {\n max-height: none;\n}\n\n.modal-dialog-centered.modal-dialog-scrollable::before {\n content: none;\n}\n\n.modal-content {\n position: relative;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1040;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: start;\n align-items: flex-start;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 1rem 1rem;\n border-bottom: 1px solid #dee2e6;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem;\n}\n\n.modal-header .close {\n padding: 1rem 1rem;\n margin: -1rem -1rem -1rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: end;\n justify-content: flex-end;\n padding: 1rem;\n border-top: 1px solid #dee2e6;\n border-bottom-right-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.modal-footer > :not(:first-child) {\n margin-left: .25rem;\n}\n\n.modal-footer > :not(:last-child) {\n margin-right: .25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-scrollable {\n max-height: calc(100% - 3.5rem);\n }\n .modal-dialog-scrollable .modal-content {\n max-height: calc(100vh - 3.5rem);\n }\n .modal-dialog-centered {\n min-height: calc(100% - 3.5rem);\n }\n .modal-dialog-centered::before {\n height: calc(100vh - 3.5rem);\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg,\n .modal-xl {\n max-width: 800px;\n }\n}\n\n@media (min-width: 1200px) {\n .modal-xl {\n max-width: 1140px;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n\n.popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem;\n}\n\n.popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem;\n}\n\n.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=\"top\"] > .arrow {\n bottom: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=\"top\"] > .arrow::before {\n bottom: 0;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=\"top\"] > .arrow::after {\n bottom: 1px;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: #fff;\n}\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem;\n}\n\n.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=\"right\"] > .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=\"right\"] > .arrow::before {\n left: 0;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=\"right\"] > .arrow::after {\n left: 1px;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem;\n}\n\n.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow {\n top: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow::before {\n top: 0;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow::after {\n top: 1px;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7;\n}\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem;\n}\n\n.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=\"left\"] > .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=\"left\"] > .arrow::before {\n right: 0;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=\"left\"] > .arrow::after {\n right: 1px;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n -ms-touch-action: pan-y;\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-inner::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n transition: -webkit-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-item {\n transition: none;\n }\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n.carousel-item-next:not(.carousel-item-left),\n.active.carousel-item-right {\n -webkit-transform: translateX(100%);\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-right),\n.active.carousel-item-left {\n -webkit-transform: translateX(-100%);\n transform: translateX(-100%);\n}\n\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-property: opacity;\n -webkit-transform: none;\n transform: none;\n}\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-left,\n.carousel-fade .carousel-item-prev.carousel-item-right {\n z-index: 1;\n opacity: 1;\n}\n\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-right {\n z-index: 0;\n opacity: 0;\n transition: 0s 0.6s opacity;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-fade .active.carousel-item-left,\n .carousel-fade .active.carousel-item-right {\n transition: none;\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-pack: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n transition: opacity 0.15s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n .carousel-control-next {\n transition: none;\n }\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: 0.9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: no-repeat 50% / 100% 100%;\n}\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 15;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-pack: center;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators li {\n box-sizing: content-box;\n -ms-flex: 0 1 auto;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #fff;\n background-clip: padding-box;\n border-top: 10px solid transparent;\n border-bottom: 10px solid transparent;\n opacity: .5;\n transition: opacity 0.6s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-indicators li {\n transition: none;\n }\n}\n\n.carousel-indicators .active {\n opacity: 1;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n}\n\n@-webkit-keyframes spinner-border {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes spinner-border {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n.spinner-border {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n border: 0.25em solid currentColor;\n border-right-color: transparent;\n border-radius: 50%;\n -webkit-animation: spinner-border .75s linear infinite;\n animation: spinner-border .75s linear infinite;\n}\n\n.spinner-border-sm {\n width: 1rem;\n height: 1rem;\n border-width: 0.2em;\n}\n\n@-webkit-keyframes spinner-grow {\n 0% {\n -webkit-transform: scale(0);\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n }\n}\n\n@keyframes spinner-grow {\n 0% {\n -webkit-transform: scale(0);\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n }\n}\n\n.spinner-grow {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n background-color: currentColor;\n border-radius: 50%;\n opacity: 0;\n -webkit-animation: spinner-grow .75s linear infinite;\n animation: spinner-grow .75s linear infinite;\n}\n\n.spinner-grow-sm {\n width: 1rem;\n height: 1rem;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.bg-primary {\n background-color: #007bff !important;\n}\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n background-color: #0062cc !important;\n}\n\n.bg-secondary {\n background-color: #6c757d !important;\n}\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #545b62 !important;\n}\n\n.bg-success {\n background-color: #28a745 !important;\n}\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n background-color: #1e7e34 !important;\n}\n\n.bg-info {\n background-color: #17a2b8 !important;\n}\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n background-color: #117a8b !important;\n}\n\n.bg-warning {\n background-color: #ffc107 !important;\n}\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n background-color: #d39e00 !important;\n}\n\n.bg-danger {\n background-color: #dc3545 !important;\n}\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n background-color: #bd2130 !important;\n}\n\n.bg-light {\n background-color: #f8f9fa !important;\n}\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #dae0e5 !important;\n}\n\n.bg-dark {\n background-color: #343a40 !important;\n}\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n background-color: #1d2124 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-right {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-left {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-right-0 {\n border-right: 0 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-left-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #007bff !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #28a745 !important;\n}\n\n.border-info {\n border-color: #17a2b8 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #343a40 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.rounded-sm {\n border-radius: 0.2rem !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-lg {\n border-radius: 0.3rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-pill {\n border-radius: 50rem !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.d-none {\n display: none !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: -ms-flexbox !important;\n display: flex !important;\n}\n\n.d-inline-flex {\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-md-inline-flex {\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media print {\n .d-print-none {\n display: none !important;\n }\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-print-inline-flex {\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden;\n}\n\n.embed-responsive::before {\n display: block;\n content: \"\";\n}\n\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n\n.embed-responsive-21by9::before {\n padding-top: 42.857143%;\n}\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%;\n}\n\n.embed-responsive-4by3::before {\n padding-top: 75%;\n}\n\n.embed-responsive-1by1::before {\n padding-top: 100%;\n}\n\n.flex-row {\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n}\n\n.flex-column {\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n}\n\n.flex-fill {\n -ms-flex: 1 1 auto !important;\n flex: 1 1 auto !important;\n}\n\n.flex-grow-0 {\n -ms-flex-positive: 0 !important;\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n -ms-flex-positive: 1 !important;\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n -ms-flex-negative: 0 !important;\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n -ms-flex-negative: 1 !important;\n flex-shrink: 1 !important;\n}\n\n.justify-content-start {\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n -ms-flex-pack: center !important;\n justify-content: center !important;\n}\n\n.justify-content-between {\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n}\n\n.align-items-start {\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n}\n\n.align-items-end {\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n}\n\n.align-items-center {\n -ms-flex-align: center !important;\n align-items: center !important;\n}\n\n.align-items-baseline {\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n}\n\n.align-content-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n}\n\n.align-content-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n}\n\n.align-content-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n}\n\n.align-content-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n}\n\n.align-content-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n}\n\n.align-self-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n}\n\n.align-self-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n}\n\n.align-self-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n}\n\n.align-self-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n}\n\n.align-self-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-sm-column {\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .flex-sm-fill {\n -ms-flex: 1 1 auto !important;\n flex: 1 1 auto !important;\n }\n .flex-sm-grow-0 {\n -ms-flex-positive: 0 !important;\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n -ms-flex-positive: 1 !important;\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n -ms-flex-negative: 0 !important;\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n -ms-flex-negative: 1 !important;\n flex-shrink: 1 !important;\n }\n .justify-content-sm-start {\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-sm-between {\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-sm-baseline {\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-sm-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-sm-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-sm-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-sm-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-sm-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-md-column {\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .flex-md-fill {\n -ms-flex: 1 1 auto !important;\n flex: 1 1 auto !important;\n }\n .flex-md-grow-0 {\n -ms-flex-positive: 0 !important;\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n -ms-flex-positive: 1 !important;\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n -ms-flex-negative: 0 !important;\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n -ms-flex-negative: 1 !important;\n flex-shrink: 1 !important;\n }\n .justify-content-md-start {\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-md-between {\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-md-start {\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-md-end {\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-md-center {\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-md-baseline {\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-md-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-md-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-md-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-md-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-md-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-md-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-md-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-md-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-md-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-md-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-lg-column {\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .flex-lg-fill {\n -ms-flex: 1 1 auto !important;\n flex: 1 1 auto !important;\n }\n .flex-lg-grow-0 {\n -ms-flex-positive: 0 !important;\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n -ms-flex-positive: 1 !important;\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n -ms-flex-negative: 0 !important;\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n -ms-flex-negative: 1 !important;\n flex-shrink: 1 !important;\n }\n .justify-content-lg-start {\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-lg-between {\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-lg-baseline {\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-lg-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-lg-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-lg-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-lg-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-lg-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-xl-column {\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .flex-xl-fill {\n -ms-flex: 1 1 auto !important;\n flex: 1 1 auto !important;\n }\n .flex-xl-grow-0 {\n -ms-flex-positive: 0 !important;\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n -ms-flex-positive: 1 !important;\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n -ms-flex-negative: 0 !important;\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n -ms-flex-negative: 1 !important;\n flex-shrink: 1 !important;\n }\n .justify-content-xl-start {\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-xl-between {\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-xl-baseline {\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-xl-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-xl-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-xl-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-xl-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-xl-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n.float-left {\n float: left !important;\n}\n\n.float-right {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important;\n }\n .float-sm-right {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important;\n }\n .float-md-right {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important;\n }\n .float-lg-right {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important;\n }\n .float-xl-right {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: -webkit-sticky !important;\n position: sticky !important;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n@supports ((position: -webkit-sticky) or (position: sticky)) {\n .sticky-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n pointer-events: auto;\n content: \"\";\n background-color: rgba(0, 0, 0, 0);\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important;\n}\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important;\n}\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important;\n}\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important;\n}\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important;\n}\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.mt-2,\n.my-2 {\n margin-top: 0.5rem !important;\n}\n\n.mr-2,\n.mx-2 {\n margin-right: 0.5rem !important;\n}\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.ml-2,\n.mx-2 {\n margin-left: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important;\n}\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important;\n}\n\n.mb-3,\n.my-3 {\n margin-bottom: 1rem !important;\n}\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important;\n}\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important;\n}\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important;\n}\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important;\n}\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important;\n}\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important;\n}\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important;\n}\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important;\n}\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important;\n}\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important;\n}\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important;\n}\n\n.pr-2,\n.px-2 {\n padding-right: 0.5rem !important;\n}\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pl-2,\n.px-2 {\n padding-left: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important;\n}\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important;\n}\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important;\n}\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important;\n}\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important;\n}\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important;\n}\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important;\n}\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important;\n}\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important;\n}\n\n.m-n1 {\n margin: -0.25rem !important;\n}\n\n.mt-n1,\n.my-n1 {\n margin-top: -0.25rem !important;\n}\n\n.mr-n1,\n.mx-n1 {\n margin-right: -0.25rem !important;\n}\n\n.mb-n1,\n.my-n1 {\n margin-bottom: -0.25rem !important;\n}\n\n.ml-n1,\n.mx-n1 {\n margin-left: -0.25rem !important;\n}\n\n.m-n2 {\n margin: -0.5rem !important;\n}\n\n.mt-n2,\n.my-n2 {\n margin-top: -0.5rem !important;\n}\n\n.mr-n2,\n.mx-n2 {\n margin-right: -0.5rem !important;\n}\n\n.mb-n2,\n.my-n2 {\n margin-bottom: -0.5rem !important;\n}\n\n.ml-n2,\n.mx-n2 {\n margin-left: -0.5rem !important;\n}\n\n.m-n3 {\n margin: -1rem !important;\n}\n\n.mt-n3,\n.my-n3 {\n margin-top: -1rem !important;\n}\n\n.mr-n3,\n.mx-n3 {\n margin-right: -1rem !important;\n}\n\n.mb-n3,\n.my-n3 {\n margin-bottom: -1rem !important;\n}\n\n.ml-n3,\n.mx-n3 {\n margin-left: -1rem !important;\n}\n\n.m-n4 {\n margin: -1.5rem !important;\n}\n\n.mt-n4,\n.my-n4 {\n margin-top: -1.5rem !important;\n}\n\n.mr-n4,\n.mx-n4 {\n margin-right: -1.5rem !important;\n}\n\n.mb-n4,\n.my-n4 {\n margin-bottom: -1.5rem !important;\n}\n\n.ml-n4,\n.mx-n4 {\n margin-left: -1.5rem !important;\n}\n\n.m-n5 {\n margin: -3rem !important;\n}\n\n.mt-n5,\n.my-n5 {\n margin-top: -3rem !important;\n}\n\n.mr-n5,\n.mx-n5 {\n margin-right: -3rem !important;\n}\n\n.mb-n5,\n.my-n5 {\n margin-bottom: -3rem !important;\n}\n\n.ml-n5,\n.mx-n5 {\n margin-left: -3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important;\n}\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important;\n}\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important;\n}\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important;\n}\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important;\n }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important;\n }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important;\n }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important;\n }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important;\n }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important;\n }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important;\n }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important;\n }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important;\n }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important;\n }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important;\n }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important;\n }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important;\n }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important;\n }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important;\n }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important;\n }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important;\n }\n .m-sm-n1 {\n margin: -0.25rem !important;\n }\n .mt-sm-n1,\n .my-sm-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-sm-n1,\n .mx-sm-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-sm-n1,\n .my-sm-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-sm-n1,\n .mx-sm-n1 {\n margin-left: -0.25rem !important;\n }\n .m-sm-n2 {\n margin: -0.5rem !important;\n }\n .mt-sm-n2,\n .my-sm-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-sm-n2,\n .mx-sm-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-sm-n2,\n .my-sm-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-sm-n2,\n .mx-sm-n2 {\n margin-left: -0.5rem !important;\n }\n .m-sm-n3 {\n margin: -1rem !important;\n }\n .mt-sm-n3,\n .my-sm-n3 {\n margin-top: -1rem !important;\n }\n .mr-sm-n3,\n .mx-sm-n3 {\n margin-right: -1rem !important;\n }\n .mb-sm-n3,\n .my-sm-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-sm-n3,\n .mx-sm-n3 {\n margin-left: -1rem !important;\n }\n .m-sm-n4 {\n margin: -1.5rem !important;\n }\n .mt-sm-n4,\n .my-sm-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-sm-n4,\n .mx-sm-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-sm-n4,\n .my-sm-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-sm-n4,\n .mx-sm-n4 {\n margin-left: -1.5rem !important;\n }\n .m-sm-n5 {\n margin: -3rem !important;\n }\n .mt-sm-n5,\n .my-sm-n5 {\n margin-top: -3rem !important;\n }\n .mr-sm-n5,\n .mx-sm-n5 {\n margin-right: -3rem !important;\n }\n .mb-sm-n5,\n .my-sm-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-sm-n5,\n .mx-sm-n5 {\n margin-left: -3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important;\n }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important;\n }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important;\n }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important;\n }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important;\n }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important;\n }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important;\n }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important;\n }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important;\n }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important;\n }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important;\n }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important;\n }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important;\n }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important;\n }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important;\n }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important;\n }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important;\n }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important;\n }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important;\n }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important;\n }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important;\n }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important;\n }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important;\n }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important;\n }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important;\n }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important;\n }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important;\n }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important;\n }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important;\n }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important;\n }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important;\n }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important;\n }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important;\n }\n .m-md-n1 {\n margin: -0.25rem !important;\n }\n .mt-md-n1,\n .my-md-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-md-n1,\n .mx-md-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-md-n1,\n .my-md-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-md-n1,\n .mx-md-n1 {\n margin-left: -0.25rem !important;\n }\n .m-md-n2 {\n margin: -0.5rem !important;\n }\n .mt-md-n2,\n .my-md-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-md-n2,\n .mx-md-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-md-n2,\n .my-md-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-md-n2,\n .mx-md-n2 {\n margin-left: -0.5rem !important;\n }\n .m-md-n3 {\n margin: -1rem !important;\n }\n .mt-md-n3,\n .my-md-n3 {\n margin-top: -1rem !important;\n }\n .mr-md-n3,\n .mx-md-n3 {\n margin-right: -1rem !important;\n }\n .mb-md-n3,\n .my-md-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-md-n3,\n .mx-md-n3 {\n margin-left: -1rem !important;\n }\n .m-md-n4 {\n margin: -1.5rem !important;\n }\n .mt-md-n4,\n .my-md-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-md-n4,\n .mx-md-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-md-n4,\n .my-md-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-md-n4,\n .mx-md-n4 {\n margin-left: -1.5rem !important;\n }\n .m-md-n5 {\n margin: -3rem !important;\n }\n .mt-md-n5,\n .my-md-n5 {\n margin-top: -3rem !important;\n }\n .mr-md-n5,\n .mx-md-n5 {\n margin-right: -3rem !important;\n }\n .mb-md-n5,\n .my-md-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-md-n5,\n .mx-md-n5 {\n margin-left: -3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important;\n }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important;\n }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important;\n }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important;\n }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important;\n }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important;\n }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important;\n }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important;\n }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important;\n }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important;\n }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important;\n }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important;\n }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important;\n }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important;\n }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important;\n }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important;\n }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important;\n }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important;\n }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important;\n }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important;\n }\n .m-lg-n1 {\n margin: -0.25rem !important;\n }\n .mt-lg-n1,\n .my-lg-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-lg-n1,\n .mx-lg-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-lg-n1,\n .my-lg-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-lg-n1,\n .mx-lg-n1 {\n margin-left: -0.25rem !important;\n }\n .m-lg-n2 {\n margin: -0.5rem !important;\n }\n .mt-lg-n2,\n .my-lg-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-lg-n2,\n .mx-lg-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-lg-n2,\n .my-lg-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-lg-n2,\n .mx-lg-n2 {\n margin-left: -0.5rem !important;\n }\n .m-lg-n3 {\n margin: -1rem !important;\n }\n .mt-lg-n3,\n .my-lg-n3 {\n margin-top: -1rem !important;\n }\n .mr-lg-n3,\n .mx-lg-n3 {\n margin-right: -1rem !important;\n }\n .mb-lg-n3,\n .my-lg-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-lg-n3,\n .mx-lg-n3 {\n margin-left: -1rem !important;\n }\n .m-lg-n4 {\n margin: -1.5rem !important;\n }\n .mt-lg-n4,\n .my-lg-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-lg-n4,\n .mx-lg-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-lg-n4,\n .my-lg-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-lg-n4,\n .mx-lg-n4 {\n margin-left: -1.5rem !important;\n }\n .m-lg-n5 {\n margin: -3rem !important;\n }\n .mt-lg-n5,\n .my-lg-n5 {\n margin-top: -3rem !important;\n }\n .mr-lg-n5,\n .mx-lg-n5 {\n margin-right: -3rem !important;\n }\n .mb-lg-n5,\n .my-lg-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-lg-n5,\n .mx-lg-n5 {\n margin-left: -3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important;\n }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important;\n }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important;\n }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important;\n }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important;\n }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important;\n }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important;\n }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important;\n }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important;\n }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important;\n }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important;\n }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important;\n }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important;\n }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important;\n }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important;\n }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important;\n }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important;\n }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important;\n }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important;\n }\n .m-xl-n1 {\n margin: -0.25rem !important;\n }\n .mt-xl-n1,\n .my-xl-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-xl-n1,\n .mx-xl-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-xl-n1,\n .my-xl-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-xl-n1,\n .mx-xl-n1 {\n margin-left: -0.25rem !important;\n }\n .m-xl-n2 {\n margin: -0.5rem !important;\n }\n .mt-xl-n2,\n .my-xl-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-xl-n2,\n .mx-xl-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-xl-n2,\n .my-xl-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-xl-n2,\n .mx-xl-n2 {\n margin-left: -0.5rem !important;\n }\n .m-xl-n3 {\n margin: -1rem !important;\n }\n .mt-xl-n3,\n .my-xl-n3 {\n margin-top: -1rem !important;\n }\n .mr-xl-n3,\n .mx-xl-n3 {\n margin-right: -1rem !important;\n }\n .mb-xl-n3,\n .my-xl-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-xl-n3,\n .mx-xl-n3 {\n margin-left: -1rem !important;\n }\n .m-xl-n4 {\n margin: -1.5rem !important;\n }\n .mt-xl-n4,\n .my-xl-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-xl-n4,\n .mx-xl-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-xl-n4,\n .my-xl-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-xl-n4,\n .mx-xl-n4 {\n margin-left: -1.5rem !important;\n }\n .m-xl-n5 {\n margin: -3rem !important;\n }\n .mt-xl-n5,\n .my-xl-n5 {\n margin-top: -3rem !important;\n }\n .mr-xl-n5,\n .mx-xl-n5 {\n margin-right: -3rem !important;\n }\n .mb-xl-n5,\n .my-xl-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-xl-n5,\n .mx-xl-n5 {\n margin-left: -3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important;\n }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important;\n }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important;\n }\n}\n\n.text-monospace {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !important;\n}\n\n.text-justify {\n text-align: justify !important;\n}\n\n.text-wrap {\n white-space: normal !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.text-left {\n text-align: left !important;\n}\n\n.text-right {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important;\n }\n .text-sm-right {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important;\n }\n .text-md-right {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important;\n }\n .text-lg-right {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important;\n }\n .text-xl-right {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.font-weight-light {\n font-weight: 300 !important;\n}\n\n.font-weight-lighter {\n font-weight: lighter !important;\n}\n\n.font-weight-normal {\n font-weight: 400 !important;\n}\n\n.font-weight-bold {\n font-weight: 700 !important;\n}\n\n.font-weight-bolder {\n font-weight: bolder !important;\n}\n\n.font-italic {\n font-style: italic !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-primary {\n color: #007bff !important;\n}\n\na.text-primary:hover, a.text-primary:focus {\n color: #0056b3 !important;\n}\n\n.text-secondary {\n color: #6c757d !important;\n}\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #494f54 !important;\n}\n\n.text-success {\n color: #28a745 !important;\n}\n\na.text-success:hover, a.text-success:focus {\n color: #19692c !important;\n}\n\n.text-info {\n color: #17a2b8 !important;\n}\n\na.text-info:hover, a.text-info:focus {\n color: #0f6674 !important;\n}\n\n.text-warning {\n color: #ffc107 !important;\n}\n\na.text-warning:hover, a.text-warning:focus {\n color: #ba8b00 !important;\n}\n\n.text-danger {\n color: #dc3545 !important;\n}\n\na.text-danger:hover, a.text-danger:focus {\n color: #a71d2a !important;\n}\n\n.text-light {\n color: #f8f9fa !important;\n}\n\na.text-light:hover, a.text-light:focus {\n color: #cbd3da !important;\n}\n\n.text-dark {\n color: #343a40 !important;\n}\n\na.text-dark:hover, a.text-dark:focus {\n color: #121416 !important;\n}\n\n.text-body {\n color: #212529 !important;\n}\n\n.text-muted {\n color: #6c757d !important;\n}\n\n.text-black-50 {\n color: rgba(0, 0, 0, 0.5) !important;\n}\n\n.text-white-50 {\n color: rgba(255, 255, 255, 0.5) !important;\n}\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n.text-decoration-none {\n text-decoration: none !important;\n}\n\n.text-break {\n word-break: break-word !important;\n overflow-wrap: break-word !important;\n}\n\n.text-reset {\n color: inherit !important;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important;\n }\n a:not(.btn) {\n text-decoration: underline;\n }\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n pre {\n white-space: pre-wrap !important;\n }\n pre,\n blockquote {\n border: 1px solid #adb5bd;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n @page {\n size: a3;\n }\n body {\n min-width: 992px !important;\n }\n .container {\n min-width: 992px !important;\n }\n .navbar {\n display: none;\n }\n .badge {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #dee2e6 !important;\n }\n .table-dark {\n color: inherit;\n }\n .table-dark th,\n .table-dark td,\n .table-dark thead th,\n .table-dark tbody + tbody {\n border-color: #dee2e6;\n }\n .table .thead-dark th {\n color: inherit;\n border-color: #dee2e6;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated font-resizing\n//\n// See https://github.com/twbs/rfs\n\n// Configuration\n\n// Base font size\n$rfs-base-font-size: 1.25rem !default;\n$rfs-font-size-unit: rem !default;\n\n// Breakpoint at where font-size starts decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n// Resize font-size based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != \"number\" or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-responsive-font-sizes to false\n$enable-responsive-font-sizes: true !default;\n\n// Cache $rfs-base-font-size unit\n$rfs-base-font-size-unit: unit($rfs-base-font-size);\n\n// Remove px-unit from $rfs-base-font-size for calculations\n@if $rfs-base-font-size-unit == \"px\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);\n}\n@else if $rfs-base-font-size-unit == \"rem\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == \"px\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == \"rem\" or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);\n}\n\n// Responsive font-size mixin\n@mixin rfs($fs, $important: false) {\n // Cache $fs unit\n $fs-unit: if(type-of($fs) == \"number\", unit($fs), false);\n\n // Add !important suffix if needed\n $rfs-suffix: if($important, \" !important\", \"\");\n\n // If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $fs-unit or $fs-unit != \"\" and $fs-unit != \"px\" and $fs-unit != \"rem\" or $fs == 0 {\n font-size: #{$fs}#{$rfs-suffix};\n }\n @else {\n // Variables for storing static and fluid rescaling\n $rfs-static: null;\n $rfs-fluid: null;\n\n // Remove px-unit from $fs for calculations\n @if $fs-unit == \"px\" {\n $fs: $fs / ($fs * 0 + 1);\n }\n @else if $fs-unit == \"rem\" {\n $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);\n }\n\n // Set default font-size\n @if $rfs-font-size-unit == rem {\n $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};\n }\n @else if $rfs-font-size-unit == px {\n $rfs-static: #{$fs}px#{$rfs-suffix};\n }\n @else {\n @error \"`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.\";\n }\n\n // Only add media query if font-size is bigger as the minimum font-size\n // If $rfs-factor == 1, no rescaling will take place\n @if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {\n $min-width: null;\n $variable-unit: null;\n\n // Calculate minimum font-size for given font-size\n $fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;\n\n // Calculate difference between given font-size and minimum font-size for given font-size\n $fs-diff: $fs - $fs-min;\n\n // Base font-size formatting\n // No need to check if the unit is valid, because we did that before\n $min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);\n\n // If two-dimensional, use smallest of screen width and height\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};\n\n // Set the calculated font-size.\n $rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};\n }\n\n // Rendering\n @if $rfs-fluid == null {\n // Only render static font-size if no fluid font-size is available\n font-size: $rfs-static;\n }\n @else {\n $mq-value: null;\n\n // RFS breakpoint formatting\n @if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {\n $mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};\n }\n @else if $rfs-breakpoint-unit == px {\n $mq-value: #{$rfs-breakpoint}px;\n }\n @else {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n }\n\n @if $rfs-class == \"disable\" {\n // Adding an extra class increases specificity,\n // which prevents the media query to override the font size\n &,\n .disable-responsive-font-size &,\n &.disable-responsive-font-size {\n font-size: $rfs-static;\n }\n }\n @else {\n font-size: $rfs-static;\n }\n\n @if $rfs-two-dimensional {\n @media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n @else {\n @media (max-width: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n }\n }\n}\n\n// The font-size & responsive-font-size mixin uses RFS to rescale font sizes\n@mixin font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n\n@mixin responsive-font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n","/*!\n * Bootstrap v4.3.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #6c757d;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #6c757d;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nselect {\n word-wrap: normal;\n}\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d;\n}\n\n.blockquote-footer::before {\n content: \"\\2014\\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n}\n\n.col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n order: -1;\n}\n\n.order-last {\n order: 13;\n}\n\n.order-0 {\n order: 0;\n}\n\n.order-1 {\n order: 1;\n}\n\n.order-2 {\n order: 2;\n}\n\n.order-3 {\n order: 3;\n}\n\n.order-4 {\n order: 4;\n}\n\n.order-5 {\n order: 5;\n}\n\n.order-6 {\n order: 6;\n}\n\n.order-7 {\n order: 7;\n}\n\n.order-8 {\n order: 8;\n}\n\n.order-9 {\n order: 9;\n}\n\n.order-10 {\n order: 10;\n}\n\n.order-11 {\n order: 11;\n}\n\n.order-12 {\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-last {\n order: 13;\n }\n .order-sm-0 {\n order: 0;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-last {\n order: 13;\n }\n .order-md-0 {\n order: 0;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-last {\n order: 13;\n }\n .order-lg-0 {\n order: 0;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-last {\n order: 13;\n }\n .order-xl-0 {\n order: 0;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n margin-bottom: 1rem;\n color: #212529;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-borderless th,\n.table-borderless td,\n.table-borderless thead th,\n.table-borderless tbody + tbody {\n border: 0;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n color: #212529;\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-primary th,\n.table-primary td,\n.table-primary thead th,\n.table-primary tbody + tbody {\n border-color: #7abaff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #d6d8db;\n}\n\n.table-secondary th,\n.table-secondary td,\n.table-secondary thead th,\n.table-secondary tbody + tbody {\n border-color: #b3b7bb;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #c8cbcf;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #c8cbcf;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-success th,\n.table-success td,\n.table-success thead th,\n.table-success tbody + tbody {\n border-color: #8fd19e;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-info th,\n.table-info td,\n.table-info thead th,\n.table-info tbody + tbody {\n border-color: #86cfda;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-warning th,\n.table-warning td,\n.table-warning thead th,\n.table-warning tbody + tbody {\n border-color: #ffdf7e;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-danger th,\n.table-danger td,\n.table-danger thead th,\n.table-danger tbody + tbody {\n border-color: #ed969e;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-light th,\n.table-light td,\n.table-light thead th,\n.table-light tbody + tbody {\n border-color: #fbfcfc;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th,\n.table-dark tbody + tbody {\n border-color: #95999c;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #343a40;\n border-color: #454d55;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #343a40;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #454d55;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n color: #fff;\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm {\n height: calc(1.5em + 0.5rem + 2px);\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.form-control-lg {\n height: calc(1.5em + 1rem + 2px);\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control[size], select.form-control[multiple] {\n height: auto;\n}\n\ntextarea.form-control {\n height: auto;\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid {\n border-color: #28a745;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: center right calc(0.375em + 0.1875rem);\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated textarea.form-control:valid, textarea.form-control.is-valid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .custom-select:valid, .custom-select.is-valid {\n border-color: #28a745;\n padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);\n background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\") no-repeat right 0.75rem center/8px 10px, url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-select:valid ~ .valid-feedback,\n.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-control-file:valid ~ .valid-feedback,\n.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,\n.form-control-file.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n border-color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n border-color: #34ce57;\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid {\n border-color: #dc3545;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E\");\n background-repeat: no-repeat;\n background-position: center right calc(0.375em + 0.1875rem);\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .custom-select:invalid, .custom-select.is-invalid {\n border-color: #dc3545;\n padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);\n background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\") no-repeat right 0.75rem center/8px 10px, url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E\") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n\n.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-select:invalid ~ .invalid-feedback,\n.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-control-file:invalid ~ .invalid-feedback,\n.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,\n.form-control-file.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n border-color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n border-color: #e4606d;\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group,\n .form-inline .custom-select {\n width: auto;\n }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n flex-shrink: 0;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n color: #212529;\n text-align: center;\n vertical-align: middle;\n user-select: none;\n background-color: transparent;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .btn {\n transition: none;\n }\n}\n\n.btn:hover {\n color: #212529;\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #5a6268;\n border-color: #545b62;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #545b62;\n border-color: #4e555b;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n text-decoration: none;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n pointer-events: none;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n transition: opacity 0.15s linear;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fade {\n transition: none;\n }\n}\n\n.fade:not(.show) {\n opacity: 0;\n}\n\n.collapse:not(.show) {\n display: none;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none;\n }\n}\n\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropdown-menu-left {\n right: auto;\n left: 0;\n}\n\n.dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n@media (min-width: 576px) {\n .dropdown-menu-sm-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-sm-right {\n right: 0;\n left: auto;\n }\n}\n\n@media (min-width: 768px) {\n .dropdown-menu-md-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-md-right {\n right: 0;\n left: auto;\n }\n}\n\n@media (min-width: 992px) {\n .dropdown-menu-lg-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-lg-right {\n right: 0;\n left: auto;\n }\n}\n\n@media (min-width: 1200px) {\n .dropdown-menu-xl-left {\n right: auto;\n left: 0;\n }\n .dropdown-menu-xl-right {\n right: 0;\n left: auto;\n }\n}\n\n.dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-menu[x-placement^=\"top\"], .dropdown-menu[x-placement^=\"right\"], .dropdown-menu[x-placement^=\"bottom\"], .dropdown-menu[x-placement^=\"left\"] {\n right: auto;\n bottom: auto;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1.5rem;\n color: #212529;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 1 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n margin-left: -1px;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after,\n.dropup .dropdown-toggle-split::after,\n.dropright .dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle-split::before {\n margin-right: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) {\n margin-top: -1px;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .form-control-plaintext,\n.input-group > .custom-select,\n.input-group > .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group > .form-control + .form-control,\n.input-group > .form-control + .custom-select,\n.input-group > .form-control + .custom-file,\n.input-group > .form-control-plaintext + .form-control,\n.input-group > .form-control-plaintext + .custom-select,\n.input-group > .form-control-plaintext + .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n margin-left: -1px;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {\n z-index: 3;\n}\n\n.input-group > .custom-file .custom-file-input:focus {\n z-index: 4;\n}\n\n.input-group > .form-control:not(:last-child),\n.input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .form-control:not(:first-child),\n.input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group > .custom-file {\n display: flex;\n align-items: center;\n}\n\n.input-group > .custom-file:not(:last-child) .custom-file-label,\n.input-group > .custom-file:not(:last-child) .custom-file-label::after {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .custom-file:not(:first-child) .custom-file-label {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: flex;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn:focus,\n.input-group-append .btn:focus {\n z-index: 3;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group-lg > .form-control:not(textarea),\n.input-group-lg > .custom-select {\n height: calc(1.5em + 1rem + 2px);\n}\n\n.input-group-lg > .form-control,\n.input-group-lg > .custom-select,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.input-group-sm > .form-control:not(textarea),\n.input-group-sm > .custom-select {\n height: calc(1.5em + 0.5rem + 2px);\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .custom-select,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.input-group-lg > .custom-select,\n.input-group-sm > .custom-select {\n padding-right: 1.75rem;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n border-color: #007bff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #80bdff;\n}\n\n.custom-control-input:not(:disabled):active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n border-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n position: relative;\n margin-bottom: 0;\n vertical-align: top;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n background-color: #fff;\n border: #adb5bd solid 1px;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background: no-repeat 50% / 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n border-color: #007bff;\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e\");\n}\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\");\n}\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-switch {\n padding-left: 2.25rem;\n}\n\n.custom-switch .custom-control-label::before {\n left: -2.25rem;\n width: 1.75rem;\n pointer-events: all;\n border-radius: 0.5rem;\n}\n\n.custom-switch .custom-control-label::after {\n top: calc(0.25rem + 2px);\n left: calc(-2.25rem + 2px);\n width: calc(1rem - 4px);\n height: calc(1rem - 4px);\n background-color: #adb5bd;\n border-radius: 0.5rem;\n transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-switch .custom-control-label::after {\n transition: none;\n }\n}\n\n.custom-switch .custom-control-input:checked ~ .custom-control-label::after {\n background-color: #fff;\n transform: translateX(0.75rem);\n}\n\n.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\") no-repeat right 0.75rem center/8px 10px;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n display: none;\n}\n\n.custom-select-sm {\n height: calc(1.5em + 0.5rem + 2px);\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n padding-left: 0.5rem;\n font-size: 0.875rem;\n}\n\n.custom-select-lg {\n height: calc(1.5em + 1rem + 2px);\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n padding-left: 1rem;\n font-size: 1.25rem;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-label {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:disabled ~ .custom-file-label {\n background-color: #e9ecef;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-input ~ .custom-file-label[data-browse]::after {\n content: attr(data-browse);\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 0.75rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(1.5em + 0.75rem);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: inherit;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.custom-range {\n width: 100%;\n height: calc(1rem + 0.4rem);\n padding: 0;\n background-color: transparent;\n appearance: none;\n}\n\n.custom-range:focus {\n outline: none;\n}\n\n.custom-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-ms-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range::-moz-focus-outer {\n border: 0;\n}\n\n.custom-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-range::-webkit-slider-thumb {\n transition: none;\n }\n}\n\n.custom-range::-webkit-slider-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.custom-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-range::-moz-range-thumb {\n transition: none;\n }\n}\n\n.custom-range::-moz-range-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.custom-range::-ms-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: 0;\n margin-right: 0.2rem;\n margin-left: 0.2rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-range::-ms-thumb {\n transition: none;\n }\n}\n\n.custom-range::-ms-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-ms-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: transparent;\n border-color: transparent;\n border-width: 0.5rem;\n}\n\n.custom-range::-ms-fill-lower {\n background-color: #dee2e6;\n border-radius: 1rem;\n}\n\n.custom-range::-ms-fill-upper {\n margin-right: 15px;\n background-color: #dee2e6;\n border-radius: 1rem;\n}\n\n.custom-range:disabled::-webkit-slider-thumb {\n background-color: #adb5bd;\n}\n\n.custom-range:disabled::-webkit-slider-runnable-track {\n cursor: default;\n}\n\n.custom-range:disabled::-moz-range-thumb {\n background-color: #adb5bd;\n}\n\n.custom-range:disabled::-moz-range-track {\n cursor: default;\n}\n\n.custom-range:disabled::-ms-thumb {\n background-color: #adb5bd;\n}\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .custom-control-label::before,\n .custom-file-label,\n .custom-select {\n transition: none;\n }\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #6c757d;\n pointer-events: none;\n cursor: default;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n}\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: flex;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: flex;\n flex: 1 0 0%;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: flex;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-top,\n .card-group > .card:not(:last-child) .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-bottom,\n .card-group > .card:not(:last-child) .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-top,\n .card-group > .card:not(:first-child) .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-bottom,\n .card-group > .card:not(:first-child) .card-footer {\n border-bottom-left-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n orphans: 1;\n widows: 1;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.accordion > .card {\n overflow: hidden;\n}\n\n.accordion > .card:not(:first-of-type) .card-header:first-child {\n border-radius: 0;\n}\n\n.accordion > .card:not(:first-of-type):not(:last-of-type) {\n border-bottom: 0;\n border-radius: 0;\n}\n\n.accordion > .card:first-of-type {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.accordion > .card:last-of-type {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.accordion > .card .card-header {\n margin-bottom: -1px;\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n color: #6c757d;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6;\n}\n\n.page-link:hover {\n z-index: 2;\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.page-link:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .badge {\n transition: none;\n }\n}\n\na.badge:hover, a.badge:focus {\n text-decoration: none;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem;\n}\n\n.badge-primary {\n color: #fff;\n background-color: #007bff;\n}\n\na.badge-primary:hover, a.badge-primary:focus {\n color: #fff;\n background-color: #0062cc;\n}\n\na.badge-primary:focus, a.badge-primary.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.badge-secondary {\n color: #fff;\n background-color: #6c757d;\n}\n\na.badge-secondary:hover, a.badge-secondary:focus {\n color: #fff;\n background-color: #545b62;\n}\n\na.badge-secondary:focus, a.badge-secondary.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.badge-success {\n color: #fff;\n background-color: #28a745;\n}\n\na.badge-success:hover, a.badge-success:focus {\n color: #fff;\n background-color: #1e7e34;\n}\n\na.badge-success:focus, a.badge-success.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.badge-info {\n color: #fff;\n background-color: #17a2b8;\n}\n\na.badge-info:hover, a.badge-info:focus {\n color: #fff;\n background-color: #117a8b;\n}\n\na.badge-info:focus, a.badge-info.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.badge-warning {\n color: #212529;\n background-color: #ffc107;\n}\n\na.badge-warning:hover, a.badge-warning:focus {\n color: #212529;\n background-color: #d39e00;\n}\n\na.badge-warning:focus, a.badge-warning.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.badge-danger {\n color: #fff;\n background-color: #dc3545;\n}\n\na.badge-danger:hover, a.badge-danger:focus {\n color: #fff;\n background-color: #bd2130;\n}\n\na.badge-danger:focus, a.badge-danger.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa;\n}\n\na.badge-light:hover, a.badge-light:focus {\n color: #212529;\n background-color: #dae0e5;\n}\n\na.badge-light:focus, a.badge-light.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.badge-dark {\n color: #fff;\n background-color: #343a40;\n}\n\na.badge-dark:hover, a.badge-dark:focus {\n color: #fff;\n background-color: #1d2124;\n}\n\na.badge-dark:focus, a.badge-dark.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem;\n}\n\n@media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem;\n }\n}\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0;\n}\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 4rem;\n}\n\n.alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit;\n}\n\n.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n\n.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.alert-primary .alert-link {\n color: #002752;\n}\n\n.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n}\n\n.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.alert-secondary .alert-link {\n color: #202326;\n}\n\n.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n}\n\n.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.alert-success .alert-link {\n color: #0b2e13;\n}\n\n.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n}\n\n.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.alert-info .alert-link {\n color: #062c33;\n}\n\n.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n}\n\n.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.alert-warning .alert-link {\n color: #533f03;\n}\n\n.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n\n.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.alert-danger .alert-link {\n color: #491217;\n}\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n\n.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.alert-light .alert-link {\n color: #686868;\n}\n\n.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n}\n\n.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n.alert-dark .alert-link {\n color: #040505;\n}\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #007bff;\n transition: width 0.6s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none;\n }\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n animation: progress-bar-stripes 1s linear infinite;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .progress-bar-animated {\n animation: none;\n }\n}\n\n.media {\n display: flex;\n align-items: flex-start;\n}\n\n.media-body {\n flex: 1;\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n\n.list-group-item-action:hover, .list-group-item-action:focus {\n z-index: 1;\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.list-group-horizontal {\n flex-direction: row;\n}\n\n.list-group-horizontal .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n}\n\n.list-group-horizontal .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n}\n\n.list-group-horizontal .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n}\n\n@media (min-width: 576px) {\n .list-group-horizontal-sm {\n flex-direction: row;\n }\n .list-group-horizontal-sm .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-sm .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-sm .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n@media (min-width: 768px) {\n .list-group-horizontal-md {\n flex-direction: row;\n }\n .list-group-horizontal-md .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-md .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-md .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n@media (min-width: 992px) {\n .list-group-horizontal-lg {\n flex-direction: row;\n }\n .list-group-horizontal-lg .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-lg .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-lg .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .list-group-horizontal-xl {\n flex-direction: row;\n }\n .list-group-horizontal-xl .list-group-item {\n margin-right: -1px;\n margin-bottom: 0;\n }\n .list-group-horizontal-xl .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xl .list-group-item:last-child {\n margin-right: 0;\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n}\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.list-group-flush .list-group-item:last-child {\n margin-bottom: -1px;\n}\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0;\n}\n\n.list-group-flush:last-child .list-group-item:last-child {\n margin-bottom: 0;\n border-bottom: 0;\n}\n\n.list-group-item-primary {\n color: #004085;\n background-color: #b8daff;\n}\n\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #004085;\n background-color: #9fcdff;\n}\n\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #004085;\n border-color: #004085;\n}\n\n.list-group-item-secondary {\n color: #383d41;\n background-color: #d6d8db;\n}\n\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #383d41;\n background-color: #c8cbcf;\n}\n\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #383d41;\n border-color: #383d41;\n}\n\n.list-group-item-success {\n color: #155724;\n background-color: #c3e6cb;\n}\n\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #155724;\n background-color: #b1dfbb;\n}\n\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #155724;\n border-color: #155724;\n}\n\n.list-group-item-info {\n color: #0c5460;\n background-color: #bee5eb;\n}\n\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #0c5460;\n background-color: #abdde5;\n}\n\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #0c5460;\n border-color: #0c5460;\n}\n\n.list-group-item-warning {\n color: #856404;\n background-color: #ffeeba;\n}\n\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #856404;\n background-color: #ffe8a1;\n}\n\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #856404;\n border-color: #856404;\n}\n\n.list-group-item-danger {\n color: #721c24;\n background-color: #f5c6cb;\n}\n\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #721c24;\n background-color: #f1b0b7;\n}\n\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #721c24;\n border-color: #721c24;\n}\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe;\n}\n\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #818182;\n background-color: #ececf6;\n}\n\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #818182;\n border-color: #818182;\n}\n\n.list-group-item-dark {\n color: #1b1e21;\n background-color: #c6c8ca;\n}\n\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #1b1e21;\n background-color: #b9bbbe;\n}\n\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #1b1e21;\n border-color: #1b1e21;\n}\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5;\n}\n\n.close:hover {\n color: #000;\n text-decoration: none;\n}\n\n.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {\n opacity: .75;\n}\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n appearance: none;\n}\n\na.close.disabled {\n pointer-events: none;\n}\n\n.toast {\n max-width: 350px;\n overflow: hidden;\n font-size: 0.875rem;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.1);\n box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);\n backdrop-filter: blur(10px);\n opacity: 0;\n border-radius: 0.25rem;\n}\n\n.toast:not(:last-child) {\n margin-bottom: 0.75rem;\n}\n\n.toast.showing {\n opacity: 1;\n}\n\n.toast.show {\n display: block;\n opacity: 1;\n}\n\n.toast.hide {\n display: none;\n}\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: 0.25rem 0.75rem;\n color: #6c757d;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n}\n\n.toast-body {\n padding: 0.75rem;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1050;\n display: none;\n width: 100%;\n height: 100%;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -50px);\n}\n\n@media (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none;\n }\n}\n\n.modal.show .modal-dialog {\n transform: none;\n}\n\n.modal-dialog-scrollable {\n display: flex;\n max-height: calc(100% - 1rem);\n}\n\n.modal-dialog-scrollable .modal-content {\n max-height: calc(100vh - 1rem);\n overflow: hidden;\n}\n\n.modal-dialog-scrollable .modal-header,\n.modal-dialog-scrollable .modal-footer {\n flex-shrink: 0;\n}\n\n.modal-dialog-scrollable .modal-body {\n overflow-y: auto;\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - 1rem);\n}\n\n.modal-dialog-centered::before {\n display: block;\n height: calc(100vh - 1rem);\n content: \"\";\n}\n\n.modal-dialog-centered.modal-dialog-scrollable {\n flex-direction: column;\n justify-content: center;\n height: 100%;\n}\n\n.modal-dialog-centered.modal-dialog-scrollable .modal-content {\n max-height: none;\n}\n\n.modal-dialog-centered.modal-dialog-scrollable::before {\n content: none;\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1040;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 1rem 1rem;\n border-bottom: 1px solid #dee2e6;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem;\n}\n\n.modal-header .close {\n padding: 1rem 1rem;\n margin: -1rem -1rem -1rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n padding: 1rem;\n border-top: 1px solid #dee2e6;\n border-bottom-right-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.modal-footer > :not(:first-child) {\n margin-left: .25rem;\n}\n\n.modal-footer > :not(:last-child) {\n margin-right: .25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-scrollable {\n max-height: calc(100% - 3.5rem);\n }\n .modal-dialog-scrollable .modal-content {\n max-height: calc(100vh - 3.5rem);\n }\n .modal-dialog-centered {\n min-height: calc(100% - 3.5rem);\n }\n .modal-dialog-centered::before {\n height: calc(100vh - 3.5rem);\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg,\n .modal-xl {\n max-width: 800px;\n }\n}\n\n@media (min-width: 1200px) {\n .modal-xl {\n max-width: 1140px;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n\n.popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem;\n}\n\n.popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem;\n}\n\n.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=\"top\"] > .arrow {\n bottom: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=\"top\"] > .arrow::before {\n bottom: 0;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=\"top\"] > .arrow::after {\n bottom: 1px;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: #fff;\n}\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem;\n}\n\n.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=\"right\"] > .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=\"right\"] > .arrow::before {\n left: 0;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=\"right\"] > .arrow::after {\n left: 1px;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem;\n}\n\n.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow {\n top: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow::before {\n top: 0;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow::after {\n top: 1px;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7;\n}\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem;\n}\n\n.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=\"left\"] > .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=\"left\"] > .arrow::before {\n right: 0;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=\"left\"] > .arrow::after {\n right: 1px;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-inner::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n backface-visibility: hidden;\n transition: transform 0.6s ease-in-out;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-item {\n transition: none;\n }\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n.carousel-item-next:not(.carousel-item-left),\n.active.carousel-item-right {\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-right),\n.active.carousel-item-left {\n transform: translateX(-100%);\n}\n\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none;\n}\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-left,\n.carousel-fade .carousel-item-prev.carousel-item-right {\n z-index: 1;\n opacity: 1;\n}\n\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-right {\n z-index: 0;\n opacity: 0;\n transition: 0s 0.6s opacity;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-fade .active.carousel-item-left,\n .carousel-fade .active.carousel-item-right {\n transition: none;\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n transition: opacity 0.15s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n .carousel-control-next {\n transition: none;\n }\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: 0.9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: no-repeat 50% / 100% 100%;\n}\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 15;\n display: flex;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators li {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #fff;\n background-clip: padding-box;\n border-top: 10px solid transparent;\n border-bottom: 10px solid transparent;\n opacity: .5;\n transition: opacity 0.6s ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .carousel-indicators li {\n transition: none;\n }\n}\n\n.carousel-indicators .active {\n opacity: 1;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n}\n\n@keyframes spinner-border {\n to {\n transform: rotate(360deg);\n }\n}\n\n.spinner-border {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n border: 0.25em solid currentColor;\n border-right-color: transparent;\n border-radius: 50%;\n animation: spinner-border .75s linear infinite;\n}\n\n.spinner-border-sm {\n width: 1rem;\n height: 1rem;\n border-width: 0.2em;\n}\n\n@keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n }\n}\n\n.spinner-grow {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n background-color: currentColor;\n border-radius: 50%;\n opacity: 0;\n animation: spinner-grow .75s linear infinite;\n}\n\n.spinner-grow-sm {\n width: 1rem;\n height: 1rem;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.bg-primary {\n background-color: #007bff !important;\n}\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n background-color: #0062cc !important;\n}\n\n.bg-secondary {\n background-color: #6c757d !important;\n}\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #545b62 !important;\n}\n\n.bg-success {\n background-color: #28a745 !important;\n}\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n background-color: #1e7e34 !important;\n}\n\n.bg-info {\n background-color: #17a2b8 !important;\n}\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n background-color: #117a8b !important;\n}\n\n.bg-warning {\n background-color: #ffc107 !important;\n}\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n background-color: #d39e00 !important;\n}\n\n.bg-danger {\n background-color: #dc3545 !important;\n}\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n background-color: #bd2130 !important;\n}\n\n.bg-light {\n background-color: #f8f9fa !important;\n}\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #dae0e5 !important;\n}\n\n.bg-dark {\n background-color: #343a40 !important;\n}\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n background-color: #1d2124 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-right {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-left {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-right-0 {\n border-right: 0 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-left-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #007bff !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #28a745 !important;\n}\n\n.border-info {\n border-color: #17a2b8 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #343a40 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.rounded-sm {\n border-radius: 0.2rem !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-lg {\n border-radius: 0.3rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-pill {\n border-radius: 50rem !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.d-none {\n display: none !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media print {\n .d-print-none {\n display: none !important;\n }\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n}\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden;\n}\n\n.embed-responsive::before {\n display: block;\n content: \"\";\n}\n\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n\n.embed-responsive-21by9::before {\n padding-top: 42.857143%;\n}\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%;\n}\n\n.embed-responsive-4by3::before {\n padding-top: 75%;\n}\n\n.embed-responsive-1by1::before {\n padding-top: 100%;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n}\n\n.float-left {\n float: left !important;\n}\n\n.float-right {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important;\n }\n .float-sm-right {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important;\n }\n .float-md-right {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important;\n }\n .float-lg-right {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important;\n }\n .float-xl-right {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: sticky !important;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n@supports (position: sticky) {\n .sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n pointer-events: auto;\n content: \"\";\n background-color: rgba(0, 0, 0, 0);\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important;\n}\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important;\n}\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important;\n}\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important;\n}\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important;\n}\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.mt-2,\n.my-2 {\n margin-top: 0.5rem !important;\n}\n\n.mr-2,\n.mx-2 {\n margin-right: 0.5rem !important;\n}\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.ml-2,\n.mx-2 {\n margin-left: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important;\n}\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important;\n}\n\n.mb-3,\n.my-3 {\n margin-bottom: 1rem !important;\n}\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important;\n}\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important;\n}\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important;\n}\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important;\n}\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important;\n}\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important;\n}\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important;\n}\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important;\n}\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important;\n}\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important;\n}\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important;\n}\n\n.pr-2,\n.px-2 {\n padding-right: 0.5rem !important;\n}\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pl-2,\n.px-2 {\n padding-left: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important;\n}\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important;\n}\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important;\n}\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important;\n}\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important;\n}\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important;\n}\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important;\n}\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important;\n}\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important;\n}\n\n.m-n1 {\n margin: -0.25rem !important;\n}\n\n.mt-n1,\n.my-n1 {\n margin-top: -0.25rem !important;\n}\n\n.mr-n1,\n.mx-n1 {\n margin-right: -0.25rem !important;\n}\n\n.mb-n1,\n.my-n1 {\n margin-bottom: -0.25rem !important;\n}\n\n.ml-n1,\n.mx-n1 {\n margin-left: -0.25rem !important;\n}\n\n.m-n2 {\n margin: -0.5rem !important;\n}\n\n.mt-n2,\n.my-n2 {\n margin-top: -0.5rem !important;\n}\n\n.mr-n2,\n.mx-n2 {\n margin-right: -0.5rem !important;\n}\n\n.mb-n2,\n.my-n2 {\n margin-bottom: -0.5rem !important;\n}\n\n.ml-n2,\n.mx-n2 {\n margin-left: -0.5rem !important;\n}\n\n.m-n3 {\n margin: -1rem !important;\n}\n\n.mt-n3,\n.my-n3 {\n margin-top: -1rem !important;\n}\n\n.mr-n3,\n.mx-n3 {\n margin-right: -1rem !important;\n}\n\n.mb-n3,\n.my-n3 {\n margin-bottom: -1rem !important;\n}\n\n.ml-n3,\n.mx-n3 {\n margin-left: -1rem !important;\n}\n\n.m-n4 {\n margin: -1.5rem !important;\n}\n\n.mt-n4,\n.my-n4 {\n margin-top: -1.5rem !important;\n}\n\n.mr-n4,\n.mx-n4 {\n margin-right: -1.5rem !important;\n}\n\n.mb-n4,\n.my-n4 {\n margin-bottom: -1.5rem !important;\n}\n\n.ml-n4,\n.mx-n4 {\n margin-left: -1.5rem !important;\n}\n\n.m-n5 {\n margin: -3rem !important;\n}\n\n.mt-n5,\n.my-n5 {\n margin-top: -3rem !important;\n}\n\n.mr-n5,\n.mx-n5 {\n margin-right: -3rem !important;\n}\n\n.mb-n5,\n.my-n5 {\n margin-bottom: -3rem !important;\n}\n\n.ml-n5,\n.mx-n5 {\n margin-left: -3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important;\n}\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important;\n}\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important;\n}\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important;\n}\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important;\n }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important;\n }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important;\n }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important;\n }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important;\n }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important;\n }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important;\n }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important;\n }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important;\n }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important;\n }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important;\n }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important;\n }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important;\n }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important;\n }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important;\n }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important;\n }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important;\n }\n .m-sm-n1 {\n margin: -0.25rem !important;\n }\n .mt-sm-n1,\n .my-sm-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-sm-n1,\n .mx-sm-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-sm-n1,\n .my-sm-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-sm-n1,\n .mx-sm-n1 {\n margin-left: -0.25rem !important;\n }\n .m-sm-n2 {\n margin: -0.5rem !important;\n }\n .mt-sm-n2,\n .my-sm-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-sm-n2,\n .mx-sm-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-sm-n2,\n .my-sm-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-sm-n2,\n .mx-sm-n2 {\n margin-left: -0.5rem !important;\n }\n .m-sm-n3 {\n margin: -1rem !important;\n }\n .mt-sm-n3,\n .my-sm-n3 {\n margin-top: -1rem !important;\n }\n .mr-sm-n3,\n .mx-sm-n3 {\n margin-right: -1rem !important;\n }\n .mb-sm-n3,\n .my-sm-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-sm-n3,\n .mx-sm-n3 {\n margin-left: -1rem !important;\n }\n .m-sm-n4 {\n margin: -1.5rem !important;\n }\n .mt-sm-n4,\n .my-sm-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-sm-n4,\n .mx-sm-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-sm-n4,\n .my-sm-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-sm-n4,\n .mx-sm-n4 {\n margin-left: -1.5rem !important;\n }\n .m-sm-n5 {\n margin: -3rem !important;\n }\n .mt-sm-n5,\n .my-sm-n5 {\n margin-top: -3rem !important;\n }\n .mr-sm-n5,\n .mx-sm-n5 {\n margin-right: -3rem !important;\n }\n .mb-sm-n5,\n .my-sm-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-sm-n5,\n .mx-sm-n5 {\n margin-left: -3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important;\n }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important;\n }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important;\n }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important;\n }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important;\n }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important;\n }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important;\n }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important;\n }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important;\n }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important;\n }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important;\n }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important;\n }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important;\n }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important;\n }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important;\n }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important;\n }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important;\n }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important;\n }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important;\n }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important;\n }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important;\n }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important;\n }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important;\n }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important;\n }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important;\n }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important;\n }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important;\n }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important;\n }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important;\n }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important;\n }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important;\n }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important;\n }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important;\n }\n .m-md-n1 {\n margin: -0.25rem !important;\n }\n .mt-md-n1,\n .my-md-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-md-n1,\n .mx-md-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-md-n1,\n .my-md-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-md-n1,\n .mx-md-n1 {\n margin-left: -0.25rem !important;\n }\n .m-md-n2 {\n margin: -0.5rem !important;\n }\n .mt-md-n2,\n .my-md-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-md-n2,\n .mx-md-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-md-n2,\n .my-md-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-md-n2,\n .mx-md-n2 {\n margin-left: -0.5rem !important;\n }\n .m-md-n3 {\n margin: -1rem !important;\n }\n .mt-md-n3,\n .my-md-n3 {\n margin-top: -1rem !important;\n }\n .mr-md-n3,\n .mx-md-n3 {\n margin-right: -1rem !important;\n }\n .mb-md-n3,\n .my-md-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-md-n3,\n .mx-md-n3 {\n margin-left: -1rem !important;\n }\n .m-md-n4 {\n margin: -1.5rem !important;\n }\n .mt-md-n4,\n .my-md-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-md-n4,\n .mx-md-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-md-n4,\n .my-md-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-md-n4,\n .mx-md-n4 {\n margin-left: -1.5rem !important;\n }\n .m-md-n5 {\n margin: -3rem !important;\n }\n .mt-md-n5,\n .my-md-n5 {\n margin-top: -3rem !important;\n }\n .mr-md-n5,\n .mx-md-n5 {\n margin-right: -3rem !important;\n }\n .mb-md-n5,\n .my-md-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-md-n5,\n .mx-md-n5 {\n margin-left: -3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important;\n }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important;\n }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important;\n }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important;\n }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important;\n }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important;\n }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important;\n }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important;\n }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important;\n }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important;\n }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important;\n }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important;\n }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important;\n }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important;\n }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important;\n }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important;\n }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important;\n }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important;\n }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important;\n }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important;\n }\n .m-lg-n1 {\n margin: -0.25rem !important;\n }\n .mt-lg-n1,\n .my-lg-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-lg-n1,\n .mx-lg-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-lg-n1,\n .my-lg-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-lg-n1,\n .mx-lg-n1 {\n margin-left: -0.25rem !important;\n }\n .m-lg-n2 {\n margin: -0.5rem !important;\n }\n .mt-lg-n2,\n .my-lg-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-lg-n2,\n .mx-lg-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-lg-n2,\n .my-lg-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-lg-n2,\n .mx-lg-n2 {\n margin-left: -0.5rem !important;\n }\n .m-lg-n3 {\n margin: -1rem !important;\n }\n .mt-lg-n3,\n .my-lg-n3 {\n margin-top: -1rem !important;\n }\n .mr-lg-n3,\n .mx-lg-n3 {\n margin-right: -1rem !important;\n }\n .mb-lg-n3,\n .my-lg-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-lg-n3,\n .mx-lg-n3 {\n margin-left: -1rem !important;\n }\n .m-lg-n4 {\n margin: -1.5rem !important;\n }\n .mt-lg-n4,\n .my-lg-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-lg-n4,\n .mx-lg-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-lg-n4,\n .my-lg-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-lg-n4,\n .mx-lg-n4 {\n margin-left: -1.5rem !important;\n }\n .m-lg-n5 {\n margin: -3rem !important;\n }\n .mt-lg-n5,\n .my-lg-n5 {\n margin-top: -3rem !important;\n }\n .mr-lg-n5,\n .mx-lg-n5 {\n margin-right: -3rem !important;\n }\n .mb-lg-n5,\n .my-lg-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-lg-n5,\n .mx-lg-n5 {\n margin-left: -3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important;\n }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important;\n }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important;\n }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important;\n }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important;\n }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important;\n }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important;\n }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important;\n }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important;\n }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important;\n }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important;\n }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important;\n }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important;\n }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important;\n }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important;\n }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important;\n }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important;\n }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important;\n }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important;\n }\n .m-xl-n1 {\n margin: -0.25rem !important;\n }\n .mt-xl-n1,\n .my-xl-n1 {\n margin-top: -0.25rem !important;\n }\n .mr-xl-n1,\n .mx-xl-n1 {\n margin-right: -0.25rem !important;\n }\n .mb-xl-n1,\n .my-xl-n1 {\n margin-bottom: -0.25rem !important;\n }\n .ml-xl-n1,\n .mx-xl-n1 {\n margin-left: -0.25rem !important;\n }\n .m-xl-n2 {\n margin: -0.5rem !important;\n }\n .mt-xl-n2,\n .my-xl-n2 {\n margin-top: -0.5rem !important;\n }\n .mr-xl-n2,\n .mx-xl-n2 {\n margin-right: -0.5rem !important;\n }\n .mb-xl-n2,\n .my-xl-n2 {\n margin-bottom: -0.5rem !important;\n }\n .ml-xl-n2,\n .mx-xl-n2 {\n margin-left: -0.5rem !important;\n }\n .m-xl-n3 {\n margin: -1rem !important;\n }\n .mt-xl-n3,\n .my-xl-n3 {\n margin-top: -1rem !important;\n }\n .mr-xl-n3,\n .mx-xl-n3 {\n margin-right: -1rem !important;\n }\n .mb-xl-n3,\n .my-xl-n3 {\n margin-bottom: -1rem !important;\n }\n .ml-xl-n3,\n .mx-xl-n3 {\n margin-left: -1rem !important;\n }\n .m-xl-n4 {\n margin: -1.5rem !important;\n }\n .mt-xl-n4,\n .my-xl-n4 {\n margin-top: -1.5rem !important;\n }\n .mr-xl-n4,\n .mx-xl-n4 {\n margin-right: -1.5rem !important;\n }\n .mb-xl-n4,\n .my-xl-n4 {\n margin-bottom: -1.5rem !important;\n }\n .ml-xl-n4,\n .mx-xl-n4 {\n margin-left: -1.5rem !important;\n }\n .m-xl-n5 {\n margin: -3rem !important;\n }\n .mt-xl-n5,\n .my-xl-n5 {\n margin-top: -3rem !important;\n }\n .mr-xl-n5,\n .mx-xl-n5 {\n margin-right: -3rem !important;\n }\n .mb-xl-n5,\n .my-xl-n5 {\n margin-bottom: -3rem !important;\n }\n .ml-xl-n5,\n .mx-xl-n5 {\n margin-left: -3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important;\n }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important;\n }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important;\n }\n}\n\n.text-monospace {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !important;\n}\n\n.text-justify {\n text-align: justify !important;\n}\n\n.text-wrap {\n white-space: normal !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.text-left {\n text-align: left !important;\n}\n\n.text-right {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important;\n }\n .text-sm-right {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important;\n }\n .text-md-right {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important;\n }\n .text-lg-right {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important;\n }\n .text-xl-right {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.font-weight-light {\n font-weight: 300 !important;\n}\n\n.font-weight-lighter {\n font-weight: lighter !important;\n}\n\n.font-weight-normal {\n font-weight: 400 !important;\n}\n\n.font-weight-bold {\n font-weight: 700 !important;\n}\n\n.font-weight-bolder {\n font-weight: bolder !important;\n}\n\n.font-italic {\n font-style: italic !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-primary {\n color: #007bff !important;\n}\n\na.text-primary:hover, a.text-primary:focus {\n color: #0056b3 !important;\n}\n\n.text-secondary {\n color: #6c757d !important;\n}\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #494f54 !important;\n}\n\n.text-success {\n color: #28a745 !important;\n}\n\na.text-success:hover, a.text-success:focus {\n color: #19692c !important;\n}\n\n.text-info {\n color: #17a2b8 !important;\n}\n\na.text-info:hover, a.text-info:focus {\n color: #0f6674 !important;\n}\n\n.text-warning {\n color: #ffc107 !important;\n}\n\na.text-warning:hover, a.text-warning:focus {\n color: #ba8b00 !important;\n}\n\n.text-danger {\n color: #dc3545 !important;\n}\n\na.text-danger:hover, a.text-danger:focus {\n color: #a71d2a !important;\n}\n\n.text-light {\n color: #f8f9fa !important;\n}\n\na.text-light:hover, a.text-light:focus {\n color: #cbd3da !important;\n}\n\n.text-dark {\n color: #343a40 !important;\n}\n\na.text-dark:hover, a.text-dark:focus {\n color: #121416 !important;\n}\n\n.text-body {\n color: #212529 !important;\n}\n\n.text-muted {\n color: #6c757d !important;\n}\n\n.text-black-50 {\n color: rgba(0, 0, 0, 0.5) !important;\n}\n\n.text-white-50 {\n color: rgba(255, 255, 255, 0.5) !important;\n}\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n.text-decoration-none {\n text-decoration: none !important;\n}\n\n.text-break {\n word-break: break-word !important;\n overflow-wrap: break-word !important;\n}\n\n.text-reset {\n color: inherit !important;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important;\n }\n a:not(.btn) {\n text-decoration: underline;\n }\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n pre {\n white-space: pre-wrap !important;\n }\n pre,\n blockquote {\n border: 1px solid #adb5bd;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n @page {\n size: a3;\n }\n body {\n min-width: 992px !important;\n }\n .container {\n min-width: 992px !important;\n }\n .navbar {\n display: none;\n }\n .badge {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #dee2e6 !important;\n }\n .table-dark {\n color: inherit;\n }\n .table-dark th,\n .table-dark td,\n .table-dark thead th,\n .table-dark tbody + tbody {\n border-color: #dee2e6;\n }\n .table .thead-dark th {\n color: inherit;\n border-color: #dee2e6;\n }\n}\n\n/*# sourceMappingURL=bootstrap.css.map */","// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover {\n &:hover { @content; }\n}\n\n@mixin hover-focus {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n","// stylelint-disable declaration-no-important, selector-list-comma-newline-after\n\n//\n// Headings\n//\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { @include font-size($h1-font-size); }\nh2, .h2 { @include font-size($h2-font-size); }\nh3, .h3 { @include font-size($h3-font-size); }\nh4, .h4 { @include font-size($h4-font-size); }\nh5, .h5 { @include font-size($h5-font-size); }\nh6, .h6 { @include font-size($h6-font-size); }\n\n.lead {\n @include font-size($lead-font-size);\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n @include font-size($display1-size);\n font-weight: $display1-weight;\n line-height: $display-line-height;\n}\n.display-2 {\n @include font-size($display2-size);\n font-weight: $display2-weight;\n line-height: $display-line-height;\n}\n.display-3 {\n @include font-size($display3-size);\n font-weight: $display3-weight;\n line-height: $display-line-height;\n}\n.display-4 {\n @include font-size($display4-size);\n font-weight: $display4-weight;\n line-height: $display-line-height;\n}\n\n\n//\n// Horizontal rules\n//\n\nhr {\n margin-top: $hr-margin-y;\n margin-bottom: $hr-margin-y;\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n}\n\n\n//\n// Emphasis\n//\n\nsmall,\n.small {\n @include font-size($small-font-size);\n font-weight: $font-weight-normal;\n}\n\nmark,\n.mark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled;\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n @include font-size(90%);\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $spacer;\n @include font-size($blockquote-font-size);\n}\n\n.blockquote-footer {\n display: block;\n @include font-size($blockquote-small-font-size);\n color: $blockquote-small-color;\n\n &::before {\n content: \"\\2014\\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all ``s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid;\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid;\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: $spacer / 2;\n line-height: 1;\n}\n\n.figure-caption {\n @include font-size($figure-caption-font-size);\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n background-image: url($file-1x);\n\n // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n // but doesn't convert dppx=>dpi.\n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n only screen and (min-resolution: 2dppx) { // Standardized\n background-image: url($file-2x);\n background-size: $width-1x $height-1x;\n }\n @include deprecate(\"`img-retina()`\", \"v4.3.0\", \"v5\");\n}\n","// stylelint-disable property-blacklist\n// Single side border-radius\n\n@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {\n @if $enable-rounded {\n border-radius: $radius;\n }\n @else if $fallback-border-radius != false {\n border-radius: $fallback-border-radius;\n }\n}\n\n@mixin border-top-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-top-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n }\n}\n\n@mixin border-top-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-right-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-left-radius($radius) {\n @if $enable-rounded {\n border-bottom-left-radius: $radius;\n }\n}\n","// Inline code\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-break: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n @include box-shadow($kbd-box-shadow);\n\n kbd {\n padding: 0;\n @include font-size(100%);\n font-weight: $nested-kbd-font-weight;\n @include box-shadow(none);\n }\n}\n\n// Blocks of code\npre {\n display: block;\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: $pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container($gutter: $grid-gutter-width) {\n width: 100%;\n padding-right: $gutter / 2;\n padding-left: $gutter / 2;\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row($gutter: $grid-gutter-width) {\n display: flex;\n flex-wrap: wrap;\n margin-right: -$gutter / 2;\n margin-left: -$gutter / 2;\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n padding-right: $gutter / 2;\n padding-left: $gutter / 2;\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n != null and $n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name, $breakpoints) {\n @content;\n }\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n padding-right: $gutter / 2;\n padding-left: $gutter / 2;\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first { order: -1; }\n\n .order#{$infix}-last { order: $columns + 1; }\n\n @for $i from 0 through $columns {\n .order#{$infix}-#{$i} { order: $i; }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n width: 100%;\n margin-bottom: $spacer;\n color: $table-color;\n background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n th,\n td {\n padding: $table-cell-padding;\n vertical-align: top;\n border-top: $table-border-width solid $table-border-color;\n }\n\n thead th {\n vertical-align: bottom;\n border-bottom: (2 * $table-border-width) solid $table-border-color;\n }\n\n tbody + tbody {\n border-top: (2 * $table-border-width) solid $table-border-color;\n }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n th,\n td {\n padding: $table-cell-padding-sm;\n }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n\n.table-bordered {\n border: $table-border-width solid $table-border-color;\n\n th,\n td {\n border: $table-border-width solid $table-border-color;\n }\n\n thead {\n th,\n td {\n border-bottom-width: 2 * $table-border-width;\n }\n }\n}\n\n.table-borderless {\n th,\n td,\n thead th,\n tbody + tbody {\n border: 0;\n }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n tbody tr:nth-of-type(#{$table-striped-order}) {\n background-color: $table-accent-bg;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n tbody tr {\n @include hover {\n color: $table-hover-color;\n background-color: $table-hover-bg;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n@each $color, $value in $theme-colors {\n @include table-row-variant($color, theme-color-level($color, $table-bg-level), theme-color-level($color, $table-border-level));\n}\n\n@include table-row-variant(active, $table-active-bg);\n\n\n// Dark styles\n//\n// Same table markup, but inverted color scheme: dark background and light text.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.table {\n .thead-dark {\n th {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n border-color: $table-dark-border-color;\n }\n }\n\n .thead-light {\n th {\n color: $table-head-color;\n background-color: $table-head-bg;\n border-color: $table-border-color;\n }\n }\n}\n\n.table-dark {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n\n th,\n td,\n thead th {\n border-color: $table-dark-border-color;\n }\n\n &.table-bordered {\n border: 0;\n }\n\n &.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-dark-accent-bg;\n }\n }\n\n &.table-hover {\n tbody tr {\n @include hover {\n color: $table-dark-hover-color;\n background-color: $table-dark-hover-bg;\n }\n }\n }\n}\n\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n.table-responsive {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n &#{$infix} {\n @include media-breakpoint-down($breakpoint) {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n\n // Prevent double border on horizontal scroll due to use of `display: block;`\n > .table-bordered {\n border: 0;\n }\n }\n }\n }\n}\n","// Tables\n\n@mixin table-row-variant($state, $background, $border: null) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table-#{$state} {\n &,\n > th,\n > td {\n background-color: $background;\n }\n\n @if $border != null {\n th,\n td,\n thead th,\n tbody + tbody {\n border-color: $border;\n }\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover {\n $hover-background: darken($background, 5%);\n\n .table-#{$state} {\n @include hover {\n background-color: $hover-background;\n\n > td,\n > th {\n background-color: $hover-background;\n }\n }\n }\n }\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Textual form controls\n//\n\n.form-control {\n display: block;\n width: 100%;\n height: $input-height;\n padding: $input-padding-y $input-padding-x;\n font-family: $input-font-family;\n @include font-size($input-font-size);\n font-weight: $input-font-weight;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n\n // Note: This has no effect on `s in CSS.\n @include border-radius($input-border-radius, 0);\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n // Unstyle the caret on ` receives focus\n // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to\n // match the appearance of the native widget.\n // See https://github.com/twbs/bootstrap/issues/19398.\n color: $input-color;\n background-color: $input-bg;\n }\n}\n\n// Make file inputs better match text inputs by forcing them to new lines.\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n\n//\n// Labels\n//\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: calc(#{$input-padding-y} + #{$input-border-width});\n padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});\n margin-bottom: 0; // Override the `