Werte aus Array mit manipuliertem Zeitstempel in Variable schreiben

Hallo,

ich versuche gerade die Werte (PV Forecast) aus einer solcast API in einen Graphen zu schreiben.
Den Zeitstempel muss ich munipulieren, weil das Archiv keine Zukunftsdaten will, soviel weiß ich.
Ich kann auch die Werte einzeln aus dem Array in Vars schreiben, das bekomme ich hin.

Ich möchte gerne den ganzen 2 Tages Forecast im 3 stunden Takt in eine archivierte Variable schreiben.
Da komme ich jetzt leider nicht weiter.
Vielleicht könnte mir hier jemand helfen?

Soweit bin ich bisher gekommen.

<?php

//Forcast holen 
$s_forecasts = GetValueString(36035);

$ar_forecasts = unserialize($s_forecasts);



// Peak Leistung ermitteln

// Sommer Winter Zeit ermitteln dst = 1 (Sommer)  dst = 0 (Winter)

if (date("I") == 1)
{
    $dst =1;
}



//aktuelle Stunde ermitteln 
$stunde = date("H");
$minute = ("00");



//Von Sommerzeit 2 Stunden abziehen = UTC Time

if ($dst = 1)
{
        if ($stunde == 0)       //Mitternacht
        {
            $stundeUTC = ("22");
        }
        elseif
        ($stunde == 1)          // 1 Uhr Nachts
        {
            $stundeUTC = ("23");
        }
        else
        {
            $stundeUTC = ($stunde -2);      //ansonsten 2 Stunden abziehen 
        }
}

//Von Winterzeit  1 Stunde abziehen = UTC Time

if ($dst = 0)
{
        if ($stunde == 0)       //Mitternacht
        {
            $stundeUTC = ("23");
        }
        elseif
        ($stunde == 1)          // 1 Uhr Nachts
        {
            $stundeUTC = ("00");
        }
        else
        {
            $stundeUTC = ($stunde -1);      //ansonsten 2 Stunden abziehen 
        }
}



//Zeitstempel für Abfrage zusammenbauen (+1 wegen 1 Tag in Zukunft )
$datum=date("Y-m-d",mktime(0, 0, 0, date("m")  , date("d")+1, date("Y")));      
$zeitstempel=$datum."T$stundeUTC:$minute:00.0000000Z";



//key für gesuchten Zeitstempel ausgeben 
for ($i = 0; $i < count($ar_forecasts); $i++) {
      if(in_array($zeitstempel,$ar_forecasts[$i]))
        {
        $key=$i;
        }
    }

//Nach PV estimate im Array suchen definieren 
$search = "pv_estimate";
//Nach PV estimate suchen und in Var schreiben 
$pv_estimate = $ar_forecasts[$key][$search];


//Werte ins archiv schreiben 
//Zeitstempel auf bereiten 
$zeitstempelsub = ($datum.":$stundeUTC:$minute:00");    // wieder auf Standard umwandeln 
$zeitstempelUNIX = strtotime($zeitstempel);             // in UNIX Format 
$zeitstempelArchiv = $zeitstempelUNIX - (24*60*60);     // Einen Tag zurückrechnen weil Archiv keine Zukunftswerte aktzeptiert
// Ins Archiv schreiben 
AC_AddLoggedValues(24614, 37237, [
  [
    'TimeStamp' => $zeitstempelArchiv,
    'Value' => $pv_estimate
  ]
]);


var_dump($ar_forecasts);
var_dump($key);
var_dump ($stundeUTC);
var_dump($pv_estimate);
print_r($datum);
var_dump ($zeitstempel);
var_dump ($zeitstempelsub);
var_dump($zeitstempelUNIX);
var_dump($zeitstempelArchiv);
pe oder füge den Code hier ein

Die Ausgabe und das Array

array(97) {
  [0]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2766)
    ["pv_estimate10"]=>
    float(6,2766)
    ["pv_estimate90"]=>
    float(6,2766)
    ["period_end"]=>
    string(28) "2023-09-16T11:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [1]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,4697)
    ["pv_estimate10"]=>
    float(6,4697)
    ["pv_estimate90"]=>
    float(6,4697)
    ["period_end"]=>
    string(28) "2023-09-16T11:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [2]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,5524)
    ["pv_estimate10"]=>
    float(6,5524)
    ["pv_estimate90"]=>
    float(6,5524)
    ["period_end"]=>
    string(28) "2023-09-16T12:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [3]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,4599)
    ["pv_estimate10"]=>
    float(6,4599)
    ["pv_estimate90"]=>
    float(6,4599)
    ["period_end"]=>
    string(28) "2023-09-16T12:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [4]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,3301)
    ["pv_estimate10"]=>
    float(6,2447)
    ["pv_estimate90"]=>
    float(6,3301)
    ["period_end"]=>
    string(28) "2023-09-16T13:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [5]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,0599)
    ["pv_estimate10"]=>
    float(5,2405)
    ["pv_estimate90"]=>
    float(6,0599)
    ["period_end"]=>
    string(28) "2023-09-16T13:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [6]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,6392)
    ["pv_estimate10"]=>
    float(4,0652)
    ["pv_estimate90"]=>
    float(5,6392)
    ["period_end"]=>
    string(28) "2023-09-16T14:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [7]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,1291)
    ["pv_estimate10"]=>
    float(3,1309)
    ["pv_estimate90"]=>
    float(5,1291)
    ["period_end"]=>
    string(28) "2023-09-16T14:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [8]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,43)
    ["pv_estimate10"]=>
    float(2,5006)
    ["pv_estimate90"]=>
    float(4,4813)
    ["period_end"]=>
    string(28) "2023-09-16T15:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [9]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,4131)
    ["pv_estimate10"]=>
    float(1,8206)
    ["pv_estimate90"]=>
    float(3,7798)
    ["period_end"]=>
    string(28) "2023-09-16T15:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [10]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,3901)
    ["pv_estimate10"]=>
    float(1,164)
    ["pv_estimate90"]=>
    float(2,9428)
    ["period_end"]=>
    string(28) "2023-09-16T16:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [11]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,6159)
    ["pv_estimate10"]=>
    float(0,5117)
    ["pv_estimate90"]=>
    float(2,0219)
    ["period_end"]=>
    string(28) "2023-09-16T16:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [12]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,6567)
    ["pv_estimate10"]=>
    float(0,1556)
    ["pv_estimate90"]=>
    float(0,9177)
    ["period_end"]=>
    string(28) "2023-09-16T17:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [13]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0528)
    ["pv_estimate10"]=>
    float(0,0203)
    ["pv_estimate90"]=>
    float(0,0752)
    ["period_end"]=>
    string(28) "2023-09-16T17:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [14]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T18:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [15]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T18:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [16]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T19:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [17]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T19:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [18]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T20:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [19]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T20:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [20]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T21:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [21]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T21:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [22]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T22:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [23]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T22:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [24]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T23:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [25]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T23:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [26]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T00:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [27]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T00:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [28]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T01:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [29]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T01:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [30]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T02:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [31]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T02:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [32]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T03:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [33]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T03:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [34]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T04:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [35]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T04:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [36]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0053)
    ["pv_estimate10"]=>
    float(0,0053)
    ["pv_estimate90"]=>
    float(0,0053)
    ["period_end"]=>
    string(28) "2023-09-17T05:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [37]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,1286)
    ["pv_estimate10"]=>
    float(0,0793)
    ["pv_estimate90"]=>
    float(0,13503)
    ["period_end"]=>
    string(28) "2023-09-17T05:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [38]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,2564)
    ["pv_estimate10"]=>
    float(0,2378)
    ["pv_estimate90"]=>
    float(0,26922)
    ["period_end"]=>
    string(28) "2023-09-17T06:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [39]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,7464)
    ["pv_estimate10"]=>
    float(0,6365)
    ["pv_estimate90"]=>
    float(0,78372)
    ["period_end"]=>
    string(28) "2023-09-17T06:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [40]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,3385)
    ["pv_estimate10"]=>
    float(1,0744)
    ["pv_estimate90"]=>
    float(1,405425)
    ["period_end"]=>
    string(28) "2023-09-17T07:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [41]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,1154)
    ["pv_estimate10"]=>
    float(1,4792)
    ["pv_estimate90"]=>
    float(2,1345)
    ["period_end"]=>
    string(28) "2023-09-17T07:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [42]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,9133)
    ["pv_estimate10"]=>
    float(1,8865)
    ["pv_estimate90"]=>
    float(2,9133)
    ["period_end"]=>
    string(28) "2023-09-17T08:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [43]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,6462)
    ["pv_estimate10"]=>
    float(2,2913)
    ["pv_estimate90"]=>
    float(3,6462)
    ["period_end"]=>
    string(28) "2023-09-17T08:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [44]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,3221)
    ["pv_estimate10"]=>
    float(2,6957)
    ["pv_estimate90"]=>
    float(4,3221)
    ["period_end"]=>
    string(28) "2023-09-17T09:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [45]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,8857)
    ["pv_estimate10"]=>
    float(3,0593)
    ["pv_estimate90"]=>
    float(4,8857)
    ["period_end"]=>
    string(28) "2023-09-17T09:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [46]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,3696)
    ["pv_estimate10"]=>
    float(3,3398)
    ["pv_estimate90"]=>
    float(5,3696)
    ["period_end"]=>
    string(28) "2023-09-17T10:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [47]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,7741)
    ["pv_estimate10"]=>
    float(3,5884)
    ["pv_estimate90"]=>
    float(5,7741)
    ["period_end"]=>
    string(28) "2023-09-17T10:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [48]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,04)
    ["pv_estimate10"]=>
    float(3,7426)
    ["pv_estimate90"]=>
    float(6,04)
    ["period_end"]=>
    string(28) "2023-09-17T11:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [49]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2436)
    ["pv_estimate10"]=>
    float(3,8501)
    ["pv_estimate90"]=>
    float(6,2436)
    ["period_end"]=>
    string(28) "2023-09-17T11:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [50]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2826)
    ["pv_estimate10"]=>
    float(3,8584)
    ["pv_estimate90"]=>
    float(6,2826)
    ["period_end"]=>
    string(28) "2023-09-17T12:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [51]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2605)
    ["pv_estimate10"]=>
    float(3,7615)
    ["pv_estimate90"]=>
    float(6,2605)
    ["period_end"]=>
    string(28) "2023-09-17T12:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [52]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,0999)
    ["pv_estimate10"]=>
    float(3,5268)
    ["pv_estimate90"]=>
    float(6,0999)
    ["period_end"]=>
    string(28) "2023-09-17T13:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [53]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,8146)
    ["pv_estimate10"]=>
    float(3,1628)
    ["pv_estimate90"]=>
    float(5,8146)
    ["period_end"]=>
    string(28) "2023-09-17T13:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [54]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,4549)
    ["pv_estimate10"]=>
    float(2,7248)
    ["pv_estimate90"]=>
    float(5,4549)
    ["period_end"]=>
    string(28) "2023-09-17T14:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [55]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,9376)
    ["pv_estimate10"]=>
    float(2,2453)
    ["pv_estimate90"]=>
    float(4,9376)
    ["period_end"]=>
    string(28) "2023-09-17T14:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [56]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,2766)
    ["pv_estimate10"]=>
    float(1,7397)
    ["pv_estimate90"]=>
    float(4,3566)
    ["period_end"]=>
    string(28) "2023-09-17T15:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [57]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,1944)
    ["pv_estimate10"]=>
    float(1,2056)
    ["pv_estimate90"]=>
    float(3,5927)
    ["period_end"]=>
    string(28) "2023-09-17T15:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [58]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,1622)
    ["pv_estimate10"]=>
    float(0,7391)
    ["pv_estimate90"]=>
    float(2,7876)
    ["period_end"]=>
    string(28) "2023-09-17T16:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [59]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,3883)
    ["pv_estimate10"]=>
    float(0,2976)
    ["pv_estimate90"]=>
    float(1,8944)
    ["period_end"]=>
    string(28) "2023-09-17T16:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [60]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,5482)
    ["pv_estimate10"]=>
    float(0,1093)
    ["pv_estimate90"]=>
    float(0,8807)
    ["period_end"]=>
    string(28) "2023-09-17T17:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [61]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0251)
    ["pv_estimate10"]=>
    float(0,01)
    ["pv_estimate90"]=>
    float(0,0424)
    ["period_end"]=>
    string(28) "2023-09-17T17:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [62]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T18:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [63]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T18:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [64]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T19:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [65]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T19:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [66]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T20:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [67]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T20:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [68]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T21:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [69]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T21:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [70]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T22:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [71]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T22:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [72]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T23:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [73]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T23:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [74]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T00:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [75]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T00:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [76]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T01:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [77]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T01:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [78]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T02:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [79]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T02:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [80]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T03:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [81]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T03:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [82]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T04:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [83]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T04:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [84]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0053)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    float(0,0053)
    ["period_end"]=>
    string(28) "2023-09-18T05:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [85]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,1215)
    ["pv_estimate10"]=>
    float(0,074)
    ["pv_estimate90"]=>
    float(0,1255)
    ["period_end"]=>
    string(28) "2023-09-18T05:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [86]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,3851)
    ["pv_estimate10"]=>
    float(0,2196)
    ["pv_estimate90"]=>
    float(0,404355)
    ["period_end"]=>
    string(28) "2023-09-18T06:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [87]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,7977)
    ["pv_estimate10"]=>
    float(0,5927)
    ["pv_estimate90"]=>
    float(0,837585)
    ["period_end"]=>
    string(28) "2023-09-18T06:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [88]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,3406)
    ["pv_estimate10"]=>
    float(1,0685)
    ["pv_estimate90"]=>
    float(1,40763)
    ["period_end"]=>
    string(28) "2023-09-18T07:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [89]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,0392)
    ["pv_estimate10"]=>
    float(1,533)
    ["pv_estimate90"]=>
    float(2,0459)
    ["period_end"]=>
    string(28) "2023-09-18T07:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [90]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,759)
    ["pv_estimate10"]=>
    float(1,9546)
    ["pv_estimate90"]=>
    float(2,759)
    ["period_end"]=>
    string(28) "2023-09-18T08:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [91]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,4423)
    ["pv_estimate10"]=>
    float(2,3242)
    ["pv_estimate90"]=>
    float(3,4423)
    ["period_end"]=>
    string(28) "2023-09-18T08:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [92]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,0996)
    ["pv_estimate10"]=>
    float(2,6947)
    ["pv_estimate90"]=>
    float(4,0996)
    ["period_end"]=>
    string(28) "2023-09-18T09:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [93]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,6689)
    ["pv_estimate10"]=>
    float(2,9534)
    ["pv_estimate90"]=>
    float(4,6689)
    ["period_end"]=>
    string(28) "2023-09-18T09:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [94]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,1187)
    ["pv_estimate10"]=>
    float(3,0596)
    ["pv_estimate90"]=>
    float(5,1267)
    ["period_end"]=>
    string(28) "2023-09-18T10:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [95]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,3823)
    ["pv_estimate10"]=>
    float(3,0769)
    ["pv_estimate90"]=>
    float(5,4673)
    ["period_end"]=>
    string(28) "2023-09-18T10:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [96]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,5711)
    ["pv_estimate10"]=>
    float(3,0465)
    ["pv_estimate90"]=>
    float(5,7449)
    ["period_end"]=>
    string(28) "2023-09-18T11:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
}
int(62)
int(18)
int(0)
2023-09-17string(28) "2023-09-17T18:00:00.0000000Z"
string(19) "2023-09-17:18:00:00"
int(1694973600)
int(1694887200)

Hier hole ich mir einen Wert der aktuellen Stunde und datiere ihn zurück.
Ich möchte aber alles in einem Schwung nehmen, dazu hätte ich es mit einer for Schleife versucht, hier hänge ich jetzt total.

Hier der Versuch und die Ausgabe.

<?php

//Forcast holen 
$s_forecasts = GetValueString(36035);

$ar_forecasts = unserialize($s_forecasts);

// Peak Leistung ermitteln

// Sommer Winter Zeit ermitteln dst = 1 (Sommer)  dst = 0 (Winter)

if (date("I") == 1)
{
    $dst =1;
}



//aktuelle Stunde ermitteln 
$stunde = date("H");




//Von Sommerzeit 2 Stunden abziehen = UTC Time

if ($dst = 1)
{
        if ($stunde == 0)       //Mitternacht
        {
            $stundeUTC = ("22");
        }
        elseif
        ($stunde == 1)          // 1 Uhr Nachts
        {
            $stundeUTC = ("23");
        }
        else
        {
            $stundeUTC = ($stunde -2);      //ansonsten 2 Stunden abziehen 
        }
}

//Von Winterzeit  1 Stunde abziehen = UTC Time

if ($dst = 0)
{
        if ($stunde == 0)       //Mitternacht
        {
            $stundeUTC = ("23");
        }
        elseif
        ($stunde == 1)          // 1 Uhr Nachts
        {
            $stundeUTC = ("00");
        }
        else
        {
            $stundeUTC = ($stunde -1);      //ansonsten 2 Stunden abziehen 
        }
}

for ($i = 0; $i <= 47; $i++) 
    {
        $minute = ("00");
        $stundeUTC1 = $stundeUTC +1;
        $datum=date("Y-m-d",mktime(0, 0, 0, date("m")  , date("d")+1, date("Y")));      
        $zeitstempel=$datum."T$stundeUTC1:$minute:00.0000000Z";

        //key für gesuchten Zeitstempel ausgeben 
       
       
        if(in_array($zeitstempel,$ar_forecasts[$i]))
        {
        $key=$i;
        }      
        
        //Nach PV estimate im Array suchen definieren 
        $search = "pv_estimate";
        //Nach PV estimate suchen und in Var schreiben 
        $pv_estimate = $ar_forecasts[$key][$search];

        //Werte ins archiv schreiben 
        //Zeitstempel auf bereiten 
            $zeitstempelsub = ($datum.":$stundeUTC1:$minute:00");    // wieder auf Standard umwandeln 
            $zeitstempelUNIX = strtotime($zeitstempel);             // in UNIX Format 
            $zeitstempelArchiv = $zeitstempelUNIX - (24*60*60);     // Einen Tag zurückrechnen weil Archiv keine Zukunftswerte aktzeptiert
            // Ins Archiv schreiben 
            AC_AddLoggedValues(24614, 37237, [
            [
                'TimeStamp' => $zeitstempelArchiv,
                'Value' => $pv_estimate
            ]
            ]);
    


    }
$i = 0;

var_dump($ar_forecasts);
var_dump($key);
var_dump ($stundeUTC);
var_dump($pv_estimate);
print_r($datum);
var_dump ($zeitstempel);
var_dump ($zeitstempelsub);
var_dump($zeitstempelUNIX);
var_dump($zeitstempelArchiv);




Ausgabe

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147

Notice: Undefined index: SENDER in /var/lib/symcon/scripts/31337.ips.php on line 136

Notice: Trying to access array offset on value of type null in /var/lib/symcon/scripts/31337.ips.php on line 136

Warning: Cannot auto-convert value for parameter Value (Type is not supported) in /var/lib/symcon/scripts/31337.ips.php on line 147
array(97) {
  [0]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2766)
    ["pv_estimate10"]=>
    float(6,2766)
    ["pv_estimate90"]=>
    float(6,2766)
    ["period_end"]=>
    string(28) "2023-09-16T11:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [1]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,4697)
    ["pv_estimate10"]=>
    float(6,4697)
    ["pv_estimate90"]=>
    float(6,4697)
    ["period_end"]=>
    string(28) "2023-09-16T11:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [2]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,5524)
    ["pv_estimate10"]=>
    float(6,5524)
    ["pv_estimate90"]=>
    float(6,5524)
    ["period_end"]=>
    string(28) "2023-09-16T12:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [3]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,4599)
    ["pv_estimate10"]=>
    float(6,4599)
    ["pv_estimate90"]=>
    float(6,4599)
    ["period_end"]=>
    string(28) "2023-09-16T12:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [4]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,3301)
    ["pv_estimate10"]=>
    float(6,2447)
    ["pv_estimate90"]=>
    float(6,3301)
    ["period_end"]=>
    string(28) "2023-09-16T13:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [5]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,0599)
    ["pv_estimate10"]=>
    float(5,2405)
    ["pv_estimate90"]=>
    float(6,0599)
    ["period_end"]=>
    string(28) "2023-09-16T13:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [6]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,6392)
    ["pv_estimate10"]=>
    float(4,0652)
    ["pv_estimate90"]=>
    float(5,6392)
    ["period_end"]=>
    string(28) "2023-09-16T14:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [7]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,1291)
    ["pv_estimate10"]=>
    float(3,1309)
    ["pv_estimate90"]=>
    float(5,1291)
    ["period_end"]=>
    string(28) "2023-09-16T14:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [8]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,43)
    ["pv_estimate10"]=>
    float(2,5006)
    ["pv_estimate90"]=>
    float(4,4813)
    ["period_end"]=>
    string(28) "2023-09-16T15:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [9]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,4131)
    ["pv_estimate10"]=>
    float(1,8206)
    ["pv_estimate90"]=>
    float(3,7798)
    ["period_end"]=>
    string(28) "2023-09-16T15:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [10]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,3901)
    ["pv_estimate10"]=>
    float(1,164)
    ["pv_estimate90"]=>
    float(2,9428)
    ["period_end"]=>
    string(28) "2023-09-16T16:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [11]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,6159)
    ["pv_estimate10"]=>
    float(0,5117)
    ["pv_estimate90"]=>
    float(2,0219)
    ["period_end"]=>
    string(28) "2023-09-16T16:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [12]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,6567)
    ["pv_estimate10"]=>
    float(0,1556)
    ["pv_estimate90"]=>
    float(0,9177)
    ["period_end"]=>
    string(28) "2023-09-16T17:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [13]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0528)
    ["pv_estimate10"]=>
    float(0,0203)
    ["pv_estimate90"]=>
    float(0,0752)
    ["period_end"]=>
    string(28) "2023-09-16T17:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [14]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T18:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [15]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T18:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [16]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T19:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [17]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T19:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [18]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T20:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [19]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T20:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [20]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T21:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [21]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T21:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [22]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T22:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [23]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T22:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [24]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T23:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [25]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-16T23:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [26]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T00:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [27]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T00:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [28]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T01:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [29]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T01:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [30]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T02:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [31]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T02:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [32]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T03:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [33]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T03:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [34]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T04:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [35]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T04:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [36]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0053)
    ["pv_estimate10"]=>
    float(0,0053)
    ["pv_estimate90"]=>
    float(0,0053)
    ["period_end"]=>
    string(28) "2023-09-17T05:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [37]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,1286)
    ["pv_estimate10"]=>
    float(0,0793)
    ["pv_estimate90"]=>
    float(0,13503)
    ["period_end"]=>
    string(28) "2023-09-17T05:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [38]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,2564)
    ["pv_estimate10"]=>
    float(0,2378)
    ["pv_estimate90"]=>
    float(0,26922)
    ["period_end"]=>
    string(28) "2023-09-17T06:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [39]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,7464)
    ["pv_estimate10"]=>
    float(0,6365)
    ["pv_estimate90"]=>
    float(0,78372)
    ["period_end"]=>
    string(28) "2023-09-17T06:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [40]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,3385)
    ["pv_estimate10"]=>
    float(1,0744)
    ["pv_estimate90"]=>
    float(1,405425)
    ["period_end"]=>
    string(28) "2023-09-17T07:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [41]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,1154)
    ["pv_estimate10"]=>
    float(1,4792)
    ["pv_estimate90"]=>
    float(2,1345)
    ["period_end"]=>
    string(28) "2023-09-17T07:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [42]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,9133)
    ["pv_estimate10"]=>
    float(1,8865)
    ["pv_estimate90"]=>
    float(2,9133)
    ["period_end"]=>
    string(28) "2023-09-17T08:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [43]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,6462)
    ["pv_estimate10"]=>
    float(2,2913)
    ["pv_estimate90"]=>
    float(3,6462)
    ["period_end"]=>
    string(28) "2023-09-17T08:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [44]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,3221)
    ["pv_estimate10"]=>
    float(2,6957)
    ["pv_estimate90"]=>
    float(4,3221)
    ["period_end"]=>
    string(28) "2023-09-17T09:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [45]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,8857)
    ["pv_estimate10"]=>
    float(3,0593)
    ["pv_estimate90"]=>
    float(4,8857)
    ["period_end"]=>
    string(28) "2023-09-17T09:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [46]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,3696)
    ["pv_estimate10"]=>
    float(3,3398)
    ["pv_estimate90"]=>
    float(5,3696)
    ["period_end"]=>
    string(28) "2023-09-17T10:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [47]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,7741)
    ["pv_estimate10"]=>
    float(3,5884)
    ["pv_estimate90"]=>
    float(5,7741)
    ["period_end"]=>
    string(28) "2023-09-17T10:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [48]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,04)
    ["pv_estimate10"]=>
    float(3,7426)
    ["pv_estimate90"]=>
    float(6,04)
    ["period_end"]=>
    string(28) "2023-09-17T11:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [49]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2436)
    ["pv_estimate10"]=>
    float(3,8501)
    ["pv_estimate90"]=>
    float(6,2436)
    ["period_end"]=>
    string(28) "2023-09-17T11:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [50]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2826)
    ["pv_estimate10"]=>
    float(3,8584)
    ["pv_estimate90"]=>
    float(6,2826)
    ["period_end"]=>
    string(28) "2023-09-17T12:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [51]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,2605)
    ["pv_estimate10"]=>
    float(3,7615)
    ["pv_estimate90"]=>
    float(6,2605)
    ["period_end"]=>
    string(28) "2023-09-17T12:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [52]=>
  array(5) {
    ["pv_estimate"]=>
    float(6,0999)
    ["pv_estimate10"]=>
    float(3,5268)
    ["pv_estimate90"]=>
    float(6,0999)
    ["period_end"]=>
    string(28) "2023-09-17T13:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [53]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,8146)
    ["pv_estimate10"]=>
    float(3,1628)
    ["pv_estimate90"]=>
    float(5,8146)
    ["period_end"]=>
    string(28) "2023-09-17T13:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [54]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,4549)
    ["pv_estimate10"]=>
    float(2,7248)
    ["pv_estimate90"]=>
    float(5,4549)
    ["period_end"]=>
    string(28) "2023-09-17T14:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [55]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,9376)
    ["pv_estimate10"]=>
    float(2,2453)
    ["pv_estimate90"]=>
    float(4,9376)
    ["period_end"]=>
    string(28) "2023-09-17T14:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [56]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,2766)
    ["pv_estimate10"]=>
    float(1,7397)
    ["pv_estimate90"]=>
    float(4,3566)
    ["period_end"]=>
    string(28) "2023-09-17T15:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [57]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,1944)
    ["pv_estimate10"]=>
    float(1,2056)
    ["pv_estimate90"]=>
    float(3,5927)
    ["period_end"]=>
    string(28) "2023-09-17T15:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [58]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,1622)
    ["pv_estimate10"]=>
    float(0,7391)
    ["pv_estimate90"]=>
    float(2,7876)
    ["period_end"]=>
    string(28) "2023-09-17T16:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [59]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,3883)
    ["pv_estimate10"]=>
    float(0,2976)
    ["pv_estimate90"]=>
    float(1,8944)
    ["period_end"]=>
    string(28) "2023-09-17T16:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [60]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,5482)
    ["pv_estimate10"]=>
    float(0,1093)
    ["pv_estimate90"]=>
    float(0,8807)
    ["period_end"]=>
    string(28) "2023-09-17T17:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [61]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0251)
    ["pv_estimate10"]=>
    float(0,01)
    ["pv_estimate90"]=>
    float(0,0424)
    ["period_end"]=>
    string(28) "2023-09-17T17:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [62]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T18:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [63]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T18:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [64]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T19:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [65]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T19:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [66]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T20:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [67]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T20:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [68]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T21:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [69]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T21:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [70]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T22:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [71]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T22:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [72]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T23:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [73]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-17T23:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [74]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T00:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [75]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T00:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [76]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T01:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [77]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T01:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [78]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T02:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [79]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T02:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [80]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T03:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [81]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T03:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [82]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T04:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [83]=>
  array(5) {
    ["pv_estimate"]=>
    int(0)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    int(0)
    ["period_end"]=>
    string(28) "2023-09-18T04:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [84]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,0053)
    ["pv_estimate10"]=>
    int(0)
    ["pv_estimate90"]=>
    float(0,0053)
    ["period_end"]=>
    string(28) "2023-09-18T05:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [85]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,1215)
    ["pv_estimate10"]=>
    float(0,074)
    ["pv_estimate90"]=>
    float(0,1255)
    ["period_end"]=>
    string(28) "2023-09-18T05:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [86]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,3851)
    ["pv_estimate10"]=>
    float(0,2196)
    ["pv_estimate90"]=>
    float(0,404355)
    ["period_end"]=>
    string(28) "2023-09-18T06:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [87]=>
  array(5) {
    ["pv_estimate"]=>
    float(0,7977)
    ["pv_estimate10"]=>
    float(0,5927)
    ["pv_estimate90"]=>
    float(0,837585)
    ["period_end"]=>
    string(28) "2023-09-18T06:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [88]=>
  array(5) {
    ["pv_estimate"]=>
    float(1,3406)
    ["pv_estimate10"]=>
    float(1,0685)
    ["pv_estimate90"]=>
    float(1,40763)
    ["period_end"]=>
    string(28) "2023-09-18T07:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [89]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,0392)
    ["pv_estimate10"]=>
    float(1,533)
    ["pv_estimate90"]=>
    float(2,0459)
    ["period_end"]=>
    string(28) "2023-09-18T07:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [90]=>
  array(5) {
    ["pv_estimate"]=>
    float(2,759)
    ["pv_estimate10"]=>
    float(1,9546)
    ["pv_estimate90"]=>
    float(2,759)
    ["period_end"]=>
    string(28) "2023-09-18T08:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [91]=>
  array(5) {
    ["pv_estimate"]=>
    float(3,4423)
    ["pv_estimate10"]=>
    float(2,3242)
    ["pv_estimate90"]=>
    float(3,4423)
    ["period_end"]=>
    string(28) "2023-09-18T08:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [92]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,0996)
    ["pv_estimate10"]=>
    float(2,6947)
    ["pv_estimate90"]=>
    float(4,0996)
    ["period_end"]=>
    string(28) "2023-09-18T09:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [93]=>
  array(5) {
    ["pv_estimate"]=>
    float(4,6689)
    ["pv_estimate10"]=>
    float(2,9534)
    ["pv_estimate90"]=>
    float(4,6689)
    ["period_end"]=>
    string(28) "2023-09-18T09:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [94]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,1187)
    ["pv_estimate10"]=>
    float(3,0596)
    ["pv_estimate90"]=>
    float(5,1267)
    ["period_end"]=>
    string(28) "2023-09-18T10:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [95]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,3823)
    ["pv_estimate10"]=>
    float(3,0769)
    ["pv_estimate90"]=>
    float(5,4673)
    ["period_end"]=>
    string(28) "2023-09-18T10:30:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
  [96]=>
  array(5) {
    ["pv_estimate"]=>
    float(5,5711)
    ["pv_estimate10"]=>
    float(3,0465)
    ["pv_estimate90"]=>
    float(5,7449)
    ["period_end"]=>
    string(28) "2023-09-18T11:00:00.0000000Z"
    ["period"]=>
    string(5) "PT30M"
  }
}
string(6) "SENDER"
int(18)
NULL
2023-09-17string(28) "2023-09-17T19:00:00.0000000Z"
string(19) "2023-09-17:19:00:00"
int(1694977200)
int(1694890800)