ok gestione aggiornamento file status
This commit is contained in:
@@ -8,7 +8,7 @@ namespace SMGen.Data.Data
|
||||
{
|
||||
public class FilesClass
|
||||
{
|
||||
public string origFileName { get; set; } = "";
|
||||
public string provFileName { get; set; } = "";
|
||||
public string DLoadFileName { get; set; } = "";
|
||||
public bool isOk { get; set; } = false;
|
||||
}
|
||||
|
||||
@@ -89,26 +89,17 @@ namespace SMGen.Data.Services
|
||||
return dbResult;
|
||||
}
|
||||
|
||||
public async Task<bool> FilesLoadRedis(Dictionary<string, bool> filesDict)
|
||||
public async Task<bool> FilesLoadRedis(Dictionary<string, FilesClass> filesDict)
|
||||
{
|
||||
bool fatto = false;
|
||||
string currKey = $"{Constants.FILES_TO_PROC}";
|
||||
#if false
|
||||
Stopwatch stopWatch = new Stopwatch();
|
||||
stopWatch.Start();
|
||||
string? rawData = await redisDb.StringGetAsync(currKey);
|
||||
if (string.IsNullOrEmpty(rawData))
|
||||
{
|
||||
rawData = JsonConvert.SerializeObject(filesList, JSSettings);
|
||||
fatto = await redisDb.StringSetAsync(currKey, rawData, LongCache);
|
||||
}
|
||||
stopWatch.Stop();
|
||||
TimeSpan ts = stopWatch.Elapsed;
|
||||
Log.Debug($"FilesLoad | REDIS in: {ts.TotalMilliseconds} ms");
|
||||
#endif
|
||||
await ExecFlushRedisPattern(currKey);
|
||||
|
||||
foreach (var item in filesDict)
|
||||
{
|
||||
await RedHashUpsert(currKey, item.Key, item.Value);
|
||||
string valSer = JsonConvert.SerializeObject(item.Value, JSSettings);
|
||||
|
||||
await RedHashUpsert(currKey, item.Key, valSer);
|
||||
}
|
||||
|
||||
fatto = true;
|
||||
@@ -116,6 +107,61 @@ namespace SMGen.Data.Services
|
||||
return fatto;
|
||||
}
|
||||
|
||||
public async Task<bool> FileUpdate(string origFileName, FilesClass fileNewInfo)
|
||||
{
|
||||
bool fatto = false;
|
||||
string currKey = $"{Constants.FILES_TO_PROC}";
|
||||
//await ExecFlushRedisPattern(currKey);
|
||||
string valSer = JsonConvert.SerializeObject(fileNewInfo, JSSettings);
|
||||
|
||||
await RedHashUpsert(currKey, origFileName, valSer);
|
||||
|
||||
fatto = true;
|
||||
|
||||
return fatto;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="pattern"></param>
|
||||
/// <returns></returns>
|
||||
public async Task<bool> ExecFlushRedisPattern(RedisValue pattern)
|
||||
{
|
||||
bool answ = false;
|
||||
var listEndpoints = redisConn.GetEndPoints();
|
||||
foreach (var endPoint in listEndpoints)
|
||||
{
|
||||
//var server = redisConnAdmin.GetServer(listEndpoints[0]);
|
||||
var server = redisConn.GetServer(endPoint);
|
||||
if (server != null)
|
||||
{
|
||||
var keyList = server.Keys(redisDb.Database, pattern);
|
||||
foreach (var item in keyList)
|
||||
{
|
||||
await redisDb.KeyDeleteAsync(item);
|
||||
}
|
||||
answ = true;
|
||||
}
|
||||
}
|
||||
|
||||
return answ;
|
||||
}
|
||||
|
||||
public async Task<Dictionary<string, FilesClass>> FilesGetAll()
|
||||
{
|
||||
Dictionary<string, FilesClass> dbResult = new Dictionary<string, FilesClass>();
|
||||
string currKey = $"{Constants.FILES_TO_PROC}";
|
||||
var rawData = await redisDb.HashGetAllAsync(currKey);
|
||||
foreach (var item in rawData)
|
||||
{
|
||||
var desVal = JsonConvert.DeserializeObject<FilesClass>(item.Value);
|
||||
dbResult.Add($"{item.Name}", desVal);
|
||||
}
|
||||
|
||||
return dbResult;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Effettua upsert in HasList redis
|
||||
/// </summary>
|
||||
@@ -123,7 +169,7 @@ namespace SMGen.Data.Services
|
||||
/// <param name="chiave">Chiave nella HashList</param>
|
||||
/// <param name="valore">Valore da salvare</param>
|
||||
/// <returns>Num record nella HashList</returns>
|
||||
protected async Task<long> RedHashUpsert(RedisKey currKey, string chiave, bool valore)
|
||||
protected async Task<long> RedHashUpsert(RedisKey currKey, string chiave, string valore)
|
||||
{
|
||||
long numReq = 0;
|
||||
Stopwatch stopWatch = new Stopwatch();
|
||||
|
||||
@@ -4,18 +4,19 @@
|
||||
<tr>
|
||||
<th scope="col">Rul file</th>
|
||||
<th scope="col">Status</th>
|
||||
<th scope="col"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in FilesStatus)
|
||||
@foreach (var item in Files)
|
||||
{
|
||||
<tr>
|
||||
<td scope="row">@item.Key</td>
|
||||
@if (item.Value)
|
||||
@if (item.Value.isOk)
|
||||
{
|
||||
<td class="text-success"><i class="fa-solid fa-circle-check"></i></td>
|
||||
<td>
|
||||
<a href="Download?fileName=@Files2Download[item.Key]" target="_blank" class="btn btn-sm bg-success"><i class="fa-solid fa-download"></i></a>
|
||||
<a href="Download?fileName=@item.Value.DLoadFileName" target="_blank" class="btn btn-sm bg-success"><i class="fa-solid fa-download"></i></a>
|
||||
</td>
|
||||
|
||||
}
|
||||
|
||||
@@ -15,6 +15,8 @@ using SMGen;
|
||||
using SMGen.Shared;
|
||||
using SMGen.Components;
|
||||
using SMGen.Data;
|
||||
using SMGen.Data.Data;
|
||||
using SMGen.Data.Services;
|
||||
|
||||
namespace SMGen.Components
|
||||
{
|
||||
@@ -32,6 +34,10 @@ namespace SMGen.Components
|
||||
public EventCallback<int> updateRecordCount { get; set; }
|
||||
[Parameter]
|
||||
public SelectSMIn2EvParams currFilter { get; set; } = null!;
|
||||
|
||||
[Inject]
|
||||
protected SMGDataService SMGDService { get; set; } = null!;
|
||||
|
||||
private int currPage
|
||||
{
|
||||
get => currFilter.CurrPage;
|
||||
@@ -71,12 +77,14 @@ namespace SMGen.Components
|
||||
await ReloadData();
|
||||
}
|
||||
|
||||
protected Dictionary<string, FilesClass> Files { get; set; } = new Dictionary<string, FilesClass>();
|
||||
protected Dictionary<string, FilesClass> FilesTemp { get; set; } = new Dictionary<string, FilesClass>();
|
||||
protected async Task ReloadData()
|
||||
{
|
||||
await Task.Delay(1);
|
||||
FilesStatusTemp = FilesStatus;
|
||||
totalCount = FilesStatusTemp.Count;
|
||||
FilesStatus = FilesStatusTemp.Skip(numRecord * (currPage - 1)).Take(numRecord).ToDictionary(x => x.Key, y => y.Value);
|
||||
FilesTemp = await SMGDService.FilesGetAll();
|
||||
totalCount = FilesTemp.Count;
|
||||
Files = FilesTemp.Skip(numRecord * (currPage - 1)).Take(numRecord).ToDictionary(x => x.Key, y => y.Value);
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<InputFile OnChange="@LoadFiles" multiple />
|
||||
</div>
|
||||
<div>
|
||||
@if (files2Read.Count > 0)
|
||||
@if (Files.Count > 0)
|
||||
{
|
||||
<button @onclick="()=>Read_rule_file_transitions()">Process</button>
|
||||
}
|
||||
|
||||
@@ -2,7 +2,9 @@ using EgwCoreLib.Razor;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
using NLog;
|
||||
using SMGen.Core;
|
||||
using SMGen.Data;
|
||||
using SMGen.Data.Data;
|
||||
using SMGen.Data.DbModels;
|
||||
using SMGen.Data.Services;
|
||||
|
||||
@@ -61,6 +63,7 @@ namespace SMGen.Pages
|
||||
}
|
||||
|
||||
protected List<RuleClass> Rules { get; set; } = new List<RuleClass>();
|
||||
protected Dictionary<string, FilesClass> Files { get; set; } = new Dictionary<string, FilesClass>();
|
||||
|
||||
[Inject]
|
||||
protected SMGDataService SMGDService { get; set; } = null!;
|
||||
@@ -89,6 +92,12 @@ namespace SMGen.Pages
|
||||
|
||||
#region Protected Methods
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
await Task.Delay(1);
|
||||
await SMGDService.ExecFlushRedisPattern(Constants.FILES_TO_PROC);
|
||||
}
|
||||
|
||||
protected bool checkDirExist(string dir)
|
||||
{
|
||||
bool answ = false;
|
||||
@@ -191,15 +200,19 @@ namespace SMGen.Pages
|
||||
|
||||
//await SMGDService.AnagEventinInsert(events2Add);
|
||||
await Task.Delay(1);
|
||||
filesStatus[origFileName] = true;
|
||||
Files[origFileName].isOk = true;
|
||||
Files[origFileName].DLoadFileName = sz_file2Write;
|
||||
|
||||
await SMGDService.FileUpdate(origFileName, Files[origFileName]);
|
||||
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
// await SMGDService.TranInInsert(TranInList2add, int.Parse(n_state_machine_index));
|
||||
|
||||
files2Download.Add(origFileName, sz_file2Write);
|
||||
//files2Download.Add(origFileName, sz_file2Write);
|
||||
}
|
||||
catch
|
||||
{
|
||||
filesStatus[origFileName] = false;
|
||||
Files[origFileName].isOk = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -228,9 +241,13 @@ namespace SMGen.Pages
|
||||
|
||||
protected async Task Read_rule_file_transitions()
|
||||
{
|
||||
foreach (var item in files2Read)
|
||||
//files2Read = await SMGDService.FilesGetAll();
|
||||
|
||||
Files = await SMGDService.FilesGetAll();
|
||||
|
||||
foreach (var item in Files)
|
||||
{
|
||||
sz_file2Read = item.Value;
|
||||
sz_file2Read = item.Value.provFileName;
|
||||
|
||||
using (StreamReader sr = new StreamReader(sz_file2Read))
|
||||
{
|
||||
@@ -435,8 +452,16 @@ namespace SMGen.Pages
|
||||
}
|
||||
if (file.Name.Contains(".rul"))
|
||||
{
|
||||
files2Read.Add(file.Name, pathFile);
|
||||
filesStatus.Add(file.Name, false);
|
||||
|
||||
var newFIle = new FilesClass()
|
||||
{
|
||||
provFileName = pathFile,
|
||||
isOk = false
|
||||
};
|
||||
|
||||
Files.Add(file.Name, newFIle);
|
||||
//files2Read.Add(file.Name, pathFile);
|
||||
//filesStatus.Add(file.Name, false);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -444,11 +469,12 @@ namespace SMGen.Pages
|
||||
Log.Error($"Generato errore durante caricamento file: {Environment.NewLine}{ex}");
|
||||
}
|
||||
|
||||
if(filesStatus != null && filesStatus.Count > 0)
|
||||
if(Files != null && Files.Count > 0)
|
||||
{
|
||||
await SMGDService.FilesLoadRedis(filesStatus);
|
||||
await SMGDService.FilesLoadRedis(Files);
|
||||
}
|
||||
}
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
|
||||
#endregion Private Methods
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<InputFile OnChange="@LoadFiles" multiple />
|
||||
</div>
|
||||
<div>
|
||||
@if (files2Read.Count > 0)
|
||||
@if (Files.Count > 0)
|
||||
{
|
||||
<button @onclick="()=>Read_rule_file_transitions()">Process</button>
|
||||
}
|
||||
|
||||
@@ -2,7 +2,9 @@ using EgwCoreLib.Razor;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
using NLog;
|
||||
using SMGen.Core;
|
||||
using SMGen.Data;
|
||||
using SMGen.Data.Data;
|
||||
using SMGen.Data.DbModels;
|
||||
using SMGen.Data.Services;
|
||||
using System.Text;
|
||||
@@ -19,6 +21,7 @@ namespace SMGen.Pages
|
||||
|
||||
#endregion Protected Fields
|
||||
|
||||
protected Dictionary<string, FilesClass> Files { get; set; } = new Dictionary<string, FilesClass>();
|
||||
#region Protected Properties
|
||||
|
||||
protected bool b_rules_definition { get; set; } = false;
|
||||
@@ -80,7 +83,11 @@ namespace SMGen.Pages
|
||||
#endregion Protected Properties
|
||||
|
||||
#region Protected Methods
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
await Task.Delay(1);
|
||||
await SMGDService.ExecFlushRedisPattern(Constants.FILES_TO_PROC);
|
||||
}
|
||||
protected bool checkDirExist(string dir)
|
||||
{
|
||||
bool answ = false;
|
||||
@@ -225,10 +232,17 @@ namespace SMGen.Pages
|
||||
{
|
||||
sw.Write(sb.ToString());
|
||||
}
|
||||
await Task.Delay(1);
|
||||
Files[origFileName].isOk = true;
|
||||
Files[origFileName].DLoadFileName = sz_file2Write;
|
||||
|
||||
await SMGDService.FileUpdate(origFileName, Files[origFileName]);
|
||||
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
catch
|
||||
{
|
||||
filesStatus[origFileName] = false;
|
||||
Files[origFileName].isOk = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -256,7 +270,8 @@ namespace SMGen.Pages
|
||||
|
||||
protected async Task Read_rule_file_transitions()
|
||||
{
|
||||
foreach (var item in files2Read)
|
||||
Files = await SMGDService.FilesGetAll();
|
||||
foreach (var item in Files)
|
||||
{
|
||||
//await Task.Delay(10);
|
||||
sz_state_machine_name = "";
|
||||
@@ -267,7 +282,7 @@ namespace SMGen.Pages
|
||||
Bits.Clear();
|
||||
Events_to_send.Clear();
|
||||
Rules.Clear();
|
||||
sz_file2Read = item.Value;
|
||||
sz_file2Read = item.Value.provFileName;
|
||||
|
||||
using (StreamReader sr = new StreamReader(sz_file2Read))
|
||||
{
|
||||
@@ -485,14 +500,26 @@ namespace SMGen.Pages
|
||||
|
||||
if (file.Name.Contains(".rul"))
|
||||
{
|
||||
files2Read.Add(file.Name, pathFile);
|
||||
filesStatus.Add(file.Name, false);
|
||||
|
||||
var newFIle = new FilesClass()
|
||||
{
|
||||
provFileName = pathFile,
|
||||
isOk = false
|
||||
};
|
||||
|
||||
Files.Add(file.Name, newFIle);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
}
|
||||
|
||||
if (Files != null && Files.Count > 0)
|
||||
{
|
||||
await SMGDService.FilesLoadRedis(Files);
|
||||
}
|
||||
}
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
protected static Logger Log = LogManager.GetCurrentClassLogger();
|
||||
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;1;-1;5
|
||||
10;1;-1;2
|
||||
10;1;-1;2
|
||||
10;1;-1;3
|
||||
10;1;-1;2
|
||||
10;1;-1;5
|
||||
10;1;-1;2
|
||||
10;1;-1;2
|
||||
10;1;-1;3
|
||||
10;1;-1;2
|
||||
10;2;-1;1
|
||||
10;2;-1;5
|
||||
10;2;-1;3
|
||||
10;2;-1;1
|
||||
10;2;-1;5
|
||||
10;2;-1;3
|
||||
10;3;-1;1
|
||||
10;3;-1;5
|
||||
10;3;-1;2
|
||||
10;3;-1;2
|
||||
10;3;-1;2
|
||||
10;4;-1;1
|
||||
10;4;-1;5
|
||||
10;4;-1;2
|
||||
10;4;-1;2
|
||||
10;4;-1;3
|
||||
10;4;-1;2
|
||||
10;5;-1;1
|
||||
10;5;-1;2
|
||||
10;5;-1;2
|
||||
10;5;-1;3
|
||||
10;5;-1;2
|
||||
10;6;-1;1
|
||||
10;6;-1;5
|
||||
10;6;-1;2
|
||||
10;6;-1;2
|
||||
10;6;-1;3
|
||||
10;6;-1;2
|
||||
10;7;-1;1
|
||||
10;7;-1;5
|
||||
10;7;-1;2
|
||||
10;7;-1;2
|
||||
10;7;-1;3
|
||||
10;7;-1;2
|
||||
|
@@ -0,0 +1,43 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
11;1;-1;7
|
||||
11;1;-1;6
|
||||
11;1;-1;5
|
||||
11;1;-1;4
|
||||
11;1;-1;3
|
||||
11;1;-1;2
|
||||
11;2;-1;1
|
||||
11;2;-1;7
|
||||
11;2;-1;6
|
||||
11;2;-1;5
|
||||
11;2;-1;4
|
||||
11;2;-1;3
|
||||
11;3;-1;1
|
||||
11;3;-1;7
|
||||
11;3;-1;6
|
||||
11;3;-1;5
|
||||
11;3;-1;4
|
||||
11;3;-1;2
|
||||
11;4;-1;1
|
||||
11;4;-1;7
|
||||
11;4;-1;6
|
||||
11;4;-1;5
|
||||
11;4;-1;3
|
||||
11;4;-1;2
|
||||
11;5;-1;1
|
||||
11;5;-1;7
|
||||
11;5;-1;6
|
||||
11;5;-1;4
|
||||
11;5;-1;3
|
||||
11;5;-1;2
|
||||
11;6;-1;1
|
||||
11;6;-1;7
|
||||
11;6;-1;5
|
||||
11;6;-1;4
|
||||
11;6;-1;3
|
||||
11;6;-1;2
|
||||
11;7;-1;1
|
||||
11;7;-1;6
|
||||
11;7;-1;5
|
||||
11;7;-1;4
|
||||
11;7;-1;3
|
||||
11;7;-1;2
|
||||
|
@@ -1,9 +1,9 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;2;1;13
|
||||
12;2;3;3
|
||||
12;2;4;4
|
||||
12;2;4;33
|
||||
12;2;5;5
|
||||
12;2;6;6
|
||||
12;2;6;34
|
||||
12;2;7;7
|
||||
12;2;8;8
|
||||
12;2;9;9
|
||||
@@ -15,17 +15,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;2;28;26
|
||||
12;2;31;31
|
||||
12;2;32;32
|
||||
12;2;37;33
|
||||
12;2;4;33
|
||||
12;2;38;34
|
||||
12;2;39;35
|
||||
12;2;40;34
|
||||
12;2;49;49
|
||||
12;2;50;50
|
||||
12;3;1;13
|
||||
12;3;2;2
|
||||
12;3;4;4
|
||||
12;3;4;33
|
||||
12;3;5;5
|
||||
12;3;6;6
|
||||
12;3;6;34
|
||||
12;3;7;7
|
||||
12;3;8;8
|
||||
12;3;9;9
|
||||
@@ -37,39 +36,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;3;28;26
|
||||
12;3;31;31
|
||||
12;3;32;32
|
||||
12;3;37;33
|
||||
12;3;4;33
|
||||
12;3;38;34
|
||||
12;3;39;35
|
||||
12;3;40;34
|
||||
12;3;49;49
|
||||
12;3;50;50
|
||||
12;4;1;13
|
||||
12;4;2;2
|
||||
12;4;3;3
|
||||
12;4;5;5
|
||||
12;4;6;6
|
||||
12;4;7;7
|
||||
12;4;8;8
|
||||
12;4;9;9
|
||||
12;4;10;10
|
||||
12;4;12;11
|
||||
12;4;14;11
|
||||
12;4;19;30
|
||||
12;4;26;27
|
||||
12;4;28;26
|
||||
12;4;31;31
|
||||
12;4;32;32
|
||||
12;4;37;33
|
||||
12;4;38;34
|
||||
12;4;39;35
|
||||
12;4;40;34
|
||||
12;4;49;49
|
||||
12;4;50;50
|
||||
12;5;1;13
|
||||
12;5;2;2
|
||||
12;5;3;3
|
||||
12;5;4;4
|
||||
12;5;6;6
|
||||
12;5;4;33
|
||||
12;5;6;34
|
||||
12;5;7;7
|
||||
12;5;8;8
|
||||
12;5;9;9
|
||||
@@ -81,40 +57,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;5;28;26
|
||||
12;5;31;31
|
||||
12;5;32;32
|
||||
12;5;37;33
|
||||
12;5;4;33
|
||||
12;5;38;34
|
||||
12;5;39;35
|
||||
12;5;40;34
|
||||
12;5;49;49
|
||||
12;5;50;50
|
||||
12;6;1;13
|
||||
12;6;2;2
|
||||
12;6;3;3
|
||||
12;6;4;4
|
||||
12;6;5;5
|
||||
12;6;7;7
|
||||
12;6;8;8
|
||||
12;6;9;9
|
||||
12;6;10;10
|
||||
12;6;12;11
|
||||
12;6;14;11
|
||||
12;6;19;30
|
||||
12;6;26;27
|
||||
12;6;28;26
|
||||
12;6;31;31
|
||||
12;6;32;32
|
||||
12;6;37;33
|
||||
12;6;38;34
|
||||
12;6;39;35
|
||||
12;6;40;34
|
||||
12;6;49;49
|
||||
12;6;50;50
|
||||
12;7;1;13
|
||||
12;7;2;2
|
||||
12;7;3;3
|
||||
12;7;4;4
|
||||
12;7;4;33
|
||||
12;7;5;5
|
||||
12;7;6;6
|
||||
12;7;6;34
|
||||
12;7;8;8
|
||||
12;7;9;9
|
||||
12;7;10;10
|
||||
@@ -125,18 +78,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;7;28;26
|
||||
12;7;31;31
|
||||
12;7;32;32
|
||||
12;7;37;33
|
||||
12;7;4;33
|
||||
12;7;38;34
|
||||
12;7;39;35
|
||||
12;7;40;34
|
||||
12;7;49;49
|
||||
12;7;50;50
|
||||
12;8;1;13
|
||||
12;8;2;2
|
||||
12;8;3;3
|
||||
12;8;4;4
|
||||
12;8;4;33
|
||||
12;8;5;5
|
||||
12;8;6;6
|
||||
12;8;6;34
|
||||
12;8;7;7
|
||||
12;8;9;9
|
||||
12;8;10;10
|
||||
@@ -147,18 +99,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;8;28;26
|
||||
12;8;31;31
|
||||
12;8;32;32
|
||||
12;8;37;33
|
||||
12;8;4;33
|
||||
12;8;38;34
|
||||
12;8;39;35
|
||||
12;8;40;34
|
||||
12;8;49;49
|
||||
12;8;50;50
|
||||
12;9;1;13
|
||||
12;9;2;2
|
||||
12;9;3;3
|
||||
12;9;4;4
|
||||
12;9;4;33
|
||||
12;9;5;5
|
||||
12;9;6;6
|
||||
12;9;6;34
|
||||
12;9;7;7
|
||||
12;9;8;8
|
||||
12;9;10;10
|
||||
@@ -169,18 +120,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;9;28;26
|
||||
12;9;31;31
|
||||
12;9;32;32
|
||||
12;9;37;33
|
||||
12;9;4;33
|
||||
12;9;38;34
|
||||
12;9;39;35
|
||||
12;9;40;34
|
||||
12;9;49;49
|
||||
12;9;50;50
|
||||
12;10;1;13
|
||||
12;10;2;2
|
||||
12;10;3;3
|
||||
12;10;4;4
|
||||
12;10;4;33
|
||||
12;10;5;5
|
||||
12;10;6;6
|
||||
12;10;6;34
|
||||
12;10;7;7
|
||||
12;10;8;8
|
||||
12;10;9;9
|
||||
@@ -191,18 +141,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;10;28;26
|
||||
12;10;31;31
|
||||
12;10;32;32
|
||||
12;10;37;33
|
||||
12;10;4;33
|
||||
12;10;38;34
|
||||
12;10;39;35
|
||||
12;10;40;34
|
||||
12;10;49;49
|
||||
12;10;50;50
|
||||
12;11;1;13
|
||||
12;11;2;2
|
||||
12;11;3;3
|
||||
12;11;4;4
|
||||
12;11;4;33
|
||||
12;11;5;5
|
||||
12;11;6;6
|
||||
12;11;6;34
|
||||
12;11;7;7
|
||||
12;11;8;8
|
||||
12;11;9;9
|
||||
@@ -225,18 +174,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;11;33;15
|
||||
12;11;35;13
|
||||
12;11;36;14
|
||||
12;11;37;33
|
||||
12;11;4;33
|
||||
12;11;38;34
|
||||
12;11;39;35
|
||||
12;11;40;34
|
||||
12;11;49;49
|
||||
12;11;50;50
|
||||
12;12;1;13
|
||||
12;12;2;2
|
||||
12;12;3;3
|
||||
12;12;4;4
|
||||
12;12;4;33
|
||||
12;12;5;5
|
||||
12;12;6;6
|
||||
12;12;6;34
|
||||
12;12;7;7
|
||||
12;12;8;8
|
||||
12;12;9;9
|
||||
@@ -257,17 +205,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;12;32;32
|
||||
12;12;33;15
|
||||
12;12;35;13
|
||||
12;12;37;33
|
||||
12;12;4;33
|
||||
12;12;38;34
|
||||
12;12;39;35
|
||||
12;12;40;34
|
||||
12;12;49;49
|
||||
12;12;50;50
|
||||
12;13;2;2
|
||||
12;13;3;3
|
||||
12;13;4;4
|
||||
12;13;4;33
|
||||
12;13;5;5
|
||||
12;13;6;6
|
||||
12;13;6;34
|
||||
12;13;7;7
|
||||
12;13;8;8
|
||||
12;13;9;9
|
||||
@@ -287,18 +234,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;13;31;31
|
||||
12;13;32;32
|
||||
12;13;33;15
|
||||
12;13;37;33
|
||||
12;13;4;33
|
||||
12;13;38;34
|
||||
12;13;39;35
|
||||
12;13;40;34
|
||||
12;13;49;49
|
||||
12;13;50;50
|
||||
12;14;1;13
|
||||
12;14;2;2
|
||||
12;14;3;3
|
||||
12;14;4;4
|
||||
12;14;4;33
|
||||
12;14;5;5
|
||||
12;14;6;6
|
||||
12;14;6;34
|
||||
12;14;7;7
|
||||
12;14;8;8
|
||||
12;14;9;9
|
||||
@@ -320,18 +266,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;14;32;32
|
||||
12;14;33;15
|
||||
12;14;35;13
|
||||
12;14;37;33
|
||||
12;14;4;33
|
||||
12;14;38;34
|
||||
12;14;39;35
|
||||
12;14;40;34
|
||||
12;14;49;49
|
||||
12;14;50;50
|
||||
12;15;1;13
|
||||
12;15;2;2
|
||||
12;15;3;3
|
||||
12;15;4;4
|
||||
12;15;4;33
|
||||
12;15;5;5
|
||||
12;15;6;6
|
||||
12;15;6;34
|
||||
12;15;7;7
|
||||
12;15;8;8
|
||||
12;15;9;9
|
||||
@@ -352,18 +297,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;15;31;31
|
||||
12;15;32;32
|
||||
12;15;35;13
|
||||
12;15;37;33
|
||||
12;15;4;33
|
||||
12;15;38;34
|
||||
12;15;39;35
|
||||
12;15;40;34
|
||||
12;15;49;49
|
||||
12;15;50;50
|
||||
12;23;1;13
|
||||
12;23;2;2
|
||||
12;23;3;3
|
||||
12;23;4;4
|
||||
12;23;4;33
|
||||
12;23;5;5
|
||||
12;23;6;6
|
||||
12;23;6;34
|
||||
12;23;7;7
|
||||
12;23;8;8
|
||||
12;23;9;9
|
||||
@@ -388,18 +332,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;23;33;15
|
||||
12;23;35;13
|
||||
12;23;36;14
|
||||
12;23;37;33
|
||||
12;23;4;33
|
||||
12;23;38;34
|
||||
12;23;39;35
|
||||
12;23;40;34
|
||||
12;23;49;49
|
||||
12;23;50;50
|
||||
12;24;1;13
|
||||
12;24;2;2
|
||||
12;24;3;3
|
||||
12;24;4;4
|
||||
12;24;4;33
|
||||
12;24;5;5
|
||||
12;24;6;6
|
||||
12;24;6;34
|
||||
12;24;7;7
|
||||
12;24;8;8
|
||||
12;24;9;9
|
||||
@@ -420,18 +363,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;24;32;32
|
||||
12;24;33;15
|
||||
12;24;35;13
|
||||
12;24;37;33
|
||||
12;24;4;33
|
||||
12;24;38;34
|
||||
12;24;39;35
|
||||
12;24;40;34
|
||||
12;24;49;49
|
||||
12;24;50;50
|
||||
12;25;1;13
|
||||
12;25;2;2
|
||||
12;25;3;3
|
||||
12;25;4;4
|
||||
12;25;4;33
|
||||
12;25;5;5
|
||||
12;25;6;6
|
||||
12;25;6;34
|
||||
12;25;7;7
|
||||
12;25;8;8
|
||||
12;25;9;9
|
||||
@@ -455,18 +397,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;25;33;15
|
||||
12;25;35;13
|
||||
12;25;36;14
|
||||
12;25;37;33
|
||||
12;25;4;33
|
||||
12;25;38;34
|
||||
12;25;39;35
|
||||
12;25;40;34
|
||||
12;25;49;49
|
||||
12;25;50;50
|
||||
12;26;1;13
|
||||
12;26;2;2
|
||||
12;26;3;3
|
||||
12;26;4;4
|
||||
12;26;4;33
|
||||
12;26;5;5
|
||||
12;26;6;6
|
||||
12;26;6;34
|
||||
12;26;7;7
|
||||
12;26;8;8
|
||||
12;26;9;9
|
||||
@@ -491,18 +432,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;26;33;15
|
||||
12;26;35;13
|
||||
12;26;36;14
|
||||
12;26;37;33
|
||||
12;26;4;33
|
||||
12;26;38;34
|
||||
12;26;39;35
|
||||
12;26;40;34
|
||||
12;26;49;49
|
||||
12;26;50;50
|
||||
12;27;1;13
|
||||
12;27;2;2
|
||||
12;27;3;3
|
||||
12;27;4;4
|
||||
12;27;4;33
|
||||
12;27;5;5
|
||||
12;27;6;6
|
||||
12;27;6;34
|
||||
12;27;7;7
|
||||
12;27;8;8
|
||||
12;27;9;9
|
||||
@@ -513,18 +453,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;27;28;26
|
||||
12;27;31;31
|
||||
12;27;32;32
|
||||
12;27;37;33
|
||||
12;27;4;33
|
||||
12;27;38;34
|
||||
12;27;39;35
|
||||
12;27;40;34
|
||||
12;27;49;49
|
||||
12;27;50;50
|
||||
12;28;1;13
|
||||
12;28;2;2
|
||||
12;28;3;3
|
||||
12;28;4;4
|
||||
12;28;4;33
|
||||
12;28;5;5
|
||||
12;28;6;6
|
||||
12;28;6;34
|
||||
12;28;7;7
|
||||
12;28;8;8
|
||||
12;28;9;9
|
||||
@@ -536,18 +475,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;28;26;27
|
||||
12;28;31;31
|
||||
12;28;32;32
|
||||
12;28;37;33
|
||||
12;28;4;33
|
||||
12;28;38;34
|
||||
12;28;39;35
|
||||
12;28;40;34
|
||||
12;28;49;49
|
||||
12;28;50;50
|
||||
12;29;1;13
|
||||
12;29;2;2
|
||||
12;29;3;3
|
||||
12;29;4;4
|
||||
12;29;4;33
|
||||
12;29;5;5
|
||||
12;29;6;6
|
||||
12;29;6;34
|
||||
12;29;7;7
|
||||
12;29;8;8
|
||||
12;29;9;9
|
||||
@@ -560,18 +498,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;29;26;27
|
||||
12;29;31;31
|
||||
12;29;32;32
|
||||
12;29;37;33
|
||||
12;29;4;33
|
||||
12;29;38;34
|
||||
12;29;39;35
|
||||
12;29;40;34
|
||||
12;29;49;49
|
||||
12;29;50;50
|
||||
12;30;1;13
|
||||
12;30;2;2
|
||||
12;30;3;3
|
||||
12;30;4;4
|
||||
12;30;4;33
|
||||
12;30;5;5
|
||||
12;30;6;6
|
||||
12;30;6;34
|
||||
12;30;7;7
|
||||
12;30;8;8
|
||||
12;30;9;9
|
||||
@@ -581,18 +518,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;30;26;27
|
||||
12;30;31;31
|
||||
12;30;32;32
|
||||
12;30;37;33
|
||||
12;30;4;33
|
||||
12;30;38;34
|
||||
12;30;39;35
|
||||
12;30;40;34
|
||||
12;30;49;49
|
||||
12;30;50;50
|
||||
12;31;1;13
|
||||
12;31;2;2
|
||||
12;31;3;3
|
||||
12;31;4;4
|
||||
12;31;4;33
|
||||
12;31;5;5
|
||||
12;31;6;6
|
||||
12;31;6;34
|
||||
12;31;7;7
|
||||
12;31;8;8
|
||||
12;31;9;9
|
||||
@@ -603,18 +539,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;31;26;27
|
||||
12;31;28;26
|
||||
12;31;32;32
|
||||
12;31;37;33
|
||||
12;31;4;33
|
||||
12;31;38;34
|
||||
12;31;39;35
|
||||
12;31;40;34
|
||||
12;31;49;49
|
||||
12;31;50;50
|
||||
12;32;1;13
|
||||
12;32;2;2
|
||||
12;32;3;3
|
||||
12;32;4;4
|
||||
12;32;4;33
|
||||
12;32;5;5
|
||||
12;32;6;6
|
||||
12;32;6;34
|
||||
12;32;7;7
|
||||
12;32;8;8
|
||||
12;32;9;9
|
||||
@@ -625,18 +560,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;32;26;27
|
||||
12;32;28;26
|
||||
12;32;31;31
|
||||
12;32;37;33
|
||||
12;32;4;33
|
||||
12;32;38;34
|
||||
12;32;39;35
|
||||
12;32;40;34
|
||||
12;32;49;49
|
||||
12;32;50;50
|
||||
12;33;1;13
|
||||
12;33;2;2
|
||||
12;33;3;3
|
||||
12;33;4;4
|
||||
12;33;5;5
|
||||
12;33;6;6
|
||||
12;33;6;34
|
||||
12;33;7;7
|
||||
12;33;8;8
|
||||
12;33;9;9
|
||||
@@ -649,15 +582,13 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;33;31;31
|
||||
12;33;38;34
|
||||
12;33;39;35
|
||||
12;33;40;34
|
||||
12;33;49;49
|
||||
12;33;50;50
|
||||
12;34;1;13
|
||||
12;34;2;2
|
||||
12;34;3;3
|
||||
12;34;4;4
|
||||
12;34;4;33
|
||||
12;34;5;5
|
||||
12;34;6;6
|
||||
12;34;7;7
|
||||
12;34;8;8
|
||||
12;34;9;9
|
||||
@@ -671,16 +602,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;34;26;27
|
||||
12;34;28;26
|
||||
12;34;31;31
|
||||
12;34;37;33
|
||||
12;34;4;33
|
||||
12;34;39;35
|
||||
12;34;49;49
|
||||
12;34;50;50
|
||||
12;35;1;13
|
||||
12;35;2;2
|
||||
12;35;3;3
|
||||
12;35;4;4
|
||||
12;35;4;33
|
||||
12;35;5;5
|
||||
12;35;6;6
|
||||
12;35;6;34
|
||||
12;35;7;7
|
||||
12;35;8;8
|
||||
12;35;9;9
|
||||
@@ -691,17 +622,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;35;26;27
|
||||
12;35;28;26
|
||||
12;35;31;31
|
||||
12;35;37;33
|
||||
12;35;4;33
|
||||
12;35;38;34
|
||||
12;35;40;34
|
||||
12;35;49;49
|
||||
12;35;50;50
|
||||
12;49;1;13
|
||||
12;49;2;2
|
||||
12;49;3;3
|
||||
12;49;4;4
|
||||
12;49;4;33
|
||||
12;49;5;5
|
||||
12;49;6;6
|
||||
12;49;6;34
|
||||
12;49;7;7
|
||||
12;49;8;8
|
||||
12;49;9;9
|
||||
@@ -712,17 +642,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;49;26;27
|
||||
12;49;28;26
|
||||
12;49;32;32
|
||||
12;49;37;33
|
||||
12;49;4;33
|
||||
12;49;38;34
|
||||
12;49;39;35
|
||||
12;49;40;34
|
||||
12;49;50;50
|
||||
12;50;1;13
|
||||
12;50;2;2
|
||||
12;50;3;3
|
||||
12;50;4;4
|
||||
12;50;4;33
|
||||
12;50;5;5
|
||||
12;50;6;6
|
||||
12;50;6;34
|
||||
12;50;7;7
|
||||
12;50;8;8
|
||||
12;50;9;9
|
||||
@@ -733,8 +662,7 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;50;26;27
|
||||
12;50;28;26
|
||||
12;50;31;31
|
||||
12;50;37;33
|
||||
12;50;4;33
|
||||
12;50;38;34
|
||||
12;50;39;35
|
||||
12;50;40;34
|
||||
12;50;49;49
|
||||
|
||||
|
@@ -1,797 +0,0 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;1;2;2
|
||||
12;1;3;3
|
||||
12;1;4;4
|
||||
12;1;5;5
|
||||
12;1;6;6
|
||||
12;1;7;7
|
||||
12;1;8;8
|
||||
12;1;9;9
|
||||
12;1;10;10
|
||||
12;1;12;11
|
||||
12;1;14;11
|
||||
12;1;15;12
|
||||
12;1;16;13
|
||||
12;1;17;14
|
||||
12;1;18;15
|
||||
12;1;19;30
|
||||
12;1;20;14
|
||||
12;1;21;13
|
||||
12;1;22;14
|
||||
12;1;23;23
|
||||
12;1;24;24
|
||||
12;1;25;25
|
||||
12;1;26;27
|
||||
12;1;28;26
|
||||
12;1;29;28
|
||||
12;1;30;29
|
||||
12;1;31;31
|
||||
12;1;32;32
|
||||
12;1;33;15
|
||||
12;1;35;13
|
||||
12;1;36;14
|
||||
12;1;37;33
|
||||
12;1;38;34
|
||||
12;1;39;35
|
||||
12;1;40;34
|
||||
12;1;49;49
|
||||
12;1;50;50
|
||||
12;2;1;13
|
||||
12;2;3;3
|
||||
12;2;4;4
|
||||
12;2;5;5
|
||||
12;2;6;6
|
||||
12;2;7;7
|
||||
12;2;8;8
|
||||
12;2;9;9
|
||||
12;2;10;10
|
||||
12;2;12;11
|
||||
12;2;14;11
|
||||
12;2;19;30
|
||||
12;2;26;27
|
||||
12;2;28;26
|
||||
12;2;31;31
|
||||
12;2;32;32
|
||||
12;2;37;33
|
||||
12;2;38;34
|
||||
12;2;39;35
|
||||
12;2;40;34
|
||||
12;2;49;49
|
||||
12;2;50;50
|
||||
12;3;1;13
|
||||
12;3;2;2
|
||||
12;3;4;4
|
||||
12;3;5;5
|
||||
12;3;6;6
|
||||
12;3;7;7
|
||||
12;3;8;8
|
||||
12;3;9;9
|
||||
12;3;10;10
|
||||
12;3;12;11
|
||||
12;3;14;11
|
||||
12;3;19;30
|
||||
12;3;26;27
|
||||
12;3;28;26
|
||||
12;3;31;31
|
||||
12;3;32;32
|
||||
12;3;37;33
|
||||
12;3;38;34
|
||||
12;3;39;35
|
||||
12;3;40;34
|
||||
12;3;49;49
|
||||
12;3;50;50
|
||||
12;4;1;13
|
||||
12;4;2;2
|
||||
12;4;3;3
|
||||
12;4;5;5
|
||||
12;4;6;6
|
||||
12;4;7;7
|
||||
12;4;8;8
|
||||
12;4;9;9
|
||||
12;4;10;10
|
||||
12;4;12;11
|
||||
12;4;14;11
|
||||
12;4;19;30
|
||||
12;4;26;27
|
||||
12;4;28;26
|
||||
12;4;31;31
|
||||
12;4;32;32
|
||||
12;4;37;33
|
||||
12;4;38;34
|
||||
12;4;39;35
|
||||
12;4;40;34
|
||||
12;4;49;49
|
||||
12;4;50;50
|
||||
12;5;1;13
|
||||
12;5;2;2
|
||||
12;5;3;3
|
||||
12;5;4;4
|
||||
12;5;6;6
|
||||
12;5;7;7
|
||||
12;5;8;8
|
||||
12;5;9;9
|
||||
12;5;10;10
|
||||
12;5;12;11
|
||||
12;5;14;11
|
||||
12;5;19;30
|
||||
12;5;26;27
|
||||
12;5;28;26
|
||||
12;5;31;31
|
||||
12;5;32;32
|
||||
12;5;37;33
|
||||
12;5;38;34
|
||||
12;5;39;35
|
||||
12;5;40;34
|
||||
12;5;49;49
|
||||
12;5;50;50
|
||||
12;6;1;13
|
||||
12;6;2;2
|
||||
12;6;3;3
|
||||
12;6;4;4
|
||||
12;6;5;5
|
||||
12;6;7;7
|
||||
12;6;8;8
|
||||
12;6;9;9
|
||||
12;6;10;10
|
||||
12;6;12;11
|
||||
12;6;14;11
|
||||
12;6;19;30
|
||||
12;6;26;27
|
||||
12;6;28;26
|
||||
12;6;31;31
|
||||
12;6;32;32
|
||||
12;6;37;33
|
||||
12;6;38;34
|
||||
12;6;39;35
|
||||
12;6;40;34
|
||||
12;6;49;49
|
||||
12;6;50;50
|
||||
12;7;1;13
|
||||
12;7;2;2
|
||||
12;7;3;3
|
||||
12;7;4;4
|
||||
12;7;5;5
|
||||
12;7;6;6
|
||||
12;7;8;8
|
||||
12;7;9;9
|
||||
12;7;10;10
|
||||
12;7;12;11
|
||||
12;7;14;11
|
||||
12;7;19;30
|
||||
12;7;26;27
|
||||
12;7;28;26
|
||||
12;7;31;31
|
||||
12;7;32;32
|
||||
12;7;37;33
|
||||
12;7;38;34
|
||||
12;7;39;35
|
||||
12;7;40;34
|
||||
12;7;49;49
|
||||
12;7;50;50
|
||||
12;8;1;13
|
||||
12;8;2;2
|
||||
12;8;3;3
|
||||
12;8;4;4
|
||||
12;8;5;5
|
||||
12;8;6;6
|
||||
12;8;7;7
|
||||
12;8;9;9
|
||||
12;8;10;10
|
||||
12;8;12;11
|
||||
12;8;14;11
|
||||
12;8;19;30
|
||||
12;8;26;27
|
||||
12;8;28;26
|
||||
12;8;31;31
|
||||
12;8;32;32
|
||||
12;8;37;33
|
||||
12;8;38;34
|
||||
12;8;39;35
|
||||
12;8;40;34
|
||||
12;8;49;49
|
||||
12;8;50;50
|
||||
12;9;1;13
|
||||
12;9;2;2
|
||||
12;9;3;3
|
||||
12;9;4;4
|
||||
12;9;5;5
|
||||
12;9;6;6
|
||||
12;9;7;7
|
||||
12;9;8;8
|
||||
12;9;10;10
|
||||
12;9;12;11
|
||||
12;9;14;11
|
||||
12;9;19;30
|
||||
12;9;26;27
|
||||
12;9;28;26
|
||||
12;9;31;31
|
||||
12;9;32;32
|
||||
12;9;37;33
|
||||
12;9;38;34
|
||||
12;9;39;35
|
||||
12;9;40;34
|
||||
12;9;49;49
|
||||
12;9;50;50
|
||||
12;10;1;13
|
||||
12;10;2;2
|
||||
12;10;3;3
|
||||
12;10;4;4
|
||||
12;10;5;5
|
||||
12;10;6;6
|
||||
12;10;7;7
|
||||
12;10;8;8
|
||||
12;10;9;9
|
||||
12;10;12;11
|
||||
12;10;14;11
|
||||
12;10;19;30
|
||||
12;10;26;27
|
||||
12;10;28;26
|
||||
12;10;31;31
|
||||
12;10;32;32
|
||||
12;10;37;33
|
||||
12;10;38;34
|
||||
12;10;39;35
|
||||
12;10;40;34
|
||||
12;10;49;49
|
||||
12;10;50;50
|
||||
12;11;1;13
|
||||
12;11;2;2
|
||||
12;11;3;3
|
||||
12;11;4;4
|
||||
12;11;5;5
|
||||
12;11;6;6
|
||||
12;11;7;7
|
||||
12;11;8;8
|
||||
12;11;9;9
|
||||
12;11;10;10
|
||||
12;11;15;12
|
||||
12;11;16;13
|
||||
12;11;17;14
|
||||
12;11;18;15
|
||||
12;11;19;30
|
||||
12;11;20;14
|
||||
12;11;21;13
|
||||
12;11;22;14
|
||||
12;11;23;23
|
||||
12;11;24;24
|
||||
12;11;25;25
|
||||
12;11;26;27
|
||||
12;11;29;28
|
||||
12;11;30;29
|
||||
12;11;31;31
|
||||
12;11;32;32
|
||||
12;11;33;15
|
||||
12;11;35;13
|
||||
12;11;36;14
|
||||
12;11;37;33
|
||||
12;11;38;34
|
||||
12;11;39;35
|
||||
12;11;40;34
|
||||
12;11;49;49
|
||||
12;11;50;50
|
||||
12;12;1;13
|
||||
12;12;2;2
|
||||
12;12;3;3
|
||||
12;12;4;4
|
||||
12;12;5;5
|
||||
12;12;6;6
|
||||
12;12;7;7
|
||||
12;12;8;8
|
||||
12;12;9;9
|
||||
12;12;10;10
|
||||
12;12;12;11
|
||||
12;12;14;11
|
||||
12;12;16;13
|
||||
12;12;17;12
|
||||
12;12;18;15
|
||||
12;12;19;30
|
||||
12;12;20;12
|
||||
12;12;21;13
|
||||
12;12;22;12
|
||||
12;12;23;23
|
||||
12;12;24;24
|
||||
12;12;25;25
|
||||
12;12;26;27
|
||||
12;12;28;26
|
||||
12;12;29;28
|
||||
12;12;30;29
|
||||
12;12;31;31
|
||||
12;12;32;32
|
||||
12;12;33;15
|
||||
12;12;35;13
|
||||
12;12;36;12
|
||||
12;12;37;33
|
||||
12;12;38;34
|
||||
12;12;39;35
|
||||
12;12;40;34
|
||||
12;12;49;49
|
||||
12;12;50;50
|
||||
12;13;1;13
|
||||
12;13;2;2
|
||||
12;13;3;3
|
||||
12;13;4;4
|
||||
12;13;5;5
|
||||
12;13;6;6
|
||||
12;13;7;7
|
||||
12;13;8;8
|
||||
12;13;9;9
|
||||
12;13;10;10
|
||||
12;13;12;11
|
||||
12;13;14;11
|
||||
12;13;15;12
|
||||
12;13;17;13
|
||||
12;13;18;15
|
||||
12;13;19;30
|
||||
12;13;20;13
|
||||
12;13;22;13
|
||||
12;13;23;23
|
||||
12;13;24;24
|
||||
12;13;25;25
|
||||
12;13;26;27
|
||||
12;13;27;12
|
||||
12;13;28;26
|
||||
12;13;29;28
|
||||
12;13;30;29
|
||||
12;13;31;31
|
||||
12;13;32;32
|
||||
12;13;33;15
|
||||
12;13;36;13
|
||||
12;13;37;33
|
||||
12;13;38;34
|
||||
12;13;39;35
|
||||
12;13;40;34
|
||||
12;13;49;49
|
||||
12;13;50;50
|
||||
12;14;1;13
|
||||
12;14;2;2
|
||||
12;14;3;3
|
||||
12;14;4;4
|
||||
12;14;5;5
|
||||
12;14;6;6
|
||||
12;14;7;7
|
||||
12;14;8;8
|
||||
12;14;9;9
|
||||
12;14;10;10
|
||||
12;14;12;11
|
||||
12;14;14;11
|
||||
12;14;15;12
|
||||
12;14;16;13
|
||||
12;14;18;15
|
||||
12;14;19;30
|
||||
12;14;21;13
|
||||
12;14;23;23
|
||||
12;14;24;24
|
||||
12;14;25;25
|
||||
12;14;26;27
|
||||
12;14;28;26
|
||||
12;14;29;28
|
||||
12;14;30;29
|
||||
12;14;31;31
|
||||
12;14;32;32
|
||||
12;14;33;15
|
||||
12;14;35;13
|
||||
12;14;37;33
|
||||
12;14;38;34
|
||||
12;14;39;35
|
||||
12;14;40;34
|
||||
12;14;49;49
|
||||
12;14;50;50
|
||||
12;15;1;13
|
||||
12;15;2;2
|
||||
12;15;3;3
|
||||
12;15;4;4
|
||||
12;15;5;5
|
||||
12;15;6;6
|
||||
12;15;7;7
|
||||
12;15;8;8
|
||||
12;15;9;9
|
||||
12;15;10;10
|
||||
12;15;12;11
|
||||
12;15;14;11
|
||||
12;15;15;12
|
||||
12;15;16;13
|
||||
12;15;17;15
|
||||
12;15;19;30
|
||||
12;15;20;15
|
||||
12;15;21;13
|
||||
12;15;22;15
|
||||
12;15;23;23
|
||||
12;15;24;24
|
||||
12;15;25;25
|
||||
12;15;26;27
|
||||
12;15;28;26
|
||||
12;15;29;28
|
||||
12;15;30;29
|
||||
12;15;31;31
|
||||
12;15;32;32
|
||||
12;15;35;13
|
||||
12;15;36;15
|
||||
12;15;37;33
|
||||
12;15;38;34
|
||||
12;15;39;35
|
||||
12;15;40;34
|
||||
12;15;49;49
|
||||
12;15;50;50
|
||||
12;23;1;13
|
||||
12;23;2;2
|
||||
12;23;3;3
|
||||
12;23;4;4
|
||||
12;23;5;5
|
||||
12;23;6;6
|
||||
12;23;7;7
|
||||
12;23;8;8
|
||||
12;23;9;9
|
||||
12;23;10;10
|
||||
12;23;12;11
|
||||
12;23;14;11
|
||||
12;23;15;12
|
||||
12;23;16;13
|
||||
12;23;17;14
|
||||
12;23;18;15
|
||||
12;23;19;30
|
||||
12;23;20;14
|
||||
12;23;21;13
|
||||
12;23;22;14
|
||||
12;23;24;24
|
||||
12;23;25;25
|
||||
12;23;26;27
|
||||
12;23;28;26
|
||||
12;23;29;28
|
||||
12;23;30;29
|
||||
12;23;31;31
|
||||
12;23;32;32
|
||||
12;23;33;15
|
||||
12;23;35;13
|
||||
12;23;36;14
|
||||
12;23;37;33
|
||||
12;23;38;34
|
||||
12;23;39;35
|
||||
12;23;40;34
|
||||
12;23;49;49
|
||||
12;23;50;50
|
||||
12;24;1;13
|
||||
12;24;2;2
|
||||
12;24;3;3
|
||||
12;24;4;4
|
||||
12;24;5;5
|
||||
12;24;6;6
|
||||
12;24;7;7
|
||||
12;24;8;8
|
||||
12;24;9;9
|
||||
12;24;10;10
|
||||
12;24;12;11
|
||||
12;24;14;11
|
||||
12;24;15;12
|
||||
12;24;16;13
|
||||
12;24;17;24
|
||||
12;24;18;15
|
||||
12;24;19;30
|
||||
12;24;20;24
|
||||
12;24;21;13
|
||||
12;24;22;24
|
||||
12;24;23;23
|
||||
12;24;25;25
|
||||
12;24;26;27
|
||||
12;24;28;26
|
||||
12;24;29;28
|
||||
12;24;30;29
|
||||
12;24;31;31
|
||||
12;24;32;32
|
||||
12;24;33;15
|
||||
12;24;35;13
|
||||
12;24;36;24
|
||||
12;24;37;33
|
||||
12;24;38;34
|
||||
12;24;39;35
|
||||
12;24;40;34
|
||||
12;24;49;49
|
||||
12;24;50;50
|
||||
12;25;1;13
|
||||
12;25;2;2
|
||||
12;25;3;3
|
||||
12;25;4;4
|
||||
12;25;5;5
|
||||
12;25;6;6
|
||||
12;25;7;7
|
||||
12;25;8;8
|
||||
12;25;9;9
|
||||
12;25;10;10
|
||||
12;25;12;11
|
||||
12;25;14;11
|
||||
12;25;16;13
|
||||
12;25;17;14
|
||||
12;25;18;15
|
||||
12;25;19;30
|
||||
12;25;20;14
|
||||
12;25;21;13
|
||||
12;25;22;14
|
||||
12;25;23;23
|
||||
12;25;24;24
|
||||
12;25;26;27
|
||||
12;25;28;26
|
||||
12;25;29;28
|
||||
12;25;30;29
|
||||
12;25;31;31
|
||||
12;25;32;32
|
||||
12;25;33;15
|
||||
12;25;35;13
|
||||
12;25;36;14
|
||||
12;25;37;33
|
||||
12;25;38;34
|
||||
12;25;39;35
|
||||
12;25;40;34
|
||||
12;25;49;49
|
||||
12;25;50;50
|
||||
12;26;1;13
|
||||
12;26;2;2
|
||||
12;26;3;3
|
||||
12;26;4;4
|
||||
12;26;5;5
|
||||
12;26;6;6
|
||||
12;26;7;7
|
||||
12;26;8;8
|
||||
12;26;9;9
|
||||
12;26;10;10
|
||||
12;26;12;11
|
||||
12;26;14;11
|
||||
12;26;15;12
|
||||
12;26;16;13
|
||||
12;26;17;14
|
||||
12;26;18;15
|
||||
12;26;19;30
|
||||
12;26;20;14
|
||||
12;26;21;13
|
||||
12;26;22;14
|
||||
12;26;23;23
|
||||
12;26;24;24
|
||||
12;26;25;25
|
||||
12;26;26;27
|
||||
12;26;29;28
|
||||
12;26;30;29
|
||||
12;26;31;31
|
||||
12;26;32;32
|
||||
12;26;33;15
|
||||
12;26;35;13
|
||||
12;26;36;14
|
||||
12;26;37;33
|
||||
12;26;38;34
|
||||
12;26;39;35
|
||||
12;26;40;34
|
||||
12;26;49;49
|
||||
12;26;50;50
|
||||
12;27;1;13
|
||||
12;27;2;2
|
||||
12;27;3;3
|
||||
12;27;4;4
|
||||
12;27;5;5
|
||||
12;27;6;6
|
||||
12;27;7;7
|
||||
12;27;8;8
|
||||
12;27;9;9
|
||||
12;27;10;10
|
||||
12;27;12;11
|
||||
12;27;14;11
|
||||
12;27;19;30
|
||||
12;27;28;26
|
||||
12;27;31;31
|
||||
12;27;32;32
|
||||
12;27;37;33
|
||||
12;27;38;34
|
||||
12;27;39;35
|
||||
12;27;40;34
|
||||
12;27;49;49
|
||||
12;27;50;50
|
||||
12;28;1;13
|
||||
12;28;2;2
|
||||
12;28;3;3
|
||||
12;28;4;4
|
||||
12;28;5;5
|
||||
12;28;6;6
|
||||
12;28;7;7
|
||||
12;28;8;8
|
||||
12;28;9;9
|
||||
12;28;10;10
|
||||
12;28;12;11
|
||||
12;28;14;11
|
||||
12;28;16;13
|
||||
12;28;19;30
|
||||
12;28;26;27
|
||||
12;28;31;31
|
||||
12;28;32;32
|
||||
12;28;37;33
|
||||
12;28;38;34
|
||||
12;28;39;35
|
||||
12;28;40;34
|
||||
12;28;49;49
|
||||
12;28;50;50
|
||||
12;29;1;13
|
||||
12;29;2;2
|
||||
12;29;3;3
|
||||
12;29;4;4
|
||||
12;29;5;5
|
||||
12;29;6;6
|
||||
12;29;7;7
|
||||
12;29;8;8
|
||||
12;29;9;9
|
||||
12;29;10;10
|
||||
12;29;12;11
|
||||
12;29;14;11
|
||||
12;29;16;13
|
||||
12;29;19;30
|
||||
12;29;24;24
|
||||
12;29;26;27
|
||||
12;29;31;31
|
||||
12;29;32;32
|
||||
12;29;37;33
|
||||
12;29;38;34
|
||||
12;29;39;35
|
||||
12;29;40;34
|
||||
12;29;49;49
|
||||
12;29;50;50
|
||||
12;30;1;13
|
||||
12;30;2;2
|
||||
12;30;3;3
|
||||
12;30;4;4
|
||||
12;30;5;5
|
||||
12;30;6;6
|
||||
12;30;7;7
|
||||
12;30;8;8
|
||||
12;30;9;9
|
||||
12;30;10;10
|
||||
12;30;12;11
|
||||
12;30;14;11
|
||||
12;30;26;27
|
||||
12;30;31;31
|
||||
12;30;32;32
|
||||
12;30;37;33
|
||||
12;30;38;34
|
||||
12;30;39;35
|
||||
12;30;40;34
|
||||
12;30;49;49
|
||||
12;30;50;50
|
||||
12;31;1;13
|
||||
12;31;2;2
|
||||
12;31;3;3
|
||||
12;31;4;4
|
||||
12;31;5;5
|
||||
12;31;6;6
|
||||
12;31;7;7
|
||||
12;31;8;8
|
||||
12;31;9;9
|
||||
12;31;10;10
|
||||
12;31;12;11
|
||||
12;31;14;11
|
||||
12;31;19;30
|
||||
12;31;26;27
|
||||
12;31;28;26
|
||||
12;31;32;32
|
||||
12;31;37;33
|
||||
12;31;38;34
|
||||
12;31;39;35
|
||||
12;31;40;34
|
||||
12;31;50;50
|
||||
12;32;1;13
|
||||
12;32;2;2
|
||||
12;32;3;3
|
||||
12;32;4;4
|
||||
12;32;5;5
|
||||
12;32;6;6
|
||||
12;32;7;7
|
||||
12;32;8;8
|
||||
12;32;9;9
|
||||
12;32;10;10
|
||||
12;32;12;11
|
||||
12;32;14;11
|
||||
12;32;19;30
|
||||
12;32;26;27
|
||||
12;32;28;26
|
||||
12;32;31;31
|
||||
12;32;37;33
|
||||
12;32;38;34
|
||||
12;32;39;35
|
||||
12;32;40;34
|
||||
12;32;49;49
|
||||
12;33;1;13
|
||||
12;33;2;2
|
||||
12;33;3;3
|
||||
12;33;4;4
|
||||
12;33;5;5
|
||||
12;33;6;6
|
||||
12;33;7;7
|
||||
12;33;8;8
|
||||
12;33;9;9
|
||||
12;33;10;10
|
||||
12;33;12;11
|
||||
12;33;14;11
|
||||
12;33;19;30
|
||||
12;33;26;27
|
||||
12;33;28;26
|
||||
12;33;31;31
|
||||
12;33;38;34
|
||||
12;33;39;35
|
||||
12;33;40;34
|
||||
12;33;49;49
|
||||
12;34;1;13
|
||||
12;34;2;2
|
||||
12;34;3;3
|
||||
12;34;4;4
|
||||
12;34;5;5
|
||||
12;34;6;6
|
||||
12;34;7;7
|
||||
12;34;8;8
|
||||
12;34;9;9
|
||||
12;34;10;10
|
||||
12;34;12;11
|
||||
12;34;14;11
|
||||
12;34;15;12
|
||||
12;34;16;13
|
||||
12;34;19;30
|
||||
12;34;24;24
|
||||
12;34;26;27
|
||||
12;34;28;26
|
||||
12;34;31;31
|
||||
12;34;37;33
|
||||
12;34;39;35
|
||||
12;34;49;49
|
||||
12;35;1;13
|
||||
12;35;2;2
|
||||
12;35;3;3
|
||||
12;35;4;4
|
||||
12;35;5;5
|
||||
12;35;6;6
|
||||
12;35;7;7
|
||||
12;35;8;8
|
||||
12;35;9;9
|
||||
12;35;10;10
|
||||
12;35;12;11
|
||||
12;35;14;11
|
||||
12;35;19;30
|
||||
12;35;26;27
|
||||
12;35;28;26
|
||||
12;35;31;31
|
||||
12;35;37;33
|
||||
12;35;38;34
|
||||
12;35;40;34
|
||||
12;35;49;49
|
||||
12;49;1;13
|
||||
12;49;2;2
|
||||
12;49;3;3
|
||||
12;49;4;4
|
||||
12;49;5;5
|
||||
12;49;6;6
|
||||
12;49;7;7
|
||||
12;49;8;8
|
||||
12;49;9;9
|
||||
12;49;10;10
|
||||
12;49;12;11
|
||||
12;49;14;11
|
||||
12;49;19;30
|
||||
12;49;26;27
|
||||
12;49;28;26
|
||||
12;49;32;32
|
||||
12;49;37;33
|
||||
12;49;38;34
|
||||
12;49;39;35
|
||||
12;49;40;34
|
||||
12;49;50;50
|
||||
12;50;1;13
|
||||
12;50;2;2
|
||||
12;50;3;3
|
||||
12;50;4;4
|
||||
12;50;5;5
|
||||
12;50;6;6
|
||||
12;50;7;7
|
||||
12;50;8;8
|
||||
12;50;9;9
|
||||
12;50;10;10
|
||||
12;50;12;11
|
||||
12;50;14;11
|
||||
12;50;19;30
|
||||
12;50;26;27
|
||||
12;50;28;26
|
||||
12;50;31;31
|
||||
12;50;37;33
|
||||
12;50;38;34
|
||||
12;50;39;35
|
||||
12;50;40;34
|
||||
12;50;49;49
|
||||
|
@@ -0,0 +1,135 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
15;0;-1;1
|
||||
15;0;-1;9
|
||||
15;0;-1;7
|
||||
15;0;-1;7
|
||||
15;0;-1;5
|
||||
15;0;-1;4
|
||||
15;0;-1;3
|
||||
15;0;-1;2
|
||||
15;0;-1;1
|
||||
15;0;-1;9
|
||||
15;0;-1;7
|
||||
15;0;-1;7
|
||||
15;0;-1;5
|
||||
15;0;-1;4
|
||||
15;0;-1;3
|
||||
15;0;-1;2
|
||||
15;1;-1;9
|
||||
15;1;-1;7
|
||||
15;1;-1;7
|
||||
15;1;-1;5
|
||||
15;1;-1;4
|
||||
15;1;-1;3
|
||||
15;1;-1;2
|
||||
15;1;-1;9
|
||||
15;1;-1;7
|
||||
15;1;-1;7
|
||||
15;1;-1;5
|
||||
15;1;-1;4
|
||||
15;1;-1;3
|
||||
15;1;-1;2
|
||||
15;1;-1;9
|
||||
15;1;-1;7
|
||||
15;1;-1;7
|
||||
15;1;-1;5
|
||||
15;1;-1;4
|
||||
15;1;-1;3
|
||||
15;1;-1;2
|
||||
15;1;-1;9
|
||||
15;1;-1;7
|
||||
15;1;-1;7
|
||||
15;1;-1;5
|
||||
15;1;-1;4
|
||||
15;1;-1;3
|
||||
15;1;-1;2
|
||||
15;2;-1;1
|
||||
15;2;-1;9
|
||||
15;2;-1;7
|
||||
15;2;-1;7
|
||||
15;2;-1;5
|
||||
15;2;-1;4
|
||||
15;2;-1;3
|
||||
15;2;-1;1
|
||||
15;2;-1;9
|
||||
15;2;-1;7
|
||||
15;2;-1;7
|
||||
15;2;-1;5
|
||||
15;2;-1;4
|
||||
15;2;-1;3
|
||||
15;2;-1;1
|
||||
15;2;-1;9
|
||||
15;2;-1;7
|
||||
15;2;-1;7
|
||||
15;2;-1;5
|
||||
15;2;-1;4
|
||||
15;2;-1;3
|
||||
15;3;-1;1
|
||||
15;3;-1;9
|
||||
15;3;-1;7
|
||||
15;3;-1;7
|
||||
15;3;-1;5
|
||||
15;3;-1;4
|
||||
15;3;-1;2
|
||||
15;3;-1;1
|
||||
15;3;-1;9
|
||||
15;3;-1;7
|
||||
15;3;-1;7
|
||||
15;3;-1;5
|
||||
15;3;-1;4
|
||||
15;3;-1;2
|
||||
15;4;-1;1
|
||||
15;4;-1;9
|
||||
15;4;-1;7
|
||||
15;4;-1;7
|
||||
15;4;-1;5
|
||||
15;4;-1;3
|
||||
15;4;-1;2
|
||||
15;4;-1;1
|
||||
15;4;-1;9
|
||||
15;4;-1;7
|
||||
15;4;-1;7
|
||||
15;4;-1;5
|
||||
15;4;-1;3
|
||||
15;4;-1;2
|
||||
15;4;-1;1
|
||||
15;4;-1;9
|
||||
15;4;-1;7
|
||||
15;4;-1;7
|
||||
15;4;-1;5
|
||||
15;4;-1;3
|
||||
15;4;-1;2
|
||||
15;5;-1;1
|
||||
15;5;-1;9
|
||||
15;5;-1;7
|
||||
15;5;-1;7
|
||||
15;5;-1;4
|
||||
15;5;-1;3
|
||||
15;5;-1;2
|
||||
15;6;-1;1
|
||||
15;6;-1;9
|
||||
15;6;-1;7
|
||||
15;6;-1;7
|
||||
15;6;-1;5
|
||||
15;6;-1;4
|
||||
15;6;-1;3
|
||||
15;6;-1;2
|
||||
15;7;-1;1
|
||||
15;7;-1;9
|
||||
15;7;-1;5
|
||||
15;7;-1;4
|
||||
15;7;-1;3
|
||||
15;7;-1;2
|
||||
15;7;-1;1
|
||||
15;7;-1;9
|
||||
15;7;-1;5
|
||||
15;7;-1;4
|
||||
15;7;-1;3
|
||||
15;7;-1;2
|
||||
15;9;-1;1
|
||||
15;9;-1;7
|
||||
15;9;-1;7
|
||||
15;9;-1;5
|
||||
15;9;-1;4
|
||||
15;9;-1;3
|
||||
15;9;-1;2
|
||||
|
@@ -14,7 +14,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;0;39;35
|
||||
1;0;50;50
|
||||
1;2;1;13
|
||||
1;2;2;2
|
||||
1;2;5;5
|
||||
1;2;7;7
|
||||
1;2;8;8
|
||||
@@ -27,9 +26,22 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;2;38;34
|
||||
1;2;39;35
|
||||
1;2;50;50
|
||||
1;3;1;13
|
||||
1;3;2;2
|
||||
1;3;5;5
|
||||
1;3;7;7
|
||||
1;3;8;8
|
||||
1;3;9;9
|
||||
1;3;10;10
|
||||
1;3;12;11
|
||||
1;3;19;30
|
||||
1;3;26;27
|
||||
1;3;32;32
|
||||
1;3;38;34
|
||||
1;3;39;35
|
||||
1;3;50;50
|
||||
1;5;1;13
|
||||
1;5;2;2
|
||||
1;5;5;5
|
||||
1;5;7;7
|
||||
1;5;8;8
|
||||
1;5;9;9
|
||||
@@ -44,7 +56,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;7;1;13
|
||||
1;7;2;2
|
||||
1;7;5;5
|
||||
1;7;7;7
|
||||
1;7;8;8
|
||||
1;7;9;9
|
||||
1;7;10;10
|
||||
@@ -59,7 +70,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;8;2;2
|
||||
1;8;5;5
|
||||
1;8;7;7
|
||||
1;8;8;8
|
||||
1;8;9;9
|
||||
1;8;10;10
|
||||
1;8;12;11
|
||||
@@ -74,7 +84,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;9;5;5
|
||||
1;9;7;7
|
||||
1;9;8;8
|
||||
1;9;9;9
|
||||
1;9;10;10
|
||||
1;9;12;11
|
||||
1;9;19;30
|
||||
@@ -89,7 +98,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;10;7;7
|
||||
1;10;8;8
|
||||
1;10;9;9
|
||||
1;10;10;10
|
||||
1;10;12;11
|
||||
1;10;19;30
|
||||
1;10;26;27
|
||||
@@ -104,14 +112,26 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;11;8;8
|
||||
1;11;9;9
|
||||
1;11;10;10
|
||||
1;11;12;11
|
||||
1;11;19;30
|
||||
1;11;26;27
|
||||
1;11;32;32
|
||||
1;11;38;34
|
||||
1;11;39;35
|
||||
1;11;50;50
|
||||
1;13;1;13
|
||||
1;12;1;13
|
||||
1;12;2;2
|
||||
1;12;5;5
|
||||
1;12;7;7
|
||||
1;12;8;8
|
||||
1;12;9;9
|
||||
1;12;10;10
|
||||
1;12;12;11
|
||||
1;12;19;30
|
||||
1;12;26;27
|
||||
1;12;32;32
|
||||
1;12;38;34
|
||||
1;12;39;35
|
||||
1;12;50;50
|
||||
1;13;2;2
|
||||
1;13;5;5
|
||||
1;13;7;7
|
||||
@@ -125,6 +145,90 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;13;38;34
|
||||
1;13;39;35
|
||||
1;13;50;50
|
||||
1;14;1;13
|
||||
1;14;2;2
|
||||
1;14;5;5
|
||||
1;14;7;7
|
||||
1;14;8;8
|
||||
1;14;9;9
|
||||
1;14;10;10
|
||||
1;14;12;11
|
||||
1;14;19;30
|
||||
1;14;26;27
|
||||
1;14;32;32
|
||||
1;14;38;34
|
||||
1;14;39;35
|
||||
1;14;50;50
|
||||
1;15;1;13
|
||||
1;15;2;2
|
||||
1;15;5;5
|
||||
1;15;7;7
|
||||
1;15;8;8
|
||||
1;15;9;9
|
||||
1;15;10;10
|
||||
1;15;12;11
|
||||
1;15;19;30
|
||||
1;15;26;27
|
||||
1;15;32;32
|
||||
1;15;38;34
|
||||
1;15;39;35
|
||||
1;15;50;50
|
||||
1;23;1;13
|
||||
1;23;2;2
|
||||
1;23;5;5
|
||||
1;23;7;7
|
||||
1;23;8;8
|
||||
1;23;9;9
|
||||
1;23;10;10
|
||||
1;23;12;11
|
||||
1;23;19;30
|
||||
1;23;26;27
|
||||
1;23;32;32
|
||||
1;23;38;34
|
||||
1;23;39;35
|
||||
1;23;50;50
|
||||
1;24;1;13
|
||||
1;24;2;2
|
||||
1;24;5;5
|
||||
1;24;7;7
|
||||
1;24;8;8
|
||||
1;24;9;9
|
||||
1;24;10;10
|
||||
1;24;12;11
|
||||
1;24;19;30
|
||||
1;24;26;27
|
||||
1;24;32;32
|
||||
1;24;38;34
|
||||
1;24;39;35
|
||||
1;24;50;50
|
||||
1;25;1;13
|
||||
1;25;2;2
|
||||
1;25;5;5
|
||||
1;25;7;7
|
||||
1;25;8;8
|
||||
1;25;9;9
|
||||
1;25;10;10
|
||||
1;25;12;11
|
||||
1;25;19;30
|
||||
1;25;26;27
|
||||
1;25;32;32
|
||||
1;25;38;34
|
||||
1;25;39;35
|
||||
1;25;50;50
|
||||
1;26;1;13
|
||||
1;26;2;2
|
||||
1;26;5;5
|
||||
1;26;7;7
|
||||
1;26;8;8
|
||||
1;26;9;9
|
||||
1;26;10;10
|
||||
1;26;12;11
|
||||
1;26;19;30
|
||||
1;26;26;27
|
||||
1;26;32;32
|
||||
1;26;38;34
|
||||
1;26;39;35
|
||||
1;26;50;50
|
||||
1;27;1;13
|
||||
1;27;2;2
|
||||
1;27;5;5
|
||||
@@ -134,11 +238,38 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;27;10;10
|
||||
1;27;12;11
|
||||
1;27;19;30
|
||||
1;27;26;27
|
||||
1;27;32;32
|
||||
1;27;38;34
|
||||
1;27;39;35
|
||||
1;27;50;50
|
||||
1;28;1;13
|
||||
1;28;2;2
|
||||
1;28;5;5
|
||||
1;28;7;7
|
||||
1;28;8;8
|
||||
1;28;9;9
|
||||
1;28;10;10
|
||||
1;28;12;11
|
||||
1;28;19;30
|
||||
1;28;26;27
|
||||
1;28;32;32
|
||||
1;28;38;34
|
||||
1;28;39;35
|
||||
1;28;50;50
|
||||
1;29;1;13
|
||||
1;29;2;2
|
||||
1;29;5;5
|
||||
1;29;7;7
|
||||
1;29;8;8
|
||||
1;29;9;9
|
||||
1;29;10;10
|
||||
1;29;12;11
|
||||
1;29;19;30
|
||||
1;29;26;27
|
||||
1;29;32;32
|
||||
1;29;38;34
|
||||
1;29;39;35
|
||||
1;29;50;50
|
||||
1;30;1;13
|
||||
1;30;2;2
|
||||
1;30;5;5
|
||||
@@ -147,12 +278,25 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;30;9;9
|
||||
1;30;10;10
|
||||
1;30;12;11
|
||||
1;30;19;30
|
||||
1;30;26;27
|
||||
1;30;32;32
|
||||
1;30;38;34
|
||||
1;30;39;35
|
||||
1;30;50;50
|
||||
1;31;1;13
|
||||
1;31;2;2
|
||||
1;31;5;5
|
||||
1;31;7;7
|
||||
1;31;8;8
|
||||
1;31;9;9
|
||||
1;31;10;10
|
||||
1;31;12;11
|
||||
1;31;19;30
|
||||
1;31;26;27
|
||||
1;31;32;32
|
||||
1;31;38;34
|
||||
1;31;39;35
|
||||
1;31;50;50
|
||||
1;32;1;13
|
||||
1;32;2;2
|
||||
1;32;5;5
|
||||
@@ -163,10 +307,23 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;32;12;11
|
||||
1;32;19;30
|
||||
1;32;26;27
|
||||
1;32;32;32
|
||||
1;32;38;34
|
||||
1;32;39;35
|
||||
1;32;50;50
|
||||
1;33;1;13
|
||||
1;33;2;2
|
||||
1;33;5;5
|
||||
1;33;7;7
|
||||
1;33;8;8
|
||||
1;33;9;9
|
||||
1;33;10;10
|
||||
1;33;12;11
|
||||
1;33;19;30
|
||||
1;33;26;27
|
||||
1;33;32;32
|
||||
1;33;38;34
|
||||
1;33;39;35
|
||||
1;33;50;50
|
||||
1;34;1;13
|
||||
1;34;2;2
|
||||
1;34;5;5
|
||||
@@ -178,7 +335,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;34;19;30
|
||||
1;34;26;27
|
||||
1;34;32;32
|
||||
1;34;38;34
|
||||
1;34;39;35
|
||||
1;34;50;50
|
||||
1;35;1;13
|
||||
@@ -193,8 +349,21 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;35;26;27
|
||||
1;35;32;32
|
||||
1;35;38;34
|
||||
1;35;39;35
|
||||
1;35;50;50
|
||||
1;49;1;13
|
||||
1;49;2;2
|
||||
1;49;5;5
|
||||
1;49;7;7
|
||||
1;49;8;8
|
||||
1;49;9;9
|
||||
1;49;10;10
|
||||
1;49;12;11
|
||||
1;49;19;30
|
||||
1;49;26;27
|
||||
1;49;32;32
|
||||
1;49;38;34
|
||||
1;49;39;35
|
||||
1;49;50;50
|
||||
1;50;1;13
|
||||
1;50;2;2
|
||||
1;50;5;5
|
||||
@@ -208,4 +377,3 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;50;32;32
|
||||
1;50;38;34
|
||||
1;50;39;35
|
||||
1;50;50;50
|
||||
|
||||
|
@@ -1,211 +0,0 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
1;0;1;13
|
||||
1;0;2;2
|
||||
1;0;5;5
|
||||
1;0;7;7
|
||||
1;0;8;8
|
||||
1;0;9;9
|
||||
1;0;10;10
|
||||
1;0;12;11
|
||||
1;0;19;30
|
||||
1;0;26;27
|
||||
1;0;32;32
|
||||
1;0;38;34
|
||||
1;0;39;35
|
||||
1;0;50;50
|
||||
1;2;1;13
|
||||
1;2;2;2
|
||||
1;2;5;5
|
||||
1;2;7;7
|
||||
1;2;8;8
|
||||
1;2;9;9
|
||||
1;2;10;10
|
||||
1;2;12;11
|
||||
1;2;19;30
|
||||
1;2;26;27
|
||||
1;2;32;32
|
||||
1;2;38;34
|
||||
1;2;39;35
|
||||
1;2;50;50
|
||||
1;5;1;13
|
||||
1;5;2;2
|
||||
1;5;5;5
|
||||
1;5;7;7
|
||||
1;5;8;8
|
||||
1;5;9;9
|
||||
1;5;10;10
|
||||
1;5;12;11
|
||||
1;5;19;30
|
||||
1;5;26;27
|
||||
1;5;32;32
|
||||
1;5;38;34
|
||||
1;5;39;35
|
||||
1;5;50;50
|
||||
1;7;1;13
|
||||
1;7;2;2
|
||||
1;7;5;5
|
||||
1;7;7;7
|
||||
1;7;8;8
|
||||
1;7;9;9
|
||||
1;7;10;10
|
||||
1;7;12;11
|
||||
1;7;19;30
|
||||
1;7;26;27
|
||||
1;7;32;32
|
||||
1;7;38;34
|
||||
1;7;39;35
|
||||
1;7;50;50
|
||||
1;8;1;13
|
||||
1;8;2;2
|
||||
1;8;5;5
|
||||
1;8;7;7
|
||||
1;8;8;8
|
||||
1;8;9;9
|
||||
1;8;10;10
|
||||
1;8;12;11
|
||||
1;8;19;30
|
||||
1;8;26;27
|
||||
1;8;32;32
|
||||
1;8;38;34
|
||||
1;8;39;35
|
||||
1;8;50;50
|
||||
1;9;1;13
|
||||
1;9;2;2
|
||||
1;9;5;5
|
||||
1;9;7;7
|
||||
1;9;8;8
|
||||
1;9;9;9
|
||||
1;9;10;10
|
||||
1;9;12;11
|
||||
1;9;19;30
|
||||
1;9;26;27
|
||||
1;9;32;32
|
||||
1;9;38;34
|
||||
1;9;39;35
|
||||
1;9;50;50
|
||||
1;10;1;13
|
||||
1;10;2;2
|
||||
1;10;5;5
|
||||
1;10;7;7
|
||||
1;10;8;8
|
||||
1;10;9;9
|
||||
1;10;10;10
|
||||
1;10;12;11
|
||||
1;10;19;30
|
||||
1;10;26;27
|
||||
1;10;32;32
|
||||
1;10;38;34
|
||||
1;10;39;35
|
||||
1;10;50;50
|
||||
1;11;1;13
|
||||
1;11;2;2
|
||||
1;11;5;5
|
||||
1;11;7;7
|
||||
1;11;8;8
|
||||
1;11;9;9
|
||||
1;11;10;10
|
||||
1;11;12;11
|
||||
1;11;19;30
|
||||
1;11;26;27
|
||||
1;11;32;32
|
||||
1;11;38;34
|
||||
1;11;39;35
|
||||
1;11;50;50
|
||||
1;13;1;13
|
||||
1;13;2;2
|
||||
1;13;5;5
|
||||
1;13;7;7
|
||||
1;13;8;8
|
||||
1;13;9;9
|
||||
1;13;10;10
|
||||
1;13;12;11
|
||||
1;13;19;30
|
||||
1;13;26;27
|
||||
1;13;32;32
|
||||
1;13;38;34
|
||||
1;13;39;35
|
||||
1;13;50;50
|
||||
1;27;1;13
|
||||
1;27;2;2
|
||||
1;27;5;5
|
||||
1;27;7;7
|
||||
1;27;8;8
|
||||
1;27;9;9
|
||||
1;27;10;10
|
||||
1;27;12;11
|
||||
1;27;19;30
|
||||
1;27;26;27
|
||||
1;27;32;32
|
||||
1;27;38;34
|
||||
1;27;39;35
|
||||
1;27;50;50
|
||||
1;30;1;13
|
||||
1;30;2;2
|
||||
1;30;5;5
|
||||
1;30;7;7
|
||||
1;30;8;8
|
||||
1;30;9;9
|
||||
1;30;10;10
|
||||
1;30;12;11
|
||||
1;30;19;30
|
||||
1;30;26;27
|
||||
1;30;32;32
|
||||
1;30;38;34
|
||||
1;30;39;35
|
||||
1;30;50;50
|
||||
1;32;1;13
|
||||
1;32;2;2
|
||||
1;32;5;5
|
||||
1;32;7;7
|
||||
1;32;8;8
|
||||
1;32;9;9
|
||||
1;32;10;10
|
||||
1;32;12;11
|
||||
1;32;19;30
|
||||
1;32;26;27
|
||||
1;32;32;32
|
||||
1;32;38;34
|
||||
1;32;39;35
|
||||
1;32;50;50
|
||||
1;34;1;13
|
||||
1;34;2;2
|
||||
1;34;5;5
|
||||
1;34;7;7
|
||||
1;34;8;8
|
||||
1;34;9;9
|
||||
1;34;10;10
|
||||
1;34;12;11
|
||||
1;34;19;30
|
||||
1;34;26;27
|
||||
1;34;32;32
|
||||
1;34;38;34
|
||||
1;34;39;35
|
||||
1;34;50;50
|
||||
1;35;1;13
|
||||
1;35;2;2
|
||||
1;35;5;5
|
||||
1;35;7;7
|
||||
1;35;8;8
|
||||
1;35;9;9
|
||||
1;35;10;10
|
||||
1;35;12;11
|
||||
1;35;19;30
|
||||
1;35;26;27
|
||||
1;35;32;32
|
||||
1;35;38;34
|
||||
1;35;50;50
|
||||
1;50;1;13
|
||||
1;50;2;2
|
||||
1;50;5;5
|
||||
1;50;7;7
|
||||
1;50;8;8
|
||||
1;50;9;9
|
||||
1;50;10;10
|
||||
1;50;12;11
|
||||
1;50;19;30
|
||||
1;50;26;27
|
||||
1;50;32;32
|
||||
1;50;38;34
|
||||
1;50;39;35
|
||||
1;50;50;50
|
||||
1;50;50;50
|
||||
|
@@ -0,0 +1,72 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
2;0;-1;1
|
||||
2;0;-1;5
|
||||
2;0;-1;7
|
||||
2;0;-1;3
|
||||
2;0;-1;2
|
||||
2;0;-1;1
|
||||
2;0;-1;5
|
||||
2;0;-1;7
|
||||
2;0;-1;3
|
||||
2;0;-1;2
|
||||
2;1;-1;5
|
||||
2;1;-1;7
|
||||
2;1;-1;3
|
||||
2;1;-1;2
|
||||
2;1;-1;5
|
||||
2;1;-1;7
|
||||
2;1;-1;3
|
||||
2;1;-1;2
|
||||
2;1;-1;5
|
||||
2;1;-1;7
|
||||
2;1;-1;3
|
||||
2;1;-1;2
|
||||
2;1;-1;5
|
||||
2;1;-1;7
|
||||
2;1;-1;3
|
||||
2;1;-1;2
|
||||
2;2;-1;1
|
||||
2;2;-1;5
|
||||
2;2;-1;7
|
||||
2;2;-1;3
|
||||
2;2;-1;1
|
||||
2;2;-1;5
|
||||
2;2;-1;7
|
||||
2;2;-1;3
|
||||
2;2;-1;1
|
||||
2;2;-1;5
|
||||
2;2;-1;7
|
||||
2;2;-1;3
|
||||
2;3;-1;1
|
||||
2;3;-1;5
|
||||
2;3;-1;4
|
||||
2;3;-1;7
|
||||
2;3;-1;2
|
||||
2;3;-1;1
|
||||
2;3;-1;5
|
||||
2;3;-1;4
|
||||
2;3;-1;7
|
||||
2;3;-1;2
|
||||
2;4;-1;1
|
||||
2;4;-1;5
|
||||
2;4;-1;7
|
||||
2;4;-1;3
|
||||
2;4;-1;2
|
||||
2;4;-1;1
|
||||
2;4;-1;5
|
||||
2;4;-1;7
|
||||
2;4;-1;3
|
||||
2;4;-1;2
|
||||
2;5;-1;1
|
||||
2;5;-1;7
|
||||
2;5;-1;3
|
||||
2;5;-1;2
|
||||
2;6;-1;1
|
||||
2;6;-1;5
|
||||
2;6;-1;7
|
||||
2;6;-1;3
|
||||
2;6;-1;2
|
||||
2;7;-1;1
|
||||
2;7;-1;5
|
||||
2;7;-1;3
|
||||
2;7;-1;2
|
||||
|
@@ -0,0 +1,73 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
5;0;-1;1
|
||||
5;0;-1;5
|
||||
5;0;-1;4
|
||||
5;0;-1;3
|
||||
5;0;-1;2
|
||||
5;0;-1;1
|
||||
5;0;-1;5
|
||||
5;0;-1;4
|
||||
5;0;-1;3
|
||||
5;0;-1;2
|
||||
5;1;-1;5
|
||||
5;1;-1;4
|
||||
5;1;-1;3
|
||||
5;1;-1;2
|
||||
5;1;-1;5
|
||||
5;1;-1;4
|
||||
5;1;-1;3
|
||||
5;1;-1;2
|
||||
5;1;-1;5
|
||||
5;1;-1;4
|
||||
5;1;-1;3
|
||||
5;1;-1;2
|
||||
5;1;-1;5
|
||||
5;1;-1;4
|
||||
5;1;-1;3
|
||||
5;1;-1;2
|
||||
5;2;-1;1
|
||||
5;2;-1;5
|
||||
5;2;-1;4
|
||||
5;2;-1;3
|
||||
5;2;-1;1
|
||||
5;2;-1;5
|
||||
5;2;-1;4
|
||||
5;2;-1;3
|
||||
5;2;-1;1
|
||||
5;2;-1;5
|
||||
5;2;-1;4
|
||||
5;2;-1;3
|
||||
5;3;-1;1
|
||||
5;3;-1;5
|
||||
5;3;-1;4
|
||||
5;3;-1;2
|
||||
5;3;-1;1
|
||||
5;3;-1;5
|
||||
5;3;-1;4
|
||||
5;3;-1;2
|
||||
5;4;-1;1
|
||||
5;4;-1;5
|
||||
5;4;-1;3
|
||||
5;4;-1;2
|
||||
5;4;-1;1
|
||||
5;4;-1;5
|
||||
5;4;-1;3
|
||||
5;4;-1;2
|
||||
5;4;-1;1
|
||||
5;4;-1;5
|
||||
5;4;-1;3
|
||||
5;4;-1;2
|
||||
5;5;-1;1
|
||||
5;5;-1;4
|
||||
5;5;-1;3
|
||||
5;5;-1;2
|
||||
5;6;-1;1
|
||||
5;6;-1;5
|
||||
5;6;-1;4
|
||||
5;6;-1;3
|
||||
5;6;-1;2
|
||||
5;7;-1;1
|
||||
5;7;-1;5
|
||||
5;7;-1;4
|
||||
5;7;-1;3
|
||||
5;7;-1;2
|
||||
|
@@ -0,0 +1,2 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
6;0;-1;1
|
||||
|
@@ -0,0 +1,31 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
7;1;-1;5
|
||||
7;1;-1;3
|
||||
7;1;-1;2
|
||||
7;1;-1;5
|
||||
7;1;-1;3
|
||||
7;1;-1;2
|
||||
7;2;-1;1
|
||||
7;2;-1;5
|
||||
7;2;-1;3
|
||||
7;2;-1;1
|
||||
7;2;-1;5
|
||||
7;2;-1;3
|
||||
7;3;-1;1
|
||||
7;3;-1;5
|
||||
7;3;-1;2
|
||||
7;4;-1;1
|
||||
7;4;-1;5
|
||||
7;4;-1;3
|
||||
7;4;-1;2
|
||||
7;5;-1;1
|
||||
7;5;-1;3
|
||||
7;5;-1;2
|
||||
7;6;-1;1
|
||||
7;6;-1;5
|
||||
7;6;-1;3
|
||||
7;6;-1;2
|
||||
7;7;-1;1
|
||||
7;7;-1;5
|
||||
7;7;-1;3
|
||||
7;7;-1;2
|
||||
|
@@ -0,0 +1,10 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
8;0;-1;1
|
||||
8;0;-1;1
|
||||
8;1;-1;2
|
||||
8;1;-1;2
|
||||
8;1;-1;2
|
||||
8;1;-1;2
|
||||
8;2;-1;3
|
||||
8;2;-1;3
|
||||
8;2;-1;3
|
||||
|
@@ -0,0 +1,10 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
9;0;-1;1
|
||||
9;0;-1;1
|
||||
9;1;-1;2
|
||||
9;1;-1;2
|
||||
9;1;-1;2
|
||||
9;1;-1;2
|
||||
9;2;-1;3
|
||||
9;2;-1;3
|
||||
9;2;-1;3
|
||||
|
Reference in New Issue
Block a user