First commit
Send all results
This commit is contained in:
233
Tests/Program.cs
Normal file
233
Tests/Program.cs
Normal file
@@ -0,0 +1,233 @@
|
||||
using ICSharpCode.SharpZipLib.GZip;
|
||||
using ICSharpCode.SharpZipLib.Tar;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using DataClients;
|
||||
using System.Threading.Tasks;
|
||||
using System.Threading;
|
||||
using System.Linq;
|
||||
using Mailing;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Tests
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
test7();
|
||||
}
|
||||
static void test1()
|
||||
{
|
||||
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
||||
var enc = Encoding.GetEncoding(866);
|
||||
var filec = new FileClient();
|
||||
var test = filec.GetFile(DateTime.Now.AddDays(-46), 34, 0);
|
||||
//var netc = new NetClient();
|
||||
//var test = netc.SocketWork(NetClient.Cmd.download_nh, "20200707.230");
|
||||
//var netc = new NetClient();
|
||||
//var test = netc.SocketWork(NetClient.Cmd.user_flags);
|
||||
Console.WriteLine(BitConverter.ToString(test).Replace("-", " "));
|
||||
Console.WriteLine(enc.GetString(test));
|
||||
Console.ReadKey();
|
||||
}
|
||||
static void test2()
|
||||
{
|
||||
var a = new STPClient();
|
||||
var b = a.GetTechCycle(
|
||||
new DateTime(2020, 07, 1),
|
||||
new DateTime(2020, 07, 10),
|
||||
16);
|
||||
foreach (var e in b)
|
||||
Console.WriteLine(e.start.ToString(@"yyyy.MM.dd HH:mm:ss") + '\t' + Names.techCycle[(ushort)e.index]);
|
||||
|
||||
}
|
||||
static void test3()
|
||||
{
|
||||
var a = new STPClient();
|
||||
var b = a.GetAnalogDiscret(
|
||||
new DateTime(2020, 07, 14, 0, 0, 0),
|
||||
new DateTime(2020, 07, 14, 23, 59, 59),
|
||||
37);
|
||||
foreach (var c in b.di)
|
||||
{
|
||||
Console.WriteLine(Names.discretFull[c.Key]);
|
||||
foreach (var d in c.Value)
|
||||
Console.WriteLine(d.Item1.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + d.Item2.ToString());
|
||||
}
|
||||
foreach (var c in b.an)
|
||||
{
|
||||
Console.WriteLine(Names.discretFull[c.Key]);
|
||||
foreach (var d in c.Value)
|
||||
Console.WriteLine(d.Item1.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + d.Item2.ToString());
|
||||
}
|
||||
|
||||
Console.ReadKey();
|
||||
|
||||
}
|
||||
static void test4()
|
||||
{
|
||||
var a = new STPClient();
|
||||
var ts = new DateTime(2020, 07, 13, 0, 0, 0);
|
||||
var te = new DateTime(2020, 07, 13, 23, 59, 59);
|
||||
var totTime = new TimeSpan();
|
||||
for (ushort i = 1; i <= 50; i++)
|
||||
{
|
||||
var tc = a.GetTechCycle(ts, te, i);
|
||||
var ad = a.GetAnalogDiscret(ts, te, i);
|
||||
|
||||
Console.WriteLine("VDP " + i.ToString("D2"));
|
||||
|
||||
var totalVdpTime = new TimeSpan();
|
||||
foreach (var e in tc)
|
||||
{
|
||||
int[] chk1 = {
|
||||
(int)TechCycle.Operation.cooling_ingot,
|
||||
(int)TechCycle.Operation.cooling_reflow,
|
||||
(int)TechCycle.Operation.cooling_welding };
|
||||
int[] chk2 =
|
||||
{
|
||||
(int)TechCycle.Operation.end_tech_cycle,
|
||||
(int)TechCycle.Operation.unloading_loading,
|
||||
(int)TechCycle.Operation.looking_welding,
|
||||
(int)TechCycle.Operation.unloading_kit
|
||||
};
|
||||
if (!chk1.Contains((int)e.index) && !chk2.Contains((int)e.index))
|
||||
continue;
|
||||
if (chk1.Contains((int)e.index))
|
||||
{
|
||||
var test =
|
||||
(from l in ad.an[13]
|
||||
where l.Item1 >= e.start &&
|
||||
l.Item1 <= e.end &&
|
||||
l.Item2 >= 30
|
||||
select l).ToArray();
|
||||
if (test.Length == 0)
|
||||
continue;
|
||||
}
|
||||
|
||||
Tuple<DateTime, bool?> currstat = new Tuple<DateTime, bool?>(e.start, null);
|
||||
foreach (var d in ad.di[22])
|
||||
{
|
||||
if (
|
||||
currstat.Item1 <= e.end &&
|
||||
d.Item1 >= e.start &&
|
||||
currstat.Item2.HasValue &&
|
||||
currstat.Item2.Value
|
||||
)
|
||||
{
|
||||
var t1 = currstat.Item1 > e.start ? currstat.Item1 : e.start;
|
||||
var t2 = d.Item1 > e.end ? e.end : d.Item1;
|
||||
var res = t2 - t1;
|
||||
Console.Write(e.start.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t');
|
||||
Console.Write(Names.techCycle[(int)e.index] + '\t');
|
||||
Console.WriteLine(res.ToString(@"hh\:mm\:ss"));
|
||||
totalVdpTime = totalVdpTime.Add(res);
|
||||
}
|
||||
currstat = d;
|
||||
}
|
||||
}
|
||||
Console.WriteLine("Total VDP Time: " + totalVdpTime.ToString(@"hh\:mm\:ss"));
|
||||
totTime = totTime.Add(totalVdpTime);
|
||||
}
|
||||
Console.WriteLine("Total Time: " + totTime.ToString(@"hh\:mm\:ss"));
|
||||
Console.ReadKey();
|
||||
}
|
||||
static void test5()
|
||||
{
|
||||
var a = new STPClient();
|
||||
var i = DateTime.Now.AddDays(-1 * new Random().Next(10));
|
||||
Console.WriteLine(i.ToString());
|
||||
|
||||
var b = a.GetListPasport(i);
|
||||
foreach (var e in b)
|
||||
Console.WriteLine(e.Item1 + '\t' + e.Item2);
|
||||
Console.WriteLine();
|
||||
|
||||
var r = new Random().Next(b.Length);
|
||||
Console.WriteLine(b[r].Item1 + '\t' + b[r].Item2);
|
||||
|
||||
var p = a.GetPasport(b[r].Item2);
|
||||
Console.WriteLine(p.ToString());
|
||||
|
||||
}
|
||||
static void test6()
|
||||
{
|
||||
var a = new STPClient();
|
||||
var s = DateTime.Now.AddDays(-30);
|
||||
var e = DateTime.Now.AddDays(-20);
|
||||
var b = a.GetIshData(s, e, 37);
|
||||
Console.WriteLine(s.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + e.ToString(@"yyyy.MM.dd HH:mm:ss.ff"));
|
||||
foreach(var t in b)
|
||||
{
|
||||
Console.WriteLine(t.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + t.id.ToString("D2") + '\t' + t.value);
|
||||
}
|
||||
}
|
||||
|
||||
static void test7()
|
||||
{
|
||||
var w = new STPClient();
|
||||
var s = new DateTime(2020, 06, 1);
|
||||
var e = new DateTime(2020, 07, 22);
|
||||
var r1 = new List<Tuple<string, string>>();
|
||||
var r2 = new List<Pasport>();
|
||||
for (var i = s; i < e; i = i.AddDays(1))
|
||||
{
|
||||
var a = w.GetListPasport(i);
|
||||
foreach(var b in a)
|
||||
{
|
||||
var c = w.GetPasport(b.Item2);
|
||||
var d = w.GetIshData(c.time_start, c.time_end, c.numVDP);
|
||||
var flag = false;
|
||||
foreach(var f in d)
|
||||
{
|
||||
if (f.id != 0) continue;
|
||||
//Console.Write(f.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + b.Item1 + '\t' + f.value);
|
||||
Regex r = new Regex(@"(\w*)-(\w{3})-32-031(\w*)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
//Console.WriteLine('\t' + r.IsMatch(f.value).ToString());
|
||||
flag = flag || r.IsMatch(f.value);
|
||||
}
|
||||
if (flag)
|
||||
{
|
||||
r1.Add(b); r2.Add(c);
|
||||
Console.WriteLine(b.Item1 + '\t' +
|
||||
c.time_start.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' +
|
||||
c.time_end.ToString(@"yyyy.MM.dd HH:mm:ss.ff"));
|
||||
foreach (var f in d)
|
||||
{
|
||||
if (f.id != 0) continue;
|
||||
Console.WriteLine(f.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + f.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
var fs = new StreamWriter(Directory.GetCurrentDirectory() + '\\' + "result.txt");
|
||||
for(var i = 0; i < r1.Count; i++)
|
||||
{
|
||||
var a = w.GetProtectData(r2[i].time_start, r2[i].time_end, r2[i].numVDP);
|
||||
var b = new List<Protect>();
|
||||
foreach(var c in a)
|
||||
if (c.id == 72) b.Add(c);
|
||||
if (b.Count > 0)
|
||||
{
|
||||
Console.WriteLine(r1[i].Item1 + '\t' +
|
||||
r2[i].time_start.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' +
|
||||
r2[i].time_end.ToString(@"yyyy.MM.dd HH:mm:ss.ff"));
|
||||
fs.WriteLine(r1[i].Item1 + '\t' +
|
||||
r2[i].time_start.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' +
|
||||
r2[i].time_end.ToString(@"yyyy.MM.dd HH:mm:ss.ff"));
|
||||
foreach (var d in b)
|
||||
{
|
||||
Console.WriteLine(d.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + d.id.ToString("D2") + '\t' + d.value);
|
||||
fs.WriteLine(d.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + d.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
fs.Close();
|
||||
}
|
||||
}
|
||||
}
|
18
Tests/Tests.csproj
Normal file
18
Tests/Tests.csproj
Normal file
@@ -0,0 +1,18 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DataClients\DataClients.csproj" />
|
||||
<ProjectReference Include="..\Mailing\Mailing.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
BIN
Tests/bin/Debug/netcoreapp3.1/DataClients.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/DataClients.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/DataClients.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/DataClients.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/Mailing.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Mailing.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/Mailing.exe
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Mailing.exe
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/Mailing.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Mailing.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.Charting.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.Charting.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.Charting.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.Charting.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/PdfSharp.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/STPClient.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/STPClient.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/STPClient.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/STPClient.pdb
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/System.Drawing.Common.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/System.Drawing.Common.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll
Normal file
Binary file not shown.
229
Tests/bin/Debug/netcoreapp3.1/Tests.deps.json
Normal file
229
Tests/bin/Debug/netcoreapp3.1/Tests.deps.json
Normal file
@@ -0,0 +1,229 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"Tests/1.0.0": {
|
||||
"dependencies": {
|
||||
"DataClients": "1.0.0",
|
||||
"Mailing": "1.0.0",
|
||||
"SharpZipLib": "1.2.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"runtime": {
|
||||
"Tests.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/3.1.1": {},
|
||||
"Microsoft.Win32.SystemEvents/4.5.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "3.1.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
|
||||
"assemblyVersion": "1.2.0.246",
|
||||
"fileVersion": "1.2.0.246"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/4.5.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "3.1.1",
|
||||
"Microsoft.Win32.SystemEvents": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "3.1.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"dependencies": {
|
||||
"SharpZipLib": "1.2.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"runtime": {
|
||||
"DataClients.dll": {}
|
||||
}
|
||||
},
|
||||
"Mailing/1.0.0": {
|
||||
"dependencies": {
|
||||
"DataClients": "1.0.0",
|
||||
"MigraDoc.DocumentObjectModel": "3.0.0",
|
||||
"MigraDoc.Rendering": "3.0.0",
|
||||
"PdfSharp": "3.0.0",
|
||||
"SharpZipLib": "1.2.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Mailing.dll": {}
|
||||
}
|
||||
},
|
||||
"MigraDoc.DocumentObjectModel/3.0.0": {
|
||||
"dependencies": {
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"MigraDoc.DocumentObjectModel.dll": {}
|
||||
}
|
||||
},
|
||||
"MigraDoc.Rendering/3.0.0": {
|
||||
"dependencies": {
|
||||
"MigraDoc.DocumentObjectModel": "3.0.0",
|
||||
"PdfSharp": "3.0.0",
|
||||
"PdfSharp.Charting": "3.0.0",
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"MigraDoc.Rendering.dll": {}
|
||||
},
|
||||
"resources": {
|
||||
"de/MigraDoc.Rendering.resources.dll": {
|
||||
"locale": "de"
|
||||
}
|
||||
}
|
||||
},
|
||||
"PdfSharp/3.0.0": {
|
||||
"dependencies": {
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"PdfSharp.dll": {}
|
||||
}
|
||||
},
|
||||
"PdfSharp.Charting/3.0.0": {
|
||||
"dependencies": {
|
||||
"PdfSharp": "3.0.0",
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"PdfSharp.Charting.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Tests/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/3.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
|
||||
"path": "microsoft.netcore.platforms/3.1.1",
|
||||
"hashPath": "microsoft.netcore.platforms.3.1.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==",
|
||||
"path": "microsoft.win32.systemevents/4.5.0",
|
||||
"hashPath": "microsoft.win32.systemevents.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
|
||||
"path": "sharpziplib/1.2.0",
|
||||
"hashPath": "sharpziplib.1.2.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==",
|
||||
"path": "system.drawing.common/4.5.0",
|
||||
"hashPath": "system.drawing.common.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
|
||||
"path": "system.text.encoding.codepages/4.7.1",
|
||||
"hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Mailing/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"MigraDoc.DocumentObjectModel/3.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"MigraDoc.Rendering/3.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"PdfSharp/3.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"PdfSharp.Charting/3.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
BIN
Tests/bin/Debug/netcoreapp3.1/Tests.dll
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Tests.dll
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/Tests.exe
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Tests.exe
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/Tests.pdb
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/Tests.pdb
Normal file
Binary file not shown.
10
Tests/bin/Debug/netcoreapp3.1/Tests.runtimeconfig.dev.json
Normal file
10
Tests/bin/Debug/netcoreapp3.1/Tests.runtimeconfig.dev.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\google\\.nuget\\packages",
|
||||
"C:\\Microsoft\\Xamarin\\NuGet",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
]
|
||||
}
|
||||
}
|
9
Tests/bin/Debug/netcoreapp3.1/Tests.runtimeconfig.json
Normal file
9
Tests/bin/Debug/netcoreapp3.1/Tests.runtimeconfig.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
24
Tests/bin/Debug/netcoreapp3.1/result.txt
Normal file
24
Tests/bin/Debug/netcoreapp3.1/result.txt
Normal file
@@ -0,0 +1,24 @@
|
||||
9-33-11158 2020.06.04 18:21:46.00 2020.06.05 08:05:39.00
|
||||
2020.06.05 00:44:30.17 1
|
||||
2020.06.05 06:07:09.22 0
|
||||
9-48-02541 2020.06.16 13:44:56.00 2020.06.17 08:20:09.00
|
||||
2020.06.17 01:27:45.10 1
|
||||
2020.06.17 06:33:08.82 0
|
||||
9-48-02547 2020.06.21 03:17:40.00 2020.06.21 23:08:03.00
|
||||
2020.06.21 15:50:48.05 1
|
||||
2020.06.21 21:18:40.68 0
|
||||
9-48-02548 2020.06.21 23:08:03.00 2020.06.22 15:42:58.00
|
||||
2020.06.22 07:51:49.09 1
|
||||
2020.06.22 13:53:29.29 0
|
||||
9-34-09615 2020.06.25 10:22:42.00 2020.06.26 02:52:30.00
|
||||
2020.06.25 19:11:23.10 1
|
||||
2020.06.26 01:07:08.89 0
|
||||
9-08-05921 2020.06.25 09:21:50.00 2020.06.26 07:32:28.00
|
||||
2020.06.25 23:57:45.17 1
|
||||
2020.06.26 05:44:25.04 0
|
||||
9-37-06593 2020.07.13 14:27:42.00 2020.07.14 06:47:49.00
|
||||
2020.07.13 22:55:30.14 1
|
||||
2020.07.14 05:02:20.52 0
|
||||
9-37-06598 2020.07.16 06:35:27.00 2020.07.17 07:23:00.00
|
||||
2020.07.16 23:09:33.09 1
|
||||
2020.07.17 05:32:21.74 0
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4
Tests/bin/Debug/netcoreapp3.1/temp/20200527.360
Normal file
4
Tests/bin/Debug/netcoreapp3.1/temp/20200527.360
Normal file
@@ -0,0 +1,4 @@
|
||||
00:47:01 1590522421 3 14
|
||||
03:22:52 1590531772 1 10789 3 10 7 770 10 705
|
||||
06:54:23 1590544463 1 10789 2 BT 3-1, 6, 8, 9, 14, 15, 16 3 10 4 2 5 Ti 6 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 7 770 8 3090 9 3860 10 705 11 <20><><EFBFBD> 12 320801
|
||||
07:51:44 1590547904 0 A-<2D><><EFBFBD>-32-171-2018 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200527.361
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200527.361
Normal file
Binary file not shown.
69
Tests/bin/Debug/netcoreapp3.1/temp/20200527.362
Normal file
69
Tests/bin/Debug/netcoreapp3.1/temp/20200527.362
Normal file
@@ -0,0 +1,69 @@
|
||||
21 00:47:15 00:47:18
|
||||
Rsk= 15.7 Rkk= 12.1
|
||||
|
||||
22 01:04:51 01:20:23
|
||||
P1= 88.0 T1=01:15:23 P2=110.8 T2=01:20:23 Vs= 4.55
|
||||
|
||||
21 03:23:08 03:23:11
|
||||
Rsk= 15.5 Rkk= 12.4
|
||||
|
||||
22 03:55:24 04:10:57
|
||||
P1= 56.5 T1=04:05:57 P2= 73.5 T2=04:10:57 Vs= 3.40
|
||||
|
||||
22 04:24:54 04:40:27
|
||||
P1= 45.9 T1=04:35:27 P2= 59.3 T2=04:40:27 Vs= 2.68
|
||||
|
||||
20 05:49:53 05:50:01
|
||||
Riz_sol= 4848.1
|
||||
|
||||
21 05:50:08 05:50:11
|
||||
Rsk= 15.5 Rkk= 11.9
|
||||
|
||||
22 06:30:14 06:45:46
|
||||
P1= 46.9 T1=06:40:46 P2= 60.1 T2=06:45:46 Vs= 2.64
|
||||
|
||||
23 06:46:01 06:46:06
|
||||
|
||||
|
||||
24 06:46:13 06:46:50
|
||||
|
||||
|
||||
30 06:47:06 06:47:35
|
||||
Vst= 29.0
|
||||
|
||||
31 06:47:38 06:48:13
|
||||
Rom_sol= 7.5
|
||||
|
||||
41 06:48:45 06:48:50
|
||||
Ukz= 1.26
|
||||
|
||||
41 06:49:01 06:49:06
|
||||
Ukz= 1.14
|
||||
|
||||
32 06:49:10 06:49:46
|
||||
Imax=11.1 Umax=50.0 T= 9.0
|
||||
|
||||
33 06:49:53 06:50:17
|
||||
Imin= 8.0 Umin=17.9 T= 3.0
|
||||
|
||||
34 06:50:21 06:50:43
|
||||
V=300.2 T= 9.5
|
||||
|
||||
35 06:50:46 06:52:05
|
||||
Q= 54.4 T= 9.5
|
||||
|
||||
36 06:52:11 06:52:44
|
||||
P1=0.30 T= 3.0
|
||||
|
||||
37 06:52:49 06:53:06
|
||||
T= 1.0
|
||||
|
||||
38 06:53:11 06:53:18
|
||||
t= 53.6 T= 0.6
|
||||
|
||||
39 06:53:22 06:53:29
|
||||
t= 53.5 T= 0.6
|
||||
|
||||
40 06:53:37 06:53:44
|
||||
t= 53.5 T= 0.6
|
||||
|
16
Tests/bin/Debug/netcoreapp3.1/temp/20200527.363
Normal file
16
Tests/bin/Debug/netcoreapp3.1/temp/20200527.363
Normal file
@@ -0,0 +1,16 @@
|
||||
14 00:45:46 1590522346
|
||||
15 01:21:34 1590524494
|
||||
16 01:40:51 1590525651
|
||||
1 02:19:56 1590527996
|
||||
2 03:18:01 1590531481
|
||||
5 04:41:27 1590536487
|
||||
6 04:51:50 1590537110
|
||||
7 05:24:13 1590539053
|
||||
8 05:48:00 1590540480
|
||||
25 06:47:02 1590544022
|
||||
9 06:54:23 1590544463
|
||||
10 07:41:44 1590547304
|
||||
11 19:38:41 1590590321
|
||||
12 22:09:54 1590599394
|
||||
13 23:58:30 1590605910
|
||||
0 23:58:30 1590605910
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200527.364
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200527.364
Normal file
Binary file not shown.
93
Tests/bin/Debug/netcoreapp3.1/temp/20200527.366
Normal file
93
Tests/bin/Debug/netcoreapp3.1/temp/20200527.366
Normal file
@@ -0,0 +1,93 @@
|
||||
[63]
|
||||
oper = 14
|
||||
begin = 27.05.2020 00:45:46
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 35
|
||||
|
||||
[64]
|
||||
oper = 15
|
||||
begin = 27.05.2020 01:21:34
|
||||
norma = 30
|
||||
real = 19
|
||||
|
||||
[65]
|
||||
oper = 16
|
||||
begin = 27.05.2020 01:40:51
|
||||
norma = 40
|
||||
real = 39
|
||||
|
||||
[66]
|
||||
oper = 1
|
||||
begin = 27.05.2020 02:19:56
|
||||
norma = 85
|
||||
real = 58
|
||||
|
||||
[67]
|
||||
oper = 2
|
||||
begin = 27.05.2020 03:18:01
|
||||
norma = 110
|
||||
vac_time = 7
|
||||
real = 83
|
||||
|
||||
[68]
|
||||
oper = 5
|
||||
begin = 27.05.2020 04:41:27
|
||||
norma = 25
|
||||
real = 10
|
||||
|
||||
[69]
|
||||
oper = 6
|
||||
begin = 27.05.2020 04:51:50
|
||||
norma = 35
|
||||
real = 32
|
||||
|
||||
[70]
|
||||
oper = 7
|
||||
begin = 27.05.2020 05:24:13
|
||||
norma = 30
|
||||
real = 23
|
||||
|
||||
[71]
|
||||
oper = 8
|
||||
begin = 27.05.2020 05:48:00
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 59
|
||||
|
||||
[72]
|
||||
oper = 25
|
||||
begin = 27.05.2020 06:47:02
|
||||
norma = 30
|
||||
real = 7
|
||||
|
||||
[73]
|
||||
oper = 9
|
||||
begin = 27.05.2020 06:54:23
|
||||
norma = 0
|
||||
real = 47
|
||||
|
||||
[74]
|
||||
oper = 10
|
||||
begin = 27.05.2020 07:41:44
|
||||
norma = 0
|
||||
real = 716
|
||||
|
||||
[75]
|
||||
oper = 11
|
||||
begin = 27.05.2020 19:38:41
|
||||
norma = 0
|
||||
real = 151
|
||||
|
||||
[76]
|
||||
oper = 12
|
||||
begin = 27.05.2020 22:09:54
|
||||
norma = 105
|
||||
real = 108
|
||||
|
||||
[77]
|
||||
oper = 13
|
||||
begin = 27.05.2020 23:58:30
|
||||
norma = 45
|
||||
real = 90
|
||||
|
26
Tests/bin/Debug/netcoreapp3.1/temp/20200527.367
Normal file
26
Tests/bin/Debug/netcoreapp3.1/temp/20200527.367
Normal file
@@ -0,0 +1,26 @@
|
||||
01:21:01 1590524461 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
01:21:03 1590524463 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
01:22:21 1590524541 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
01:39:26 1590525566 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
01:40:54 1590525654 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
01:41:39 1590525699 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:41:39 1590525699 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:44:00 1590525840 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
04:52:44 1590537164 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
04:55:22 1590537322 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
06:46:15 1590543975 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:46:51 1590544011 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:53:57 1590544437 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
06:53:58 1590544438 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:10:45 1590545445 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:41:44 1590547304 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
07:41:44 1590547304 <09><><EFBFBD><EFBFBD>祭 <20>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
07:51:44 1590547904 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><>।. <20><> 60 ᥪ. <20><><EFBFBD><EFBFBD>殮<EFBFBD><EFA6A5><EFBFBD> <20>㣨
|
||||
19:38:40 1590590320 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>
|
||||
19:38:40 1590590320 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
22:09:47 1590599387 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>(A)
|
||||
22:09:56 1590599396 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
22:11:24 1590599484 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
22:11:25 1590599485 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
22:11:26 1590599486 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
22:14:55 1590599695 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200527.369
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200527.369
Normal file
Binary file not shown.
4
Tests/bin/Debug/netcoreapp3.1/temp/20200528.210
Normal file
4
Tests/bin/Debug/netcoreapp3.1/temp/20200528.210
Normal file
@@ -0,0 +1,4 @@
|
||||
06:43:16 1590630196 3 14
|
||||
07:34:18 1590633258 0 A-<2D><><EFBFBD>-32-067-2014 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
||||
13:17:09 1590653829 7 920 10 870
|
||||
14:43:19 1590658999 0 A-<2D><><EFBFBD>-32-120-2016 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.211
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.211
Normal file
Binary file not shown.
39
Tests/bin/Debug/netcoreapp3.1/temp/20200528.212
Normal file
39
Tests/bin/Debug/netcoreapp3.1/temp/20200528.212
Normal file
@@ -0,0 +1,39 @@
|
||||
21 06:43:03 06:43:06
|
||||
Rsk= 11.6 Rkk= 5.5
|
||||
|
||||
22 07:05:12 07:15:17
|
||||
P1= 33.3 T1=07:10:17 P2= 56.5 T2=07:15:17 Vs= 4.63
|
||||
|
||||
21 10:29:11 10:29:14
|
||||
Rsk= 11.7 Rkk= 5.6
|
||||
|
||||
22 10:46:28 11:01:33
|
||||
P1= 74.6 T1=10:56:33 P2= 97.1 T2=11:01:33 Vs= 4.50
|
||||
|
||||
21 13:16:42 13:16:45
|
||||
Rsk= 11.4 Rkk= 5.4
|
||||
|
||||
22 13:35:58 13:51:02
|
||||
P1= 61.0 T1=13:46:02 P2= 80.6 T2=13:51:02 Vs= 3.91
|
||||
|
||||
21 16:27:26 16:27:29
|
||||
Rsk= 11.3 Rkk= 5.3
|
||||
|
||||
21 17:09:56 17:09:59
|
||||
Rsk= 11.3 Rkk= 5.2
|
||||
|
||||
22 17:30:40 17:45:45
|
||||
P1= 64.7 T1=17:40:45 P2= 92.9 T2=17:45:45 Vs= 5.63
|
||||
|
||||
22 17:59:52 18:09:56
|
||||
P1= 25.8 T1=18:04:56 P2= 47.5 T2=18:09:56 Vs= 4.34
|
||||
|
||||
21 20:28:54 20:28:57
|
||||
Rsk= 11.4 Rkk= 5.3
|
||||
|
||||
22 21:07:32 21:22:37
|
||||
P1= 75.1 T1=21:17:37 P2=101.7 T2=21:22:37 Vs= 5.32
|
||||
|
||||
22 21:34:50 21:44:54
|
||||
P1= 31.1 T1=21:39:54 P2= 52.7 T2=21:44:54 Vs= 4.33
|
||||
|
28
Tests/bin/Debug/netcoreapp3.1/temp/20200528.213
Normal file
28
Tests/bin/Debug/netcoreapp3.1/temp/20200528.213
Normal file
@@ -0,0 +1,28 @@
|
||||
10 00:07:11 1590606431
|
||||
12 02:17:53 1590614273
|
||||
13 06:09:30 1590628170
|
||||
0 06:09:30 1590628170
|
||||
14 06:39:57 1590629997
|
||||
15 07:16:51 1590632211
|
||||
16 07:39:10 1590633550
|
||||
1 08:25:47 1590636347
|
||||
14 10:25:59 1590643559
|
||||
15 11:06:34 1590645994
|
||||
16 11:17:35 1590646655
|
||||
15 11:25:50 1590647150
|
||||
16 12:10:02 1590649802
|
||||
1 12:53:03 1590652383
|
||||
14 13:14:57 1590653697
|
||||
15 13:52:14 1590655934
|
||||
16 15:05:04 1590660304
|
||||
1 15:48:43 1590662923
|
||||
14 16:25:28 1590665128
|
||||
1 17:03:01 1590667381
|
||||
14 17:09:47 1590667787
|
||||
15 18:11:25 1590671485
|
||||
16 18:41:33 1590673293
|
||||
1 19:27:12 1590676032
|
||||
14 20:26:44 1590679604
|
||||
15 21:46:40 1590684400
|
||||
16 22:19:25 1590686365
|
||||
1 22:59:25 1590688765
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.214
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.214
Normal file
Binary file not shown.
169
Tests/bin/Debug/netcoreapp3.1/temp/20200528.216
Normal file
169
Tests/bin/Debug/netcoreapp3.1/temp/20200528.216
Normal file
@@ -0,0 +1,169 @@
|
||||
[94]
|
||||
oper = 10
|
||||
begin = 28.05.2020 00:07:11
|
||||
norma = 0
|
||||
real = 130
|
||||
|
||||
[95]
|
||||
oper = 12
|
||||
begin = 28.05.2020 02:17:53
|
||||
norma = 180
|
||||
real = 231
|
||||
|
||||
[96]
|
||||
oper = 13
|
||||
begin = 28.05.2020 06:09:30
|
||||
norma = 45
|
||||
real = 30
|
||||
|
||||
[97]
|
||||
oper = 14
|
||||
begin = 28.05.2020 06:39:57
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 36
|
||||
|
||||
[98]
|
||||
oper = 15
|
||||
begin = 28.05.2020 07:16:51
|
||||
norma = 30
|
||||
real = 22
|
||||
|
||||
[99]
|
||||
oper = 16
|
||||
begin = 28.05.2020 07:39:10
|
||||
norma = 40
|
||||
real = 46
|
||||
|
||||
[00]
|
||||
oper = 1
|
||||
begin = 28.05.2020 08:25:47
|
||||
norma = 85
|
||||
real = 120
|
||||
|
||||
[01]
|
||||
oper = 14
|
||||
begin = 28.05.2020 10:25:59
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 40
|
||||
|
||||
[02]
|
||||
oper = 15
|
||||
begin = 28.05.2020 11:06:34
|
||||
norma = 30
|
||||
real = 11
|
||||
|
||||
[03]
|
||||
oper = 16
|
||||
begin = 28.05.2020 11:17:35
|
||||
norma = 40
|
||||
real = 8
|
||||
|
||||
[04]
|
||||
oper = 15
|
||||
begin = 28.05.2020 11:25:50
|
||||
norma = 30
|
||||
real = 44
|
||||
|
||||
[05]
|
||||
oper = 16
|
||||
begin = 28.05.2020 12:10:02
|
||||
norma = 40
|
||||
real = 43
|
||||
|
||||
[06]
|
||||
oper = 1
|
||||
begin = 28.05.2020 12:53:03
|
||||
norma = 85
|
||||
real = 21
|
||||
|
||||
[07]
|
||||
oper = 14
|
||||
begin = 28.05.2020 13:14:57
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
vac_avg10 = 7.4
|
||||
real = 37
|
||||
|
||||
[08]
|
||||
oper = 15
|
||||
begin = 28.05.2020 13:52:14
|
||||
norma = 30
|
||||
real = 72
|
||||
|
||||
[09]
|
||||
oper = 16
|
||||
begin = 28.05.2020 15:05:04
|
||||
norma = 40
|
||||
real = 43
|
||||
|
||||
[10]
|
||||
oper = 1
|
||||
begin = 28.05.2020 15:48:43
|
||||
norma = 85
|
||||
real = 36
|
||||
|
||||
[11]
|
||||
oper = 14
|
||||
begin = 28.05.2020 16:25:28
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 37
|
||||
|
||||
[12]
|
||||
oper = 1
|
||||
begin = 28.05.2020 17:03:01
|
||||
norma = 85
|
||||
real = 6
|
||||
|
||||
[13]
|
||||
oper = 14
|
||||
begin = 28.05.2020 17:09:47
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 61
|
||||
|
||||
[14]
|
||||
oper = 15
|
||||
begin = 28.05.2020 18:11:25
|
||||
norma = 30
|
||||
real = 30
|
||||
|
||||
[15]
|
||||
oper = 16
|
||||
begin = 28.05.2020 18:41:33
|
||||
norma = 40
|
||||
real = 45
|
||||
|
||||
[16]
|
||||
oper = 1
|
||||
begin = 28.05.2020 19:27:12
|
||||
norma = 85
|
||||
real = 59
|
||||
|
||||
[17]
|
||||
oper = 14
|
||||
begin = 28.05.2020 20:26:44
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 79
|
||||
|
||||
[18]
|
||||
oper = 15
|
||||
begin = 28.05.2020 21:46:40
|
||||
norma = 30
|
||||
real = 32
|
||||
|
||||
[19]
|
||||
oper = 16
|
||||
begin = 28.05.2020 22:19:25
|
||||
norma = 40
|
||||
real = 40
|
||||
|
||||
[20]
|
||||
oper = 1
|
||||
begin = 28.05.2020 22:59:25
|
||||
norma = 85
|
||||
real = 185
|
||||
|
29
Tests/bin/Debug/netcoreapp3.1/temp/20200528.217
Normal file
29
Tests/bin/Debug/netcoreapp3.1/temp/20200528.217
Normal file
@@ -0,0 +1,29 @@
|
||||
00:07:11 1590606431 <09><><EFBFBD><EFBFBD>祭 <20>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
02:17:58 1590614278 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:16:52 1590632212 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
07:16:54 1590632214 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:16:55 1590632215 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:34:18 1590633258 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
07:39:11 1590633551 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:39:14 1590633554 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
11:23:45 1590647025 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
11:23:47 1590647027 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
11:25:22 1590647122 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
12:10:03 1590649803 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
12:10:06 1590649806 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
13:51:34 1590655894 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
13:51:35 1590655895 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
13:53:31 1590656011 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
14:43:19 1590658999 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
14:43:46 1590659026 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
15:05:09 1590660309 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
18:10:45 1590671445 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
18:10:46 1590671446 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
18:12:42 1590671562 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
18:41:34 1590673294 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
18:41:37 1590673297 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
21:46:01 1590684361 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
21:46:02 1590684362 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
21:47:57 1590684477 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
22:19:27 1590686367 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
22:19:29 1590686369 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.219
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.219
Normal file
Binary file not shown.
2
Tests/bin/Debug/netcoreapp3.1/temp/20200528.360
Normal file
2
Tests/bin/Debug/netcoreapp3.1/temp/20200528.360
Normal file
@@ -0,0 +1,2 @@
|
||||
01:31:35 1590611495 3 14
|
||||
03:58:40 1590620320 0 A-<2D><><EFBFBD>-32-067-2014 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.361
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.361
Normal file
Binary file not shown.
12
Tests/bin/Debug/netcoreapp3.1/temp/20200528.362
Normal file
12
Tests/bin/Debug/netcoreapp3.1/temp/20200528.362
Normal file
@@ -0,0 +1,12 @@
|
||||
21 01:31:21 01:31:24
|
||||
Rsk= 14.6 Rkk= 10.8
|
||||
|
||||
22 02:09:38 02:25:10
|
||||
P1= 79.9 T1=02:20:10 P2=108.8 T2=02:25:10 Vs= 5.79
|
||||
|
||||
22 02:39:40 02:55:13
|
||||
P1= 70.8 T1=02:50:13 P2= 96.9 T2=02:55:13 Vs= 5.22
|
||||
|
||||
22 03:09:58 03:25:30
|
||||
P1= 66.8 T1=03:20:30 P2= 91.3 T2=03:25:30 Vs= 4.90
|
||||
|
4
Tests/bin/Debug/netcoreapp3.1/temp/20200528.363
Normal file
4
Tests/bin/Debug/netcoreapp3.1/temp/20200528.363
Normal file
@@ -0,0 +1,4 @@
|
||||
14 01:29:15 1590611355
|
||||
15 03:28:42 1590618522
|
||||
16 04:00:49 1590620449
|
||||
1 05:16:28 1590624988
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.364
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200528.364
Normal file
Binary file not shown.
2
Tests/bin/Debug/netcoreapp3.1/temp/20200528.366
Normal file
2
Tests/bin/Debug/netcoreapp3.1/temp/20200528.366
Normal file
@@ -0,0 +1,2 @@
|
||||
real = -7546
|
||||
|
9
Tests/bin/Debug/netcoreapp3.1/temp/20200528.367
Normal file
9
Tests/bin/Debug/netcoreapp3.1/temp/20200528.367
Normal file
@@ -0,0 +1,9 @@
|
||||
03:26:58 1590618418 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
03:27:01 1590618421 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
03:29:29 1590618569 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
03:58:40 1590620320 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
04:00:51 1590620451 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:00:54 1590620454 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
04:01:16 1590620476 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
04:01:17 1590620477 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
04:04:45 1590620685 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200529.211
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200529.211
Normal file
Binary file not shown.
42
Tests/bin/Debug/netcoreapp3.1/temp/20200529.212
Normal file
42
Tests/bin/Debug/netcoreapp3.1/temp/20200529.212
Normal file
@@ -0,0 +1,42 @@
|
||||
21 02:07:51 02:07:54
|
||||
Rsk= 11.6 Rkk= 5.6
|
||||
|
||||
22 03:05:28 03:15:32
|
||||
P1= 20.2 T1=03:10:32 P2= 28.6 T2=03:15:32 Vs= 1.68
|
||||
|
||||
21 05:35:28 05:35:31
|
||||
Rsk= 11.8 Rkk= 5.7
|
||||
|
||||
22 06:08:11 06:18:15
|
||||
P1= 19.6 T1=06:13:15 P2= 29.0 T2=06:18:15 Vs= 1.89
|
||||
|
||||
21 09:21:39 09:21:42
|
||||
Rsk= 11.9 Rkk= 5.8
|
||||
|
||||
22 09:39:58 09:50:02
|
||||
P1= 33.9 T1=09:45:02 P2= 55.5 T2=09:50:02 Vs= 4.32
|
||||
|
||||
21 12:49:43 12:49:46
|
||||
Rsk= 12.0 Rkk= 5.8
|
||||
|
||||
22 13:20:23 13:30:27
|
||||
P1= 21.3 T1=13:25:27 P2= 32.2 T2=13:30:27 Vs= 2.19
|
||||
|
||||
21 16:22:45 16:22:48
|
||||
Rsk= 12.0 Rkk= 5.8
|
||||
|
||||
22 16:51:48 17:01:52
|
||||
P1= 18.7 T1=16:56:52 P2= 27.3 T2=17:01:52 Vs= 1.71
|
||||
|
||||
21 19:46:30 19:46:33
|
||||
Rsk= 12.0 Rkk= 5.9
|
||||
|
||||
22 20:04:42 20:14:46
|
||||
P1= 22.1 T1=20:09:46 P2= 33.3 T2=20:14:46 Vs= 2.25
|
||||
|
||||
21 22:43:38 22:43:42
|
||||
Rsk= 12.0 Rkk= 5.9
|
||||
|
||||
22 23:11:56 23:22:01
|
||||
P1= 18.3 T1=23:17:01 P2= 26.8 T2=23:22:01 Vs= 1.71
|
||||
|
26
Tests/bin/Debug/netcoreapp3.1/temp/20200529.213
Normal file
26
Tests/bin/Debug/netcoreapp3.1/temp/20200529.213
Normal file
@@ -0,0 +1,26 @@
|
||||
14 02:05:13 1590699913
|
||||
15 03:16:18 1590704178
|
||||
16 04:18:29 1590707909
|
||||
1 04:54:20 1590710060
|
||||
14 05:32:42 1590712362
|
||||
15 06:19:31 1590715171
|
||||
16 07:38:02 1590719882
|
||||
1 08:28:42 1590722922
|
||||
14 09:19:04 1590725944
|
||||
15 09:52:19 1590727939
|
||||
16 11:06:06 1590732366
|
||||
1 11:51:25 1590735085
|
||||
14 12:46:23 1590738383
|
||||
15 13:32:30 1590741150
|
||||
16 14:46:30 1590745590
|
||||
1 15:32:49 1590748369
|
||||
14 16:19:05 1590751145
|
||||
15 17:03:40 1590753820
|
||||
16 18:16:58 1590758218
|
||||
1 19:05:50 1590761150
|
||||
14 19:41:15 1590763275
|
||||
15 20:16:33 1590765393
|
||||
16 21:30:08 1590769808
|
||||
1 22:14:52 1590772492
|
||||
14 22:40:57 1590774057
|
||||
15 23:23:37 1590776617
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200529.214
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200529.214
Normal file
Binary file not shown.
1
Tests/bin/Debug/netcoreapp3.1/temp/20200529.215
Normal file
1
Tests/bin/Debug/netcoreapp3.1/temp/20200529.215
Normal file
@@ -0,0 +1 @@
|
||||
109 02:59:01 1590703141
|
164
Tests/bin/Debug/netcoreapp3.1/temp/20200529.216
Normal file
164
Tests/bin/Debug/netcoreapp3.1/temp/20200529.216
Normal file
@@ -0,0 +1,164 @@
|
||||
[21]
|
||||
oper = 14
|
||||
begin = 29.05.2020 02:05:13
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 71
|
||||
|
||||
[22]
|
||||
oper = 15
|
||||
begin = 29.05.2020 03:16:18
|
||||
norma = 30
|
||||
real = 62
|
||||
|
||||
[23]
|
||||
oper = 16
|
||||
begin = 29.05.2020 04:18:29
|
||||
norma = 40
|
||||
real = 35
|
||||
|
||||
[24]
|
||||
oper = 1
|
||||
begin = 29.05.2020 04:54:20
|
||||
norma = 85
|
||||
real = 38
|
||||
|
||||
[25]
|
||||
oper = 14
|
||||
begin = 29.05.2020 05:32:42
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 46
|
||||
|
||||
[26]
|
||||
oper = 15
|
||||
begin = 29.05.2020 06:19:31
|
||||
norma = 30
|
||||
real = 78
|
||||
|
||||
[27]
|
||||
oper = 16
|
||||
begin = 29.05.2020 07:38:02
|
||||
norma = 40
|
||||
real = 50
|
||||
|
||||
[28]
|
||||
oper = 1
|
||||
begin = 29.05.2020 08:28:42
|
||||
norma = 85
|
||||
real = 50
|
||||
|
||||
[29]
|
||||
oper = 14
|
||||
begin = 29.05.2020 09:19:04
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 33
|
||||
|
||||
[30]
|
||||
oper = 15
|
||||
begin = 29.05.2020 09:52:19
|
||||
norma = 30
|
||||
real = 73
|
||||
|
||||
[31]
|
||||
oper = 16
|
||||
begin = 29.05.2020 11:06:06
|
||||
norma = 40
|
||||
real = 45
|
||||
|
||||
[32]
|
||||
oper = 1
|
||||
begin = 29.05.2020 11:51:25
|
||||
norma = 85
|
||||
real = 54
|
||||
|
||||
[33]
|
||||
oper = 14
|
||||
begin = 29.05.2020 12:46:23
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 46
|
||||
|
||||
[34]
|
||||
oper = 15
|
||||
begin = 29.05.2020 13:32:30
|
||||
norma = 30
|
||||
real = 74
|
||||
|
||||
[35]
|
||||
oper = 16
|
||||
begin = 29.05.2020 14:46:30
|
||||
norma = 40
|
||||
real = 46
|
||||
|
||||
[36]
|
||||
oper = 1
|
||||
begin = 29.05.2020 15:32:49
|
||||
norma = 85
|
||||
real = 46
|
||||
|
||||
[37]
|
||||
oper = 14
|
||||
begin = 29.05.2020 16:19:05
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 44
|
||||
|
||||
[38]
|
||||
oper = 15
|
||||
begin = 29.05.2020 17:03:40
|
||||
norma = 30
|
||||
real = 73
|
||||
|
||||
[39]
|
||||
oper = 16
|
||||
begin = 29.05.2020 18:16:58
|
||||
norma = 40
|
||||
real = 48
|
||||
|
||||
[40]
|
||||
oper = 1
|
||||
begin = 29.05.2020 19:05:50
|
||||
norma = 85
|
||||
real = 35
|
||||
|
||||
[41]
|
||||
oper = 14
|
||||
begin = 29.05.2020 19:41:15
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 35
|
||||
|
||||
[42]
|
||||
oper = 15
|
||||
begin = 29.05.2020 20:16:33
|
||||
norma = 30
|
||||
real = 73
|
||||
|
||||
[43]
|
||||
oper = 16
|
||||
begin = 29.05.2020 21:30:08
|
||||
norma = 40
|
||||
real = 44
|
||||
|
||||
[44]
|
||||
oper = 1
|
||||
begin = 29.05.2020 22:14:52
|
||||
norma = 85
|
||||
real = 26
|
||||
|
||||
[45]
|
||||
oper = 14
|
||||
begin = 29.05.2020 22:40:57
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
vac_avg10 = 6.1
|
||||
real = 42
|
||||
|
||||
[46]
|
||||
oper = 15
|
||||
begin = 29.05.2020 23:23:37
|
||||
norma = 30
|
||||
real = 79
|
||||
|
33
Tests/bin/Debug/netcoreapp3.1/temp/20200529.217
Normal file
33
Tests/bin/Debug/netcoreapp3.1/temp/20200529.217
Normal file
@@ -0,0 +1,33 @@
|
||||
03:16:19 1590704179 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
03:16:20 1590704180 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
03:16:21 1590704181 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
04:18:24 1590707904 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:18:34 1590707914 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:18:49 1590715129 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
06:18:51 1590715131 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
06:20:49 1590715249 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:38:01 1590719881 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:38:06 1590719886 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
09:52:17 1590727937 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
09:52:19 1590727939 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
09:52:21 1590727941 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
11:06:08 1590732368 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
11:06:10 1590732370 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
11:06:18 1590732378 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
13:32:25 1590741145 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
13:32:27 1590741147 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
13:32:28 1590741148 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
14:46:32 1590745592 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
14:46:34 1590745594 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
14:46:36 1590745596 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
17:04:01 1590753841 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
17:04:03 1590753843 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
18:16:59 1590758219 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
18:17:13 1590758233 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
20:16:35 1590765395 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
20:16:48 1590765408 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
20:17:15 1590765435 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
20:17:18 1590765438 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
21:30:10 1590769810 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
23:23:23 1590776603 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
23:23:51 1590776631 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
3
Tests/bin/Debug/netcoreapp3.1/temp/20200530.210
Normal file
3
Tests/bin/Debug/netcoreapp3.1/temp/20200530.210
Normal file
@@ -0,0 +1,3 @@
|
||||
03:35:18 1590791718 0 A-<2D><><EFBFBD>-32-120-2016 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
||||
07:03:38 1590804218 0 A-<2D><><EFBFBD>-32-120-2016 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
||||
10:05:25 1590815125 10 840
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200530.211
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200530.211
Normal file
Binary file not shown.
42
Tests/bin/Debug/netcoreapp3.1/temp/20200530.212
Normal file
42
Tests/bin/Debug/netcoreapp3.1/temp/20200530.212
Normal file
@@ -0,0 +1,42 @@
|
||||
21 02:23:25 02:23:28
|
||||
Rsk= 12.2 Rkk= 6.0
|
||||
|
||||
22 03:05:40 03:15:44
|
||||
P1= 15.4 T1=03:10:44 P2= 23.1 T2=03:15:44 Vs= 1.54
|
||||
|
||||
21 05:25:12 05:25:15
|
||||
Rsk= 12.2 Rkk= 6.0
|
||||
|
||||
22 06:21:16 06:31:20
|
||||
P1= 14.8 T1=06:26:20 P2= 20.7 T2=06:31:20 Vs= 1.18
|
||||
|
||||
21 10:04:57 10:05:00
|
||||
Rsk= 12.2 Rkk= 6.0
|
||||
|
||||
22 10:25:32 10:35:37
|
||||
P1= 30.7 T1=10:30:37 P2= 49.9 T2=10:35:37 Vs= 3.84
|
||||
|
||||
21 13:32:43 13:32:46
|
||||
Rsk= 12.2 Rkk= 6.1
|
||||
|
||||
22 13:55:06 14:05:10
|
||||
P1= 29.6 T1=14:00:10 P2= 48.7 T2=14:05:10 Vs= 3.81
|
||||
|
||||
21 16:38:44 16:38:47
|
||||
Rsk= 12.2 Rkk= 6.1
|
||||
|
||||
22 17:05:09 17:15:14
|
||||
P1= 22.3 T1=17:10:14 P2= 35.4 T2=17:15:14 Vs= 2.63
|
||||
|
||||
21 19:43:26 19:43:29
|
||||
Rsk= 12.3 Rkk= 6.2
|
||||
|
||||
22 20:04:59 20:15:03
|
||||
P1= 30.4 T1=20:10:03 P2= 51.4 T2=20:15:03 Vs= 4.21
|
||||
|
||||
21 22:28:05 22:28:08
|
||||
Rsk= 12.4 Rkk= 6.2
|
||||
|
||||
22 22:50:07 23:00:11
|
||||
P1= 21.9 T1=22:55:11 P2= 34.8 T2=23:00:11 Vs= 2.59
|
||||
|
28
Tests/bin/Debug/netcoreapp3.1/temp/20200530.213
Normal file
28
Tests/bin/Debug/netcoreapp3.1/temp/20200530.213
Normal file
@@ -0,0 +1,28 @@
|
||||
16 00:42:55 1590781375
|
||||
1 01:35:47 1590784547
|
||||
14 02:19:53 1590787193
|
||||
15 03:17:30 1590790650
|
||||
16 03:55:35 1590792935
|
||||
1 04:40:30 1590795630
|
||||
14 05:22:45 1590798165
|
||||
15 06:32:57 1590802377
|
||||
16 07:07:01 1590804421
|
||||
1 08:06:17 1590807977
|
||||
14 09:59:59 1590814799
|
||||
15 10:36:59 1590817019
|
||||
16 12:00:04 1590822004
|
||||
1 12:42:59 1590824579
|
||||
14 13:31:19 1590827479
|
||||
15 14:06:10 1590829570
|
||||
16 15:35:02 1590834902
|
||||
1 16:13:08 1590837188
|
||||
14 16:38:23 1590838703
|
||||
15 17:17:03 1590841023
|
||||
16 18:39:38 1590845978
|
||||
1 19:25:01 1590848701
|
||||
14 19:42:05 1590849725
|
||||
15 20:17:11 1590851831
|
||||
16 21:35:37 1590856537
|
||||
1 22:08:06 1590858486
|
||||
14 22:26:04 1590859564
|
||||
15 23:01:51 1590861711
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200530.214
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200530.214
Normal file
Binary file not shown.
175
Tests/bin/Debug/netcoreapp3.1/temp/20200530.216
Normal file
175
Tests/bin/Debug/netcoreapp3.1/temp/20200530.216
Normal file
@@ -0,0 +1,175 @@
|
||||
[47]
|
||||
oper = 16
|
||||
begin = 30.05.2020 00:42:55
|
||||
norma = 40
|
||||
real = 52
|
||||
|
||||
[48]
|
||||
oper = 1
|
||||
begin = 30.05.2020 01:35:47
|
||||
norma = 85
|
||||
real = 44
|
||||
|
||||
[49]
|
||||
oper = 14
|
||||
begin = 30.05.2020 02:19:53
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 57
|
||||
|
||||
[50]
|
||||
oper = 15
|
||||
begin = 30.05.2020 03:17:30
|
||||
norma = 30
|
||||
real = 38
|
||||
|
||||
[51]
|
||||
oper = 16
|
||||
begin = 30.05.2020 03:55:35
|
||||
norma = 40
|
||||
real = 44
|
||||
|
||||
[52]
|
||||
oper = 1
|
||||
begin = 30.05.2020 04:40:30
|
||||
norma = 85
|
||||
real = 42
|
||||
|
||||
[53]
|
||||
oper = 14
|
||||
begin = 30.05.2020 05:22:45
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 70
|
||||
|
||||
[54]
|
||||
oper = 15
|
||||
begin = 30.05.2020 06:32:57
|
||||
norma = 30
|
||||
real = 34
|
||||
|
||||
[55]
|
||||
oper = 16
|
||||
begin = 30.05.2020 07:07:01
|
||||
norma = 40
|
||||
real = 59
|
||||
|
||||
[56]
|
||||
oper = 1
|
||||
begin = 30.05.2020 08:06:17
|
||||
norma = 85
|
||||
real = 113
|
||||
|
||||
[57]
|
||||
oper = 14
|
||||
begin = 30.05.2020 09:59:59
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 37
|
||||
|
||||
[58]
|
||||
oper = 15
|
||||
begin = 30.05.2020 10:36:59
|
||||
norma = 30
|
||||
real = 83
|
||||
|
||||
[59]
|
||||
oper = 16
|
||||
begin = 30.05.2020 12:00:04
|
||||
norma = 40
|
||||
real = 42
|
||||
|
||||
[60]
|
||||
oper = 1
|
||||
begin = 30.05.2020 12:42:59
|
||||
norma = 85
|
||||
real = 48
|
||||
|
||||
[61]
|
||||
oper = 14
|
||||
begin = 30.05.2020 13:31:19
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 34
|
||||
|
||||
[62]
|
||||
oper = 15
|
||||
begin = 30.05.2020 14:06:10
|
||||
norma = 30
|
||||
real = 88
|
||||
|
||||
[63]
|
||||
oper = 16
|
||||
begin = 30.05.2020 15:35:02
|
||||
norma = 40
|
||||
real = 38
|
||||
|
||||
[64]
|
||||
oper = 1
|
||||
begin = 30.05.2020 16:13:08
|
||||
norma = 85
|
||||
real = 25
|
||||
|
||||
[65]
|
||||
oper = 14
|
||||
begin = 30.05.2020 16:38:23
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 38
|
||||
|
||||
[66]
|
||||
oper = 15
|
||||
begin = 30.05.2020 17:17:03
|
||||
norma = 30
|
||||
real = 82
|
||||
|
||||
[67]
|
||||
oper = 16
|
||||
begin = 30.05.2020 18:39:38
|
||||
norma = 40
|
||||
real = 45
|
||||
|
||||
[68]
|
||||
oper = 1
|
||||
begin = 30.05.2020 19:25:01
|
||||
norma = 85
|
||||
real = 17
|
||||
|
||||
[69]
|
||||
oper = 14
|
||||
begin = 30.05.2020 19:42:05
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 35
|
||||
|
||||
[70]
|
||||
oper = 15
|
||||
begin = 30.05.2020 20:17:11
|
||||
norma = 30
|
||||
real = 78
|
||||
|
||||
[71]
|
||||
oper = 16
|
||||
begin = 30.05.2020 21:35:37
|
||||
norma = 40
|
||||
real = 32
|
||||
|
||||
[72]
|
||||
oper = 1
|
||||
begin = 30.05.2020 22:08:06
|
||||
norma = 85
|
||||
real = 17
|
||||
|
||||
[73]
|
||||
oper = 14
|
||||
begin = 30.05.2020 22:26:04
|
||||
norma = 40
|
||||
vac_time = 6
|
||||
real = 35
|
||||
|
||||
[74]
|
||||
oper = 15
|
||||
begin = 30.05.2020 23:01:51
|
||||
norma = 30
|
||||
real = 78
|
||||
|
34
Tests/bin/Debug/netcoreapp3.1/temp/20200530.217
Normal file
34
Tests/bin/Debug/netcoreapp3.1/temp/20200530.217
Normal file
@@ -0,0 +1,34 @@
|
||||
00:42:54 1590781374 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
03:16:53 1590790613 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
03:16:55 1590790615 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
03:18:47 1590790727 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
03:35:18 1590791718 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
03:35:39 1590791739 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
03:55:39 1590792939 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:32:01 1590802321 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
06:32:03 1590802323 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
06:34:16 1590802456 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:03:38 1590804218 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
07:07:00 1590804420 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:07:05 1590804425 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
12:00:20 1590822020 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
12:02:41 1590822161 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
15:35:11 1590834911 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
15:37:42 1590835062 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
17:16:20 1590840980 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
17:16:21 1590840981 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
17:18:18 1590841098 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
18:39:31 1590845971 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
18:39:41 1590845981 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
18:40:04 1590846004 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
18:42:36 1590846156 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
20:16:28 1590851788 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
20:16:29 1590851789 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
20:18:27 1590851907 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
21:35:30 1590856530 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
21:35:40 1590856540 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
21:35:44 1590856544 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
21:38:18 1590856698 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
23:00:50 1590861650 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
23:00:50 1590861650 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
23:02:54 1590861774 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.211
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.211
Normal file
Binary file not shown.
30
Tests/bin/Debug/netcoreapp3.1/temp/20200531.212
Normal file
30
Tests/bin/Debug/netcoreapp3.1/temp/20200531.212
Normal file
@@ -0,0 +1,30 @@
|
||||
21 01:35:49 01:35:52
|
||||
Rsk= 12.3 Rkk= 6.2
|
||||
|
||||
22 01:54:55 02:05:00
|
||||
P1= 24.9 T1=02:00:00 P2= 39.8 T2=02:05:00 Vs= 2.98
|
||||
|
||||
21 05:02:41 05:02:44
|
||||
Rsk= 11.7 Rkk= 5.7
|
||||
|
||||
22 05:35:04 05:45:09
|
||||
P1= 19.8 T1=05:40:09 P2= 32.0 T2=05:45:09 Vs= 2.44
|
||||
|
||||
21 08:27:11 08:27:14
|
||||
Rsk= 11.9 Rkk= 5.8
|
||||
|
||||
22 08:51:57 09:02:02
|
||||
P1= 18.6 T1=08:57:02 P2= 29.1 T2=09:02:02 Vs= 2.10
|
||||
|
||||
21 11:11:07 11:11:10
|
||||
Rsk= 11.6 Rkk= 5.5
|
||||
|
||||
22 11:24:57 11:35:02
|
||||
P1= 23.3 T1=11:30:02 P2= 36.7 T2=11:35:02 Vs= 2.68
|
||||
|
||||
21 13:16:51 13:16:54
|
||||
Rsk= 11.8 Rkk= 5.7
|
||||
|
||||
22 13:38:16 13:48:20
|
||||
P1= 21.6 T1=13:43:20 P2= 33.7 T2=13:48:20 Vs= 2.42
|
||||
|
22
Tests/bin/Debug/netcoreapp3.1/temp/20200531.213
Normal file
22
Tests/bin/Debug/netcoreapp3.1/temp/20200531.213
Normal file
@@ -0,0 +1,22 @@
|
||||
16 00:20:08 1590866408
|
||||
1 01:07:05 1590869225
|
||||
14 01:33:05 1590870785
|
||||
15 02:06:46 1590872806
|
||||
16 03:20:27 1590877227
|
||||
1 04:07:50 1590880070
|
||||
14 05:01:50 1590883310
|
||||
15 05:47:30 1590886050
|
||||
16 07:01:14 1590890474
|
||||
1 08:01:09 1590894069
|
||||
14 08:22:02 1590895322
|
||||
15 09:03:08 1590897788
|
||||
16 10:04:30 1590901470
|
||||
1 10:46:34 1590903994
|
||||
14 11:03:06 1590904986
|
||||
15 11:35:58 1590906958
|
||||
16 12:12:31 1590909151
|
||||
1 12:51:16 1590911476
|
||||
14 13:11:24 1590912684
|
||||
15 13:49:40 1590914980
|
||||
16 14:04:41 1590915881
|
||||
1 14:27:08 1590917228
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.214
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.214
Normal file
Binary file not shown.
2
Tests/bin/Debug/netcoreapp3.1/temp/20200531.216
Normal file
2
Tests/bin/Debug/netcoreapp3.1/temp/20200531.216
Normal file
@@ -0,0 +1,2 @@
|
||||
real = -12377
|
||||
|
28
Tests/bin/Debug/netcoreapp3.1/temp/20200531.217
Normal file
28
Tests/bin/Debug/netcoreapp3.1/temp/20200531.217
Normal file
@@ -0,0 +1,28 @@
|
||||
00:20:10 1590866410 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
00:20:12 1590866412 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
00:21:39 1590866499 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
00:24:05 1590866645 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
02:06:44 1590872804 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
02:06:46 1590872806 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
02:06:47 1590872807 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
03:20:28 1590877228 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
03:20:31 1590877231 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
03:22:11 1590877331 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
03:25:31 1590877531 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
05:47:26 1590886046 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
05:47:28 1590886048 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
05:47:29 1590886049 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:01:15 1590890475 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:01:18 1590890478 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:03:16 1590890596 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
07:03:18 1590890598 <09><><EFBFBD><EFBFBD>. <20>⪫<EFBFBD>祭<EFBFBD><E7A5AD> ०<><E0A5A6><EFBFBD> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
07:14:12 1590891252 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
07:14:12 1590891252 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
07:16:44 1590891404 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
10:04:41 1590901481 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
10:07:13 1590901633 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
12:12:42 1590909162 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
12:12:43 1590909163 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
12:15:09 1590909309 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
14:04:52 1590915892 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
14:07:28 1590916048 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
5
Tests/bin/Debug/netcoreapp3.1/temp/20200531.310
Normal file
5
Tests/bin/Debug/netcoreapp3.1/temp/20200531.310
Normal file
@@ -0,0 +1,5 @@
|
||||
04:18:02 1590880682 3 14
|
||||
05:18:40 1590884320 0 A-<2D><><EFBFBD>-32-067-2014 ॢ<><E0A5A2><EFBFBD><EFBFBD> 0
|
||||
06:55:14 1590890114 1 07394 2 BT 18, 20, 22, 23, 25 3 25 7 870 10 770 12 321143
|
||||
07:53:11 1590893591 1 07394 2 BT 18, 20, 22, 23, 25 3 25 4 2 5 Ti 6 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 7 870 8 3320 9 4780 10 770 11 <20><> 12 321143
|
||||
08:24:02 1590895442 0 A-<2D><><EFBFBD>-32-078-2017 ॢ<><E0A5A2><EFBFBD><EFBFBD> 1
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.311
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.311
Normal file
Binary file not shown.
75
Tests/bin/Debug/netcoreapp3.1/temp/20200531.312
Normal file
75
Tests/bin/Debug/netcoreapp3.1/temp/20200531.312
Normal file
@@ -0,0 +1,75 @@
|
||||
21 04:17:40 04:17:43
|
||||
Rsk= 24.4 Rkk= 21.7
|
||||
|
||||
22 04:36:00 04:46:35
|
||||
P1= 27.9 T1=04:41:35 P2= 50.3 T2=04:46:35 Vs= 4.47
|
||||
|
||||
20 06:56:03 06:56:12
|
||||
Riz_sol= 1330.0
|
||||
|
||||
21 06:56:23 06:56:26
|
||||
Rsk=1567.0 Rkk= 22.2
|
||||
|
||||
21 06:56:36 06:56:39
|
||||
Rsk=1569.0 Rkk= 22.2
|
||||
|
||||
21 06:56:52 06:56:55
|
||||
Rsk=1586.0 Rkk= 22.2
|
||||
|
||||
21 06:57:05 06:57:08
|
||||
Rsk= 24.9 Rkk= 22.1
|
||||
|
||||
22 07:26:26 07:42:02
|
||||
P1= 46.3 T1=07:37:02 P2= 60.7 T2=07:42:02 Vs= 2.87
|
||||
|
||||
23 07:42:21 07:42:26
|
||||
|
||||
|
||||
24 07:42:45 07:43:20
|
||||
|
||||
|
||||
30 07:43:57 07:44:21
|
||||
Vst= 29.2
|
||||
|
||||
31 07:44:36 07:44:41
|
||||
Rom_sol= -1.0
|
||||
|
||||
31 07:44:46 07:44:52
|
||||
Rom_sol= -1.0
|
||||
|
||||
31 07:45:02 07:45:07
|
||||
Rom_sol= -1.0
|
||||
|
||||
31 07:45:30 07:46:25
|
||||
Rom_sol= 13.2
|
||||
|
||||
41 07:47:16 07:47:21
|
||||
Ukz= 0.86
|
||||
|
||||
32 07:47:27 07:48:03
|
||||
Imax=11.0 Umax=50.0 T= 9.0
|
||||
|
||||
33 07:48:12 07:48:39
|
||||
Imin=16.0 Umin=25.0 T= 0.5
|
||||
|
||||
34 07:48:44 07:49:07
|
||||
V=300.0 T= 9.6
|
||||
|
||||
35 07:49:14 07:50:15
|
||||
Q= 54.3 T= 9.6
|
||||
|
||||
36 07:50:25 07:51:00
|
||||
P1=0.29 T= 3.1
|
||||
|
||||
37 07:51:07 07:51:45
|
||||
T= 1.1
|
||||
|
||||
38 07:51:50 07:51:57
|
||||
t= 52.0 T= 0.7
|
||||
|
||||
39 07:52:02 07:52:09
|
||||
t= 52.3 T= 0.7
|
||||
|
||||
40 07:52:14 07:52:21
|
||||
t= 52.3 T= 0.7
|
||||
|
15
Tests/bin/Debug/netcoreapp3.1/temp/20200531.313
Normal file
15
Tests/bin/Debug/netcoreapp3.1/temp/20200531.313
Normal file
@@ -0,0 +1,15 @@
|
||||
12 01:58:45 1590872325
|
||||
13 03:46:57 1590878817
|
||||
0 03:46:57 1590878817
|
||||
14 04:15:03 1590880503
|
||||
15 04:49:43 1590882583
|
||||
16 05:22:02 1590884522
|
||||
1 05:55:09 1590886509
|
||||
8 06:49:56 1590889796
|
||||
25 07:43:52 1590893032
|
||||
9 07:53:11 1590893591
|
||||
10 08:24:02 1590895442
|
||||
11 14:20:01 1590916801
|
||||
12 17:51:04 1590929464
|
||||
13 19:55:32 1590936932
|
||||
0 19:55:32 1590936932
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.314
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.314
Normal file
Binary file not shown.
3
Tests/bin/Debug/netcoreapp3.1/temp/20200531.315
Normal file
3
Tests/bin/Debug/netcoreapp3.1/temp/20200531.315
Normal file
@@ -0,0 +1,3 @@
|
||||
92 07:44:42 1590893082
|
||||
92 07:44:52 1590893092
|
||||
92 07:45:08 1590893108
|
80
Tests/bin/Debug/netcoreapp3.1/temp/20200531.316
Normal file
80
Tests/bin/Debug/netcoreapp3.1/temp/20200531.316
Normal file
@@ -0,0 +1,80 @@
|
||||
[01]
|
||||
oper = 12
|
||||
begin = 31.05.2020 01:58:45
|
||||
norma = 105
|
||||
real = 108
|
||||
|
||||
[02]
|
||||
oper = 13
|
||||
begin = 31.05.2020 03:46:57
|
||||
norma = 45
|
||||
real = 28
|
||||
|
||||
[03]
|
||||
oper = 14
|
||||
begin = 31.05.2020 04:15:03
|
||||
norma = 40
|
||||
vac_time = 7
|
||||
real = 34
|
||||
|
||||
[04]
|
||||
oper = 15
|
||||
begin = 31.05.2020 04:49:43
|
||||
norma = 30
|
||||
real = 32
|
||||
|
||||
[05]
|
||||
oper = 16
|
||||
begin = 31.05.2020 05:22:02
|
||||
norma = 40
|
||||
real = 33
|
||||
|
||||
[06]
|
||||
oper = 1
|
||||
begin = 31.05.2020 05:55:09
|
||||
norma = 85
|
||||
real = 54
|
||||
|
||||
[07]
|
||||
oper = 8
|
||||
begin = 31.05.2020 06:49:56
|
||||
norma = 40
|
||||
vac_time = 8
|
||||
real = 53
|
||||
|
||||
[08]
|
||||
oper = 25
|
||||
begin = 31.05.2020 07:43:52
|
||||
norma = 30
|
||||
real = 9
|
||||
|
||||
[09]
|
||||
oper = 9
|
||||
begin = 31.05.2020 07:53:11
|
||||
norma = 0
|
||||
real = 30
|
||||
|
||||
[10]
|
||||
oper = 10
|
||||
begin = 31.05.2020 08:24:02
|
||||
norma = 0
|
||||
real = 355
|
||||
|
||||
[11]
|
||||
oper = 11
|
||||
begin = 31.05.2020 14:20:01
|
||||
norma = 0
|
||||
real = 211
|
||||
|
||||
[12]
|
||||
oper = 12
|
||||
begin = 31.05.2020 17:51:04
|
||||
norma = 105
|
||||
real = 124
|
||||
|
||||
[13]
|
||||
oper = 13
|
||||
begin = 31.05.2020 19:55:32
|
||||
norma = 45
|
||||
real = 1601
|
||||
|
67
Tests/bin/Debug/netcoreapp3.1/temp/20200531.317
Normal file
67
Tests/bin/Debug/netcoreapp3.1/temp/20200531.317
Normal file
@@ -0,0 +1,67 @@
|
||||
00:05:02 1590865502 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
01:58:43 1590872323 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>(A)
|
||||
01:58:45 1590872325 <09><><EFBFBD> <20><><EFBFBD> <20>⪫<EFBFBD>祭
|
||||
01:58:45 1590872325 <09><><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
01:58:47 1590872327 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
01:59:32 1590872372 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:59:32 1590872372 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:59:32 1590872372 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:59:33 1590872373 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:59:33 1590872373 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:59:34 1590872374 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
02:02:25 1590872545 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
02:28:45 1590874125 <09><><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><> <20>믮<EFBFBD><EBAFAE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
04:48:37 1590882517 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
04:48:40 1590882520 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:48:47 1590882527 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:48:48 1590882528 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
04:48:51 1590882531 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
04:48:54 1590882534 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:49:07 1590882547 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
04:49:11 1590882551 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:49:24 1590882564 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
04:49:27 1590882567 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
04:50:30 1590882630 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
05:18:40 1590884320 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
05:20:06 1590884406 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
05:22:05 1590884525 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
05:22:28 1590884548 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:28 1590884548 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:28 1590884548 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:29 1590884549 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:29 1590884549 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:29 1590884549 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:29 1590884549 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:30 1590884550 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:30 1590884550 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:30 1590884550 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:31 1590884551 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:31 1590884551 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:31 1590884551 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:32 1590884552 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:32 1590884552 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:22:32 1590884552 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
05:25:22 1590884722 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
06:55:20 1590890120 <09><><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>㦥<EFBFBD>
|
||||
07:42:46 1590892966 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:43:21 1590893001 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
07:45:26 1590893126 <09><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>祭
|
||||
07:45:26 1590893126 <09><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>祭
|
||||
07:46:26 1590893186 <09><><EFBFBD><EFBFBD> <20><><EFBFBD> <20>⪫<EFBFBD>祭
|
||||
07:52:37 1590893557 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
07:52:39 1590893559 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
07:53:12 1590893592 <09><><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20>믮<EFBFBD><EBAFAE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
08:09:32 1590894572 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
08:24:02 1590895442 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
08:24:02 1590895442 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD>殮<EFBFBD><EFA6A5><EFBFBD> <20>㣨
|
||||
14:20:00 1590916800 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>
|
||||
14:20:01 1590916801 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
14:20:02 1590916802 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
15:16:02 1590920162 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
17:51:01 1590929461 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>(A)
|
||||
17:51:02 1590929462 <09><><EFBFBD> <20><><EFBFBD> <20>⪫<EFBFBD>祭
|
||||
17:51:02 1590929462 <09><><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
17:51:05 1590929465 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
17:51:51 1590929511 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
17:54:13 1590929653 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
18:21:02 1590931262 <09><><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><> <20>믮<EFBFBD><EBAFAE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.319
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.319
Normal file
Binary file not shown.
7
Tests/bin/Debug/netcoreapp3.1/temp/20200531.450
Normal file
7
Tests/bin/Debug/netcoreapp3.1/temp/20200531.450
Normal file
@@ -0,0 +1,7 @@
|
||||
05:25:05 1590884705 1 11412 2 BT 3-1, 6, 8, 9, 14, 15, 16 4 3 7 770 9 4750 10 690
|
||||
06:08:19 1590887299 1 11412 2 BT 3-1, 6, 8, 9, 14, 15, 16 3 25 4 3 5 Ti 6 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 7 770 8 5240 9 4750 10 690 11 <20><><EFBFBD> 12 320252
|
||||
06:50:58 1590889858 0 A-<2D><><EFBFBD>-32-031-2016 ॢ<><E0A5A2><EFBFBD><EFBFBD> 5
|
||||
09:26:14 1590899174 1 11413
|
||||
09:47:39 1590900459 12 321692
|
||||
10:18:49 1590902329 1 11413 2 BT 3-1, 6, 8, 9, 14, 15, 16 3 25 4 3 5 Ti 6 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 7 770 8 5240 9 4750 10 690 11 <20><><EFBFBD> 12 321692
|
||||
11:01:29 1590904889 0 A-<2D><><EFBFBD>-32-031-2016 ॢ<><E0A5A2><EFBFBD><EFBFBD> 5
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.451
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.451
Normal file
Binary file not shown.
102
Tests/bin/Debug/netcoreapp3.1/temp/20200531.452
Normal file
102
Tests/bin/Debug/netcoreapp3.1/temp/20200531.452
Normal file
@@ -0,0 +1,102 @@
|
||||
20 05:23:03 05:23:11
|
||||
Riz_sol= 4855.9
|
||||
|
||||
21 05:23:19 05:23:22
|
||||
Rsk= 17.5 Rkk= 13.9
|
||||
|
||||
22 05:45:37 06:00:42
|
||||
P1= 48.8 T1=05:55:42 P2= 62.2 T2=06:00:42 Vs= 2.69
|
||||
|
||||
23 06:00:51 06:00:56
|
||||
|
||||
|
||||
24 06:01:04 06:01:40
|
||||
|
||||
|
||||
30 06:01:52 06:02:15
|
||||
Vst= 29.0
|
||||
|
||||
31 06:02:27 06:03:00
|
||||
Rom_sol= 12.6
|
||||
|
||||
32 06:03:34 06:04:09
|
||||
Imax=10.9 Umax=50.0 T= 9.0
|
||||
|
||||
33 06:04:14 06:04:32
|
||||
Imin=15.8 Umin=25.0 T= 0.5
|
||||
|
||||
34 06:04:36 06:04:59
|
||||
V=300.2 T= 9.4
|
||||
|
||||
35 06:05:03 06:05:56
|
||||
Q= 54.2 T= 9.4
|
||||
|
||||
36 06:06:01 06:06:33
|
||||
P1=0.29 T= 2.9
|
||||
|
||||
37 06:06:37 06:07:08
|
||||
T= 0.9
|
||||
|
||||
38 06:07:11 06:07:18
|
||||
t= 51.6 T= 0.5
|
||||
|
||||
39 06:07:23 06:07:38
|
||||
tcam= 52.5 Tcam= 0.5 tfl= 54.6 Tfl= 0.5
|
||||
|
||||
40 06:07:41 06:07:48
|
||||
t= 51.7 T= 0.5
|
||||
|
||||
20 09:26:42 09:26:51
|
||||
Riz_sol= 4855.5
|
||||
|
||||
21 09:27:00 09:27:03
|
||||
Rsk= 17.5 Rkk= 13.7
|
||||
|
||||
31 09:27:54 09:28:31
|
||||
Rom_sol= 13.2
|
||||
|
||||
20 09:46:33 09:46:41
|
||||
Riz_sol= 4856.3
|
||||
|
||||
22 09:54:56 10:10:00
|
||||
P1= 50.4 T1=10:05:00 P2= 65.0 T2=10:10:00 Vs= 2.92
|
||||
|
||||
23 10:10:23 10:10:28
|
||||
|
||||
|
||||
24 10:10:37 10:11:26
|
||||
|
||||
|
||||
30 10:11:44 10:12:07
|
||||
Vst= 28.9
|
||||
|
||||
31 10:12:12 10:12:50
|
||||
Rom_sol= 12.9
|
||||
|
||||
32 10:13:26 10:14:03
|
||||
Imax=10.9 Umax=50.0 T= 9.0
|
||||
|
||||
33 10:14:10 10:14:30
|
||||
Imin=15.8 Umin=25.0 T= 0.5
|
||||
|
||||
34 10:14:35 10:14:59
|
||||
V=300.0 T= 9.4
|
||||
|
||||
35 10:15:06 10:16:01
|
||||
Q= 53.2 T= 9.4
|
||||
|
||||
36 10:16:07 05:00:00
|
||||
P1=0.29 T= 2.9
|
||||
|
||||
37 10:16:45 10:17:17
|
||||
T= 0.9
|
||||
|
||||
38 10:17:21 10:17:29
|
||||
t= 51.7 T= 0.5
|
||||
|
||||
39 10:17:33 10:17:50
|
||||
tcam= 52.4 Tcam= 0.5 tfl= 55.2 Tfl= 0.5
|
||||
|
||||
40 10:17:54 10:18:02
|
||||
t= 51.7 T= 0.5
|
||||
|
18
Tests/bin/Debug/netcoreapp3.1/temp/20200531.453
Normal file
18
Tests/bin/Debug/netcoreapp3.1/temp/20200531.453
Normal file
@@ -0,0 +1,18 @@
|
||||
12 01:13:13 1590869593
|
||||
13 04:15:32 1590880532
|
||||
0 04:15:32 1590880532
|
||||
8 05:16:01 1590884161
|
||||
25 06:01:49 1590886909
|
||||
9 06:08:19 1590887299
|
||||
10 06:50:58 1590889858
|
||||
8 06:53:38 1590890018
|
||||
13 08:20:46 1590895246
|
||||
00 08:43:07 1590896587
|
||||
8 09:23:01 1590898981
|
||||
25 10:11:41 1590901901
|
||||
9 10:18:49 1590902329
|
||||
10 11:01:29 1590904889
|
||||
11 14:34:13 1590917653
|
||||
12 17:21:14 1590927674
|
||||
13 19:06:19 1590933979
|
||||
0 19:06:19 1590933979
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.454
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.454
Normal file
Binary file not shown.
92
Tests/bin/Debug/netcoreapp3.1/temp/20200531.456
Normal file
92
Tests/bin/Debug/netcoreapp3.1/temp/20200531.456
Normal file
@@ -0,0 +1,92 @@
|
||||
[48]
|
||||
oper = 12
|
||||
begin = 31.05.2020 01:13:13
|
||||
norma = 180
|
||||
real = 182
|
||||
|
||||
[49]
|
||||
oper = 13
|
||||
begin = 31.05.2020 04:15:32
|
||||
norma = 45
|
||||
real = 60
|
||||
|
||||
[50]
|
||||
oper = 8
|
||||
begin = 31.05.2020 05:16:01
|
||||
norma = 40
|
||||
vac_time = 9
|
||||
real = 45
|
||||
|
||||
[51]
|
||||
oper = 25
|
||||
begin = 31.05.2020 06:01:49
|
||||
norma = 30
|
||||
real = 6
|
||||
|
||||
[52]
|
||||
oper = 9
|
||||
begin = 31.05.2020 06:08:19
|
||||
norma = 0
|
||||
real = 42
|
||||
|
||||
[53]
|
||||
oper = 10
|
||||
begin = 31.05.2020 06:50:58
|
||||
norma = 0
|
||||
real = 2
|
||||
|
||||
[54]
|
||||
oper = 8
|
||||
begin = 31.05.2020 06:53:38
|
||||
norma = 40
|
||||
real = 87
|
||||
|
||||
[55]
|
||||
oper = 13
|
||||
begin = 31.05.2020 08:20:46
|
||||
norma = 45
|
||||
real = 62
|
||||
|
||||
[56]
|
||||
oper = 8
|
||||
begin = 31.05.2020 09:23:01
|
||||
norma = 40
|
||||
vac_time = 13
|
||||
real = 48
|
||||
|
||||
[57]
|
||||
oper = 25
|
||||
begin = 31.05.2020 10:11:41
|
||||
norma = 30
|
||||
real = 7
|
||||
|
||||
[58]
|
||||
oper = 9
|
||||
begin = 31.05.2020 10:18:49
|
||||
norma = 0
|
||||
real = 42
|
||||
|
||||
[59]
|
||||
oper = 10
|
||||
begin = 31.05.2020 11:01:29
|
||||
norma = 0
|
||||
real = 212
|
||||
|
||||
[60]
|
||||
oper = 11
|
||||
begin = 31.05.2020 14:34:13
|
||||
norma = 0
|
||||
real = 167
|
||||
|
||||
[61]
|
||||
oper = 12
|
||||
begin = 31.05.2020 17:21:14
|
||||
norma = 105
|
||||
real = 105
|
||||
|
||||
[62]
|
||||
oper = 13
|
||||
begin = 31.05.2020 19:06:19
|
||||
norma = 45
|
||||
real = 2775
|
||||
|
32
Tests/bin/Debug/netcoreapp3.1/temp/20200531.457
Normal file
32
Tests/bin/Debug/netcoreapp3.1/temp/20200531.457
Normal file
@@ -0,0 +1,32 @@
|
||||
01:13:21 1590869601 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
01:13:37 1590869617 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:13:38 1590869618 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
01:15:54 1590869754 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
06:01:06 1590886866 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:01:41 1590886901 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:08:00 1590887280 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
06:08:03 1590887283 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
06:33:54 1590888834 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:50:58 1590889858 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
06:50:59 1590889859 <09><><EFBFBD><EFBFBD>祭 <20>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
06:52:22 1590889942 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
06:52:42 1590889962 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
06:56:02 1590890162 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
06:58:15 1590890295 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
||||
09:34:55 1590899695 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
09:34:55 1590899695 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
10:10:50 1590901850 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
10:11:27 1590901887 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
10:18:16 1590902296 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
||||
10:18:19 1590902299 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
10:44:25 1590903865 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
11:01:29 1590904889 <09>⪫<EFBFBD>祭 ०<><E0A5A6> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>(A)
|
||||
11:01:29 1590904889 <09><><EFBFBD><EFBFBD>祭 <20>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
14:34:12 1590917652 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>
|
||||
14:34:13 1590917653 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
14:34:14 1590917654 <09><><EFBFBD><EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
16:26:13 1590924373 <09>⪫<EFBFBD>祭 ॣ<><E0A5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> '<27><><EFBFBD><EFBFBD><EFBFBD>-2'(A)
|
||||
17:21:09 1590927669 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD>(A)
|
||||
17:21:16 1590927676 <09>⪫<EFBFBD>祭 ०<><E0A5A6> '<27><> ⮪<><E2AEAA> <20>㣨'
|
||||
17:21:34 1590927694 <09><><EFBFBD><EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>
|
||||
17:23:54 1590927834 <09>⪫<EFBFBD>祭 ०<><E0A5A6> <20><><EFBFBD><EFBFBD>᪠ <20><><EFBFBD><EFBFBD>(A)
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.459
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200531.459
Normal file
Binary file not shown.
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200601.211
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200601.211
Normal file
Binary file not shown.
3
Tests/bin/Debug/netcoreapp3.1/temp/20200601.212
Normal file
3
Tests/bin/Debug/netcoreapp3.1/temp/20200601.212
Normal file
@@ -0,0 +1,3 @@
|
||||
21 22:21:10 22:21:13
|
||||
Rsk= 13.3 Rkk= 7.1
|
||||
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200601.214
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200601.214
Normal file
Binary file not shown.
2
Tests/bin/Debug/netcoreapp3.1/temp/20200601.310
Normal file
2
Tests/bin/Debug/netcoreapp3.1/temp/20200601.310
Normal file
@@ -0,0 +1,2 @@
|
||||
22:45:08 1591033508 1 07395 7 770 9 4600 11 <20><><EFBFBD> 12 321547
|
||||
22:45:24 1591033524 10 690
|
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200601.311
Normal file
BIN
Tests/bin/Debug/netcoreapp3.1/temp/20200601.311
Normal file
Binary file not shown.
9
Tests/bin/Debug/netcoreapp3.1/temp/20200601.312
Normal file
9
Tests/bin/Debug/netcoreapp3.1/temp/20200601.312
Normal file
@@ -0,0 +1,9 @@
|
||||
21 22:44:06 22:44:09
|
||||
Rsk= 29.1 Rkk= 26.6
|
||||
|
||||
20 22:54:12 22:54:22
|
||||
Riz_sol= 1283.0
|
||||
|
||||
22 23:39:52 23:55:28
|
||||
P1= 76.4 T1=23:50:28 P2=106.6 T2=23:55:28 Vs= 6.04
|
||||
|
1
Tests/bin/Debug/netcoreapp3.1/temp/20200601.313
Normal file
1
Tests/bin/Debug/netcoreapp3.1/temp/20200601.313
Normal file
@@ -0,0 +1 @@
|
||||
8 22:36:54 1591033014
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user