<?php
function cfg(){static $c;if(!$c){$c=require __DIR__.'/config.php';date_default_timezone_set($c['app']['timezone']);}$c;}
function load_rows():array{$p=cfg()['data']['json_path'];if(!file_exists($p))return[];
$rows=json_decode(file_get_contents($p),true)??[];usort($rows,fn($a,$b)=>strcmp($a['date'],$b['date']));return $rows;}
?>