diff --git a/config/config.json b/config/config.json index 8517216..a0f66a3 100644 --- a/config/config.json +++ b/config/config.json @@ -44,12 +44,12 @@ "delete": 365 }, "cooling_model_config": { - "timeDecayFactor": 0.5, // Controls logarithmic growth rate - "baseRetention": 300.0, // Base retention multiplier - "periodGranularityFactor": 7, // Exponent for period scaling - "warmPhaseMultiplier": 10.0, // Kept for compatibility - "coldPhaseMultiplier": 20.0, // Kept for compatibility - "deletePhaseMultiplier": 40.0, // Kept for compatibility + "timeDecayFactor": 10, + "baseRetention": 1.0, + "periodGranularityFactor": 0.1, + "warmPhaseMultiplier": 1.0, + "coldPhaseMultiplier": 2.0, + "deletePhaseMultiplier": 5.0 } }, "ma": { diff --git a/elasticilm/ilm.go b/elasticilm/ilm.go index 3cf2c09..81b3ab9 100644 --- a/elasticilm/ilm.go +++ b/elasticilm/ilm.go @@ -50,15 +50,26 @@ func NonLinearCoolingModel(daysDiff int, period string, config map[string]float6 cfg = periodBaseConfig["1m"] // 默认配置 } + // 从配置获取参数,设置默认值 + timeDecayFactor := 0.5 + if td, ok := config["timeDecayFactor"]; ok { + timeDecayFactor = td + } + // 反转时间衰减因子:数据越新,保留时间越长 // 使用反比例函数:1/(x+1) 确保新数据(小daysDiff)获得更大值 - ageFactor := 1.0 / (float64(daysDiff)/365.0 + 1.0) + ageFactor := timeDecayFactor / (float64(daysDiff)/365.0 + 1.0) // 计算基础保留时间(与时间框架相关) base := cfg.Base - // 应用年龄因子 - 新数据获得更长保留时间 - warm := int(float64(base) * (1.0 + ageFactor)) + // 应用年龄因子和阶段乘数 - 新数据获得更长保留时间 + warmPhaseMultiplier := 1.0 + if wm, ok := config["warmPhaseMultiplier"]; ok { + warmPhaseMultiplier = wm + } + + warm := int(float64(base) * warmPhaseMultiplier * (1.0 + ageFactor)) cold := warm * 2 delete := warm * 3 @@ -73,6 +84,9 @@ func NonLinearCoolingModel(daysDiff int, period string, config map[string]float6 delete = warm * 3 } + // 打印计算结果 + fmt.Printf("[Cooling Model] Period: %s, DaysDiff: %d => warm=%dd, cold=%dd, delete=%dd\n", + period, daysDiff, warm, cold, delete) return warm, cold, delete } diff --git a/elasticilm/ilm_test.go b/elasticilm/ilm_test.go index b52beff..1a9925d 100644 --- a/elasticilm/ilm_test.go +++ b/elasticilm/ilm_test.go @@ -2,12 +2,33 @@ package elasticilm import ( "fmt" + cfg "gitea.zjmud.xyz/phyer/tanya/config" // 导入你的 config 包 + "os" "strings" - // "math" "testing" "time" ) +func loadConfig(t *testing.T) *cfg.Config { + configPaths := []string{ + "config/config.json", + "../config/config.json", + "../../config/config.json", + } + + var config *cfg.Config + var err error + for _, path := range configPaths { + config, err = cfg.LoadConfig(path) + if err == nil { + return config + } + } + + t.Fatalf("failed to load config after trying paths: %v. Tried paths: %v", err, configPaths) + return nil // 不会到达这里 +} + // TestEnsureILMPolicy 测试 ensureILMPolicy 函数并生成warm阶段时间矩阵(CSV格式) func TestEnsureILMPolicy(t *testing.T) { // 定义时间框架 @@ -15,7 +36,7 @@ func TestEnsureILMPolicy(t *testing.T) { // 定义日期范围 startDate := time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC) - endDate := time.Date(2025, 3, 1, 0, 0, 0, 0, time.UTC) + endDate := time.Date(2025, 6, 1, 0, 0, 0, 0, time.UTC) currentDate := time.Date(2025, 4, 1, 0, 0, 0, 0, time.UTC) // 初始化HTML输出 @@ -50,21 +71,17 @@ func TestEnsureILMPolicy(t *testing.T) { daysDiff := int(currentDate.Sub(d).Hours() / 24) htmlOutput.WriteString(`` + month + ``) - + config := loadConfig(t) // 遍历每个时间框架 for _, period := range timeFrames { // 默认配置 - config := map[string]float64{ - "timeDecayFactor": 0.3, - "periodGranularityFactor": 0.7, - "warmPhaseMultiplier": 1.0, - "coldPhaseMultiplier": 2.0, - "deletePhaseMultiplier": 3.0, - } + // 加载配置文件 + // 尝试从不同层级加载配置 + // 获取candle类型的冷却模型配置 + coolingConfig := config.Elasticsearch.ILM.DataTypes["candle"].CoolingModelConfig // 计算warm阶段时间 - warmDays, _, _ := NonLinearCoolingModel(daysDiff, period, config) - + warmDays, _, _ := NonLinearCoolingModel(daysDiff, period, coolingConfig) // 计算颜色 (0-255范围) 基于0-1800的范围 colorValue := int(float64(warmDays) / 2500 * 255) if colorValue > 255 { @@ -82,9 +99,113 @@ func TestEnsureILMPolicy(t *testing.T) { } htmlOutput.WriteString(` + +

ILM Cold Phase Duration Matrix

+ + + `) + + // 写入cold表头 + for _, period := range timeFrames { + htmlOutput.WriteString(fmt.Sprintf(``, period)) + } + htmlOutput.WriteString(``) + + // 遍历每个月,生成cold矩阵 + for d := startDate; !d.After(endDate); d = d.AddDate(0, 1, 0) { + month := d.Format("2006-01") + daysDiff := int(currentDate.Sub(d).Hours() / 24) + + htmlOutput.WriteString(``) + + // 遍历每个时间框架 + for _, period := range timeFrames { + // 默认配置 + config := map[string]float64{ + "timeDecayFactor": 10, + "baseRetention": 1, + "periodGranularityFactor": 0.1, + "warmPhaseMultiplier": 1.0, + "coldPhaseMultiplier": 2.0, + "deletePhaseMultiplier": 5.0, + } + + // 计算cold阶段时间 + _, coldDays, _ := NonLinearCoolingModel(daysDiff, period, config) + + // 计算颜色 (0-255范围) 基于0-2000的范围 + colorValue := int(float64(coldDays) / 2000 * 255) + if colorValue > 255 { + colorValue = 255 + } + bgColor := fmt.Sprintf("rgb(%d, 0, %d)", colorValue, 255-colorValue) + + htmlOutput.WriteString(fmt.Sprintf( + ``, + bgColor, + coldDays, + )) + } + htmlOutput.WriteString(``) + } + + htmlOutput.WriteString(`
Month%s
` + month + `%d
+ +

ILM Delete Phase Duration Matrix

+ + + `) + + // 写入delete表头 + for _, period := range timeFrames { + htmlOutput.WriteString(fmt.Sprintf(``, period)) + } + htmlOutput.WriteString(``) + + // 遍历每个月,生成delete矩阵 + for d := startDate; !d.After(endDate); d = d.AddDate(0, 1, 0) { + month := d.Format("2006-01") + daysDiff := int(currentDate.Sub(d).Hours() / 24) + + htmlOutput.WriteString(``) + + // 遍历每个时间框架 + for _, period := range timeFrames { + // 默认配置 + config := map[string]float64{ + "timeDecayFactor": 10, + "baseRetention": 1, + "periodGranularityFactor": 0.1, + "warmPhaseMultiplier": 1.0, + "coldPhaseMultiplier": 2.0, + "deletePhaseMultiplier": 5.0, + } + + // 计算delete阶段时间 + _, _, deleteDays := NonLinearCoolingModel(daysDiff, period, config) + + // 计算颜色 (0-255范围) 基于0-5000的范围 + colorValue := int(float64(deleteDays) / 5000 * 255) + if colorValue > 255 { + colorValue = 255 + } + bgColor := fmt.Sprintf("rgb(%d, 0, %d)", colorValue, 255-colorValue) + + htmlOutput.WriteString(fmt.Sprintf( + ``, + bgColor, + deleteDays, + )) + } + htmlOutput.WriteString(``) + } + + htmlOutput.WriteString(`
Month%s
` + month + `%d
`) - // 打印HTML结果 - fmt.Println(htmlOutput.String()) + // 写入到 warm.html 文件 + if err := os.WriteFile("warm.html", []byte(htmlOutput.String()), 0644); err != nil { + t.Fatalf("Failed to write HTML file: %v", err) + } } diff --git a/elasticilm/warm.html b/elasticilm/warm.html new file mode 100644 index 0000000..663b312 --- /dev/null +++ b/elasticilm/warm.html @@ -0,0 +1,29 @@ + + + + ILM Warm Phase Matrix + + + +

ILM Warm Phase Duration Matrix

+ + +
Month1m3m5m15m30m1H2H4H6H12H1D2D5D1W
2018-0166991321992653313985306637961061132715921857
2018-02661001332002663334005336678001067133416011868
2018-03671001342012683354025366708041073134116091878
2018-04671011342022693374045396748091079134916191889
2018-05671011352032713394075426788141085135716281900
2018-06681021362042733414095466828191092136516381911
2018-07681031372062743434125496868241098137316481923
2018-08691031382072763454145526918291105138216581935
2018-09691041392082783474175566958341112139016691947
2018-10691041392092793494195596998391119139916791959
2018-11701051402112813524225637048451126140816901972
2018-12701061412122833544255677088501134141717011984
2019-01711071422142853564285707138561141142717121998
2019-02711071432152873594315747188621149143717242012
2019-03721081442162893614335787238671156144617352024
2019-04721091452182913644365827288731165145617472039
2019-05731091462192933664395867338791173146617592053
2019-06731101472212953694435907388861181147717722068
2019-07741111482232973724465957448921190148817852083
2019-08741121492242993744495997498991199149917992099
2019-09751131512263023774536047559061208151018132115
2019-10761141522283043804566087619131217152218262131
2019-11761151532303063834606137679201227153418412148
2019-12771161542323093864646187739281237154618562165
2020-01771161552333113894676237799351247155918712183
2020-02781171572353143934716297869431258157218872202
2020-03791181582373173964756347929511268158519022219
2020-04791191592393193994796397999591279159919192239
2020-05801211612423224034846458069681290161319362258
2020-06811221622443254074886518149761302162819532279
2020-07821231642463284104926578219851314164219712300
2020-08821241652483314144976638299951326165819902321
2020-098312516725133441850266983710041339167420092344
2020-108412616925333842250767684510141352169020282366
2020-118512817025634142651268385310241366170720492390
2020-128612917225834443151768986210341379172420692414
2021-018713017426134843552269787110451394174320912440
2021-028813217626435244052870488010571409176121142466
2021-038813317726635544453371188910671423177921352491
2021-048913417926935944953971989910791439179921592519
2021-059013618127236345454572790910911455181921832547
2021-069213818427636846055273692011041472184022082577
2021-079313918627937246555874493111171489186222342607
2021-089414118828237747156575494211311508188522622639
2021-099514319028638147757276395411451527190922902672
2021-109614419328938648357977396611591546193223192706
2021-119714619529339148958778397911751566195823502741
2021-129914819829739649659579399211901587198423812778
2022-01100150201301402502603804100512071609201124142816
2022-02102153204306408510612816102012241632204024482857
2022-03103155206310413516620827103312401654206724812894
2022-04104157209314419524629839104912591679209825182938
2022-05106159213319426532639852106512781704213025562982
2022-06108162216324432541649865108212981731216425973030
2022-07109164219329439549659879109913191758219826383077
2022-08111167223335447558670894111713411788223526823129
2022-09113170227341454568682909113713641819227427293184
2022-10115173231347462578694925115613881850231327763239
2022-11117176235353471589706942117814131884235628273298
2022-12119179239359479599719959119914391919239928793359
2023-01122183244366489611733978122314671957244629353425
2023-02124187249374499624748998124814971996249629953494
2023-031271902543815086357621017127115252034254330513560
2023-041291942593895196497791039129915582078259831173637
2023-051321992653985306637961061132715922123265431853716
2023-061352032714075436788141086135716292172271532593802
2023-071382082774165556948331111138916672223277933343890
2023-081422132844275697128541139142417092278284834183987
2023-091462192924385847308761168146117532337292235064091
2023-101492242994495997498991199149917992398299835984198
2023-111542313084626167709241233154118492466308236994316
2023-121582373174756347929511268158519022536317038044438
2024-011632453264906538169801306163319602613326739204574
2024-0216825233750567484310111348168620232697337240464721
2024-0317326034752169586910431391173820862782347741734868
2024-0418027036054072090010801440180021602880360043205040
2024-0518627937255974593211181491186422372982372844745220
2024-0619329038758177496811621549193623243098387346485422
2024-07201302402604805100612081610201324163221402748325638
2024-08210315420630840105012601680210025213361420150425882
2024-09219329439659879109813181758219726373516439552746153
2024-10230345460690920115013811841230127623682460355246445
2024-11242363484726968121114531937242229063875484458136781
2024-122553825107651021127615312042255330634084510661277148
2025-012704055418111082135316232165270632474330541364957578
2025-022884325768641153144117292306288234594612576569188071
2025-033064596139191226153218392452306536784904613073568582
2025-043304956609901320165019802640330039605280660079209240
2025-0535653571310701427178421412854356842825709713785649992
2025-06390585780117015601950234131213901468262437803936410925
+ +

ILM Cold Phase Duration Matrix

+ + +
Month1m3m5m15m30m1H2H4H6H12H1D2D5D1W
2018-011321982643985306627961060132615922122265431843714
2018-021322002664005326668001066133416002134266832023736
2018-031342002684025366708041072134016082146268232183756
2018-041342022684045386748081078134816182158269832383778
2018-051342022704065426788141084135616282170271432563800
2018-061362042724085466828181092136416382184273032763822
2018-071362062744125486868241098137216482196274632963846
2018-081382062764145526908281104138216582210276433163870
2018-091382082784165566948341112139016682224278033383894
2018-101382082784185586988381118139816782238279833583918
2018-111402102804225627048441126140816902252281633803944
2018-121402122824245667088501134141617002268283434023968
2019-011422142844285707128561140142617122282285434243996
2019-021422142864305747188621148143617242298287434484024
2019-031442162884325787228661156144617342312289234704048
2019-041442182904365827288721164145617462330291234944078
2019-051462182924385867328781172146617582346293235184106
2019-061462202944425907388861180147617722362295435444136
2019-071482222964465947448921190148817842380297635704166
2019-081482242984485987488981198149817982398299835984198
2019-091502263024526047549061208151018122416302036264230
2019-101522283044566087609121216152218262434304436524262
2019-111522303064606127669201226153418402454306836824296
2019-121542323084646187729281236154618562474309237124330
2020-011542323104666227789341246155818702494311837424366
2020-021562343144706287869421258157218862516314437744404
2020-031582363164746347929501268158419022536317038044438
2020-041582383184786387989581278159819182558319838384478
2020-051602423224846448069681290161219362580322638724516
2020-061622443244886508149761302162819522604325639064558
2020-071642463284926568209841314164219702628328439424600
2020-081642483304966628289941326165819902652331639804642
2020-0916625033450266883610041338167420082678334840184688
2020-1016825233850667684410141352169020282704338040564732
2020-1117025634051268285210241366170620482732341440984780
2020-1217225834451668886210341378172420682758344841384828
2021-0117426034852269687010441394174220902788348641824880
2021-0217626435252870488010561408176021142818352242284932
2021-0317626635453271088810661422177821342846355842704982
2021-0417826835853871889810781438179821582878359843185038
2021-0518027236254472690810901454181821822910363843665094
2021-0618427636855273692011041472184022082944368044165154
2021-0718627837255874493011161488186222342978372444685214
2021-0818828237656475494211301508188422623016377045245278
2021-0919028638057276295411441526190822903054381845805344
2021-1019228838657877296611581546193223183092386446385412
2021-1119429239058678297811741566195823503132391647005482
2021-1219829639659479299211901586198423803174396847625556
2022-01200300402602804100412061608201024143218402248285632
2022-02204306408612816102012241632204024483264408048965714
2022-03206310412620826103212401654206624803308413449625788
2022-04208314418628838104812581678209825183358419650365876
2022-05212318426638852106412781704213025563408426051125964
2022-06216324432648864108212981730216425963462432851946060
2022-07218328438658878109813181758219826383516439652766154
2022-08222334446670894111613401788223426823576447053646258
2022-09226340454682908113613641818227427283638454854586368
2022-10230346462694924115613881850231227763700462655526478
2022-11234352470706942117814121884235628263768471256546596
2022-12238358478718958119814381918239828783838479857586718
2023-01244366488732978122214661956244629343914489258706850
2023-02248374498748998124814961996249629943992499259906988
2023-032543805087621016127015242034254230504068508661027120
2023-042583885187781038129815582078259831164156519662347274
2023-052643985307961060132615922122265431844246530863707432
2023-062704065428141086135616282172271432584344543065187604
2023-072764165548321110138816662222277833344446555866687780
2023-082844265688541138142417082278284834184556569668367974
2023-092924385848761168146017522336292235064674584470128182
2023-102984485988981198149817982398299835984796599671968396
2023-113084626169241232154018482466308236984932616473988632
2023-123164746349501268158419022536317038045072634076088876
2024-013264906529801306163219602612326639205226653478409148
2024-0233650467410101348168620222696337240465394674480929442
2024-0334652069410421390173820862782347641725564695483469736
2024-04360540720108014401800216028803600432057607200864010080
2024-05372558744111814901864223629823728447459647456894810440
2024-06386580774116215481936232430983872464861967746929610844
2024-07402604804120816102012241632204026483264428054966411276
2024-084206308401260168021002520336042005042672284021008411764
2024-094386588781318175821962636351643945274703287901054812306
2024-104606909201380184023002762368246025524736492061104812890
2024-114847269681452193624222906387448445812775096881162613562
2024-12510764102015302042255230624084510661268168102121225414296
2025-01540810108216222164270632464330541264948660108261299015156
2025-02576864115217282306288234584612576469189224115301383616142
2025-03612918122618382452306436784904613073569808122601471217164
2025-046609901320198026403300396052806600792010560132001584018480
2025-0571210701426214028543568428257087136856411418142741712819984
2025-0678011701560234031203900468262427802936412486156061872821850
+ +

ILM Delete Phase Duration Matrix

+ + +
Month1m3m5m15m30m1H2H4H6H12H1D2D5D1W
2018-0119829739659779599311941590198923883183398147765571
2018-0219830039960079899912001599200124003201400248035604
2018-03201300402603804100512061608201024123219402348275634
2018-04201303402606807101112121617202224273237404748575667
2018-05201303405609813101712211626203424423255407148845700
2018-06204306408612819102312271638204624573276409549145733
2018-07204309411618822102912361647205824723294411949445769
2018-08207309414621828103512421656207324873315414649745805
2018-09207312417624834104112511668208525023336417050075841
2018-10207312417627837104712571677209725173357419750375877
2018-11210315420633843105612661689211225353378422450705916
2018-12210318423636849106212751701212425503402425151035952
2019-01213321426642855106812841710213925683423428151365994
2019-02213321429645861107712931722215425863447431151726036
2019-03216324432648867108312991734216926013468433852056072
2019-04216327435654873109213081746218426193495436852416117
2019-05219327438657879109813171758219926373519439852776159
2019-06219330441663885110713291770221426583543443153166204
2019-07222333444669891111613381785223226763570446453556249
2019-08222336447672897112213471797224726973597449753976297
2019-09225339453678906113113591812226527183624453054396345
2019-10228342456684912114013681824228327393651456654786393
2019-11228345459690918114913801839230127603681460255236444
2019-12231348462696927115813921854231927843711463855686495
2020-01231348465699933116714011869233728053741467756136549
2020-02234351471705942117914131887235828293774471656616606
2020-03237354474711951118814251902237628533804475557066657
2020-04237357477717957119714371917239728773837479757576717
2020-05240363483726966120914521935241829043870483958086774
2020-06243366486732975122114641953244229283906488458596837
2020-07246369492738984123014761971246329553942492659136900
2020-08246372495744993124214911989248729853978497459706963
2020-092493755017531002125415062007251130124017502260277032
2020-102523785077591014126615212028253530424056507060847098
2020-112553845107681023127815362049255930724098512161477170
2020-122583875167741032129315512067258631024137517262077242
2021-012613905227831044130515662091261331354182522962737320
2021-022643965287921056132015842112264031714227528363427398
2021-032643995317981065133215992133266732014269533764057473
2021-042674025378071077134716172157269732374317539764777557
2021-052704085438161089136216352181272732734365545765497641
2021-062764145528281104138016562208276033124416552066247731
2021-072794175588371116139516742232279333514467558667027821
2021-082824235648461131141316952262282633934524565567867917
2021-092854295708581143143117162289286234354581572768708016
2021-102884325798671158144917372319289834774638579669578118
2021-112914385858791173146717612349293735254698587470508223
2021-122974445948911188148817852379297635704761595271438334
2022-013004506039031206150618092412301536214827603372428448
2022-023064596129181224153018362448306036724896612073448571
2022-033094656189301239154818602481309937204962620174438682
2022-043124716279421257157218872517314737775037629475548814
2022-053184776399571278159619172556319538345112639076688946
2022-063244866489721296162319472595324638945193649277919090
2022-073274926579871317164719772637329739575274659479149231
2022-0833350166910051341167420102682335140235364670580469387
2022-0933951068110231362170420462727341140925457682281879552
2022-1034551969310411386173420822775346841645550693983289717
2022-1135152870510591413176721182826353442395652706884819894
2022-12357537717107714371797215728773597431757577197863710077
2023-01366549732109814671833219929343669440158717338880510275
2023-02372561747112214971872224429943744449159887488898510482
2023-03381570762114315241905228630513813457561027629915310680
2023-04387582777116715571947233731173897467462347794935110911
2023-05396597795119415901989238831833981477663697962955511148
2023-06405609813122116292034244232584071488765168145977711406
2023-074146248311248166520822499333341675001666983371000211670
2023-084266398521281170721362562341742725127683485441025411961
2023-094386578761314175221902628350443835259701187661051812273
2023-104476728971347179722472697359744975397719489941079412594
2023-114626939241386184823102772369946235547739892461109712948
2023-124747119511425190223762853380447555706760895101141213314
2024-014897359781470195924482940391848995880783998011176013722
2024-02504756101115152022252930334044505860698091101161213814163
2024-03519780104115632085260731294173521462588346104311251914604
2024-04540810108016202160270032404320540064808640108001296015120
2024-05558837111616772235279633544473559267118946111841342215660
2024-06579870116117432322290434864647580869729294116191394416266
2024-07603906120618122415301836244830603972489663120811449616914
2024-086309451260189025203150378050406300756310083126031512617646
2024-096579871317197726373294395452746591791110548131851582218459
2024-1069010351380207027603450414355236903828611046138091657219335
2024-1172610891452217829043633435958117266871811625145321743920343
2024-1276511461530229530633828459361267659918912252153181838121444
2025-0181012151623243332464059486964958118974112990162391948522734
2025-02864129617282592345943235187691886461037713836172952075424213
2025-03918137718392757367845965517735691951103414712183902206825746
2025-04990148519802970396049505940792099001188015840198002376027720
2025-0510681605213932104281535264238562107041284617127214112569229976
2025-0611701755234035104680585070239363117031404618729234092809232775
+ + \ No newline at end of file diff --git a/elasticilm/warmDay.json b/elasticilm/warmDay.json deleted file mode 100644 index ade2213..0000000 --- a/elasticilm/warmDay.json +++ /dev/null @@ -1,4906 +0,0 @@ -=== RUN TestEnsureILMPolicy -{ - "12H": [ - { - "Month": "2018-01", - "Result": "Warm: 403, Cold: 806, Delete: 1209" - }, - { - "Month": "2018-02", - "Result": "Warm: 404, Cold: 808, Delete: 1212" - }, - { - "Month": "2018-03", - "Result": "Warm: 404, Cold: 808, Delete: 1212" - }, - { - "Month": "2018-04", - "Result": "Warm: 404, Cold: 808, Delete: 1212" - }, - { - "Month": "2018-05", - "Result": "Warm: 405, Cold: 810, Delete: 1215" - }, - { - "Month": "2018-06", - "Result": "Warm: 405, Cold: 810, Delete: 1215" - }, - { - "Month": "2018-07", - "Result": "Warm: 406, Cold: 812, Delete: 1218" - }, - { - "Month": "2018-08", - "Result": "Warm: 406, Cold: 812, Delete: 1218" - }, - { - "Month": "2018-09", - "Result": "Warm: 407, Cold: 814, Delete: 1221" - }, - { - "Month": "2018-10", - "Result": "Warm: 407, Cold: 814, Delete: 1221" - }, - { - "Month": "2018-11", - "Result": "Warm: 408, Cold: 816, Delete: 1224" - }, - { - "Month": "2018-12", - "Result": "Warm: 409, Cold: 818, Delete: 1227" - }, - { - "Month": "2019-01", - "Result": "Warm: 409, Cold: 818, Delete: 1227" - }, - { - "Month": "2019-02", - "Result": "Warm: 410, Cold: 820, Delete: 1230" - }, - { - "Month": "2019-03", - "Result": "Warm: 410, Cold: 820, Delete: 1230" - }, - { - "Month": "2019-04", - "Result": "Warm: 411, Cold: 822, Delete: 1233" - }, - { - "Month": "2019-05", - "Result": "Warm: 411, Cold: 822, Delete: 1233" - }, - { - "Month": "2019-06", - "Result": "Warm: 412, Cold: 824, Delete: 1236" - }, - { - "Month": "2019-07", - "Result": "Warm: 413, Cold: 826, Delete: 1239" - }, - { - "Month": "2019-08", - "Result": "Warm: 413, Cold: 826, Delete: 1239" - }, - { - "Month": "2019-09", - "Result": "Warm: 414, Cold: 828, Delete: 1242" - }, - { - "Month": "2019-10", - "Result": "Warm: 415, Cold: 830, Delete: 1245" - }, - { - "Month": "2019-11", - "Result": "Warm: 416, Cold: 832, Delete: 1248" - }, - { - "Month": "2019-12", - "Result": "Warm: 416, Cold: 832, Delete: 1248" - }, - { - "Month": "2020-01", - "Result": "Warm: 417, Cold: 834, Delete: 1251" - }, - { - "Month": "2020-02", - "Result": "Warm: 418, Cold: 836, Delete: 1254" - }, - { - "Month": "2020-03", - "Result": "Warm: 419, Cold: 838, Delete: 1257" - }, - { - "Month": "2020-04", - "Result": "Warm: 419, Cold: 838, Delete: 1257" - }, - { - "Month": "2020-05", - "Result": "Warm: 420, Cold: 840, Delete: 1260" - }, - { - "Month": "2020-06", - "Result": "Warm: 421, Cold: 842, Delete: 1263" - }, - { - "Month": "2020-07", - "Result": "Warm: 422, Cold: 844, Delete: 1266" - }, - { - "Month": "2020-08", - "Result": "Warm: 423, Cold: 846, Delete: 1269" - }, - { - "Month": "2020-09", - "Result": "Warm: 424, Cold: 848, Delete: 1272" - }, - { - "Month": "2020-10", - "Result": "Warm: 425, Cold: 850, Delete: 1275" - }, - { - "Month": "2020-11", - "Result": "Warm: 426, Cold: 852, Delete: 1278" - }, - { - "Month": "2020-12", - "Result": "Warm: 427, Cold: 854, Delete: 1281" - }, - { - "Month": "2021-01", - "Result": "Warm: 428, Cold: 856, Delete: 1284" - }, - { - "Month": "2021-02", - "Result": "Warm: 429, Cold: 858, Delete: 1287" - }, - { - "Month": "2021-03", - "Result": "Warm: 430, Cold: 860, Delete: 1290" - }, - { - "Month": "2021-04", - "Result": "Warm: 431, Cold: 862, Delete: 1293" - }, - { - "Month": "2021-05", - "Result": "Warm: 433, Cold: 866, Delete: 1299" - }, - { - "Month": "2021-06", - "Result": "Warm: 434, Cold: 868, Delete: 1302" - }, - { - "Month": "2021-07", - "Result": "Warm: 435, Cold: 870, Delete: 1305" - }, - { - "Month": "2021-08", - "Result": "Warm: 437, Cold: 874, Delete: 1311" - }, - { - "Month": "2021-09", - "Result": "Warm: 438, Cold: 876, Delete: 1314" - }, - { - "Month": "2021-10", - "Result": "Warm: 439, Cold: 878, Delete: 1317" - }, - { - "Month": "2021-11", - "Result": "Warm: 441, Cold: 882, Delete: 1323" - }, - { - "Month": "2021-12", - "Result": "Warm: 443, Cold: 886, Delete: 1329" - }, - { - "Month": "2022-01", - "Result": "Warm: 444, Cold: 888, Delete: 1332" - }, - { - "Month": "2022-02", - "Result": "Warm: 446, Cold: 892, Delete: 1338" - }, - { - "Month": "2022-03", - "Result": "Warm: 448, Cold: 896, Delete: 1344" - }, - { - "Month": "2022-04", - "Result": "Warm: 449, Cold: 898, Delete: 1347" - }, - { - "Month": "2022-05", - "Result": "Warm: 451, Cold: 902, Delete: 1353" - }, - { - "Month": "2022-06", - "Result": "Warm: 453, Cold: 906, Delete: 1359" - }, - { - "Month": "2022-07", - "Result": "Warm: 455, Cold: 910, Delete: 1365" - }, - { - "Month": "2022-08", - "Result": "Warm: 458, Cold: 916, Delete: 1374" - }, - { - "Month": "2022-09", - "Result": "Warm: 460, Cold: 920, Delete: 1380" - }, - { - "Month": "2022-10", - "Result": "Warm: 462, Cold: 924, Delete: 1386" - }, - { - "Month": "2022-11", - "Result": "Warm: 465, Cold: 930, Delete: 1395" - }, - { - "Month": "2022-12", - "Result": "Warm: 467, Cold: 934, Delete: 1401" - }, - { - "Month": "2023-01", - "Result": "Warm: 470, Cold: 940, Delete: 1410" - }, - { - "Month": "2023-02", - "Result": "Warm: 473, Cold: 946, Delete: 1419" - }, - { - "Month": "2023-03", - "Result": "Warm: 476, Cold: 952, Delete: 1428" - }, - { - "Month": "2023-04", - "Result": "Warm: 479, Cold: 958, Delete: 1437" - }, - { - "Month": "2023-05", - "Result": "Warm: 483, Cold: 966, Delete: 1449" - }, - { - "Month": "2023-06", - "Result": "Warm: 486, Cold: 972, Delete: 1458" - }, - { - "Month": "2023-07", - "Result": "Warm: 490, Cold: 980, Delete: 1470" - }, - { - "Month": "2023-08", - "Result": "Warm: 494, Cold: 988, Delete: 1482" - }, - { - "Month": "2023-09", - "Result": "Warm: 499, Cold: 998, Delete: 1497" - }, - { - "Month": "2023-10", - "Result": "Warm: 503, Cold: 1006, Delete: 1509" - }, - { - "Month": "2023-11", - "Result": "Warm: 508, Cold: 1016, Delete: 1524" - }, - { - "Month": "2023-12", - "Result": "Warm: 514, Cold: 1028, Delete: 1542" - }, - { - "Month": "2024-01", - "Result": "Warm: 520, Cold: 1040, Delete: 1560" - }, - { - "Month": "2024-02", - "Result": "Warm: 526, Cold: 1052, Delete: 1578" - }, - { - "Month": "2024-03", - "Result": "Warm: 532, Cold: 1064, Delete: 1596" - }, - { - "Month": "2024-04", - "Result": "Warm: 540, Cold: 1080, Delete: 1620" - }, - { - "Month": "2024-05", - "Result": "Warm: 547, Cold: 1094, Delete: 1641" - }, - { - "Month": "2024-06", - "Result": "Warm: 556, Cold: 1112, Delete: 1668" - }, - { - "Month": "2024-07", - "Result": "Warm: 565, Cold: 1130, Delete: 1695" - }, - { - "Month": "2024-08", - "Result": "Warm: 576, Cold: 1152, Delete: 1728" - }, - { - "Month": "2024-09", - "Result": "Warm: 587, Cold: 1174, Delete: 1761" - }, - { - "Month": "2024-10", - "Result": "Warm: 600, Cold: 1200, Delete: 1800" - }, - { - "Month": "2024-11", - "Result": "Warm: 614, Cold: 1228, Delete: 1842" - }, - { - "Month": "2024-12", - "Result": "Warm: 630, Cold: 1260, Delete: 1890" - }, - { - "Month": "2025-01", - "Result": "Warm: 648, Cold: 1296, Delete: 1944" - }, - { - "Month": "2025-02", - "Result": "Warm: 669, Cold: 1338, Delete: 2007" - }, - { - "Month": "2025-03", - "Result": "Warm: 691, Cold: 1382, Delete: 2073" - } - ], - "15m": [ - { - "Month": "2018-01", - "Result": "Warm: 100, Cold: 200, Delete: 300" - }, - { - "Month": "2018-02", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-03", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-04", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-05", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-06", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-07", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-08", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-09", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-10", - "Result": "Warm: 101, Cold: 202, Delete: 303" - }, - { - "Month": "2018-11", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2018-12", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2019-01", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2019-02", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2019-03", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2019-04", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2019-05", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2019-06", - "Result": "Warm: 103, Cold: 206, Delete: 309" - }, - { - "Month": "2019-07", - "Result": "Warm: 103, Cold: 206, Delete: 309" - }, - { - "Month": "2019-08", - "Result": "Warm: 103, Cold: 206, Delete: 309" - }, - { - "Month": "2019-09", - "Result": "Warm: 103, Cold: 206, Delete: 309" - }, - { - "Month": "2019-10", - "Result": "Warm: 103, Cold: 206, Delete: 309" - }, - { - "Month": "2019-11", - "Result": "Warm: 104, Cold: 208, Delete: 312" - }, - { - "Month": "2019-12", - "Result": "Warm: 104, Cold: 208, Delete: 312" - }, - { - "Month": "2020-01", - "Result": "Warm: 104, Cold: 208, Delete: 312" - }, - { - "Month": "2020-02", - "Result": "Warm: 104, Cold: 208, Delete: 312" - }, - { - "Month": "2020-03", - "Result": "Warm: 104, Cold: 208, Delete: 312" - }, - { - "Month": "2020-04", - "Result": "Warm: 104, Cold: 208, Delete: 312" - }, - { - "Month": "2020-05", - "Result": "Warm: 105, Cold: 210, Delete: 315" - }, - { - "Month": "2020-06", - "Result": "Warm: 105, Cold: 210, Delete: 315" - }, - { - "Month": "2020-07", - "Result": "Warm: 105, Cold: 210, Delete: 315" - }, - { - "Month": "2020-08", - "Result": "Warm: 105, Cold: 210, Delete: 315" - }, - { - "Month": "2020-09", - "Result": "Warm: 106, Cold: 212, Delete: 318" - }, - { - "Month": "2020-10", - "Result": "Warm: 106, Cold: 212, Delete: 318" - }, - { - "Month": "2020-11", - "Result": "Warm: 106, Cold: 212, Delete: 318" - }, - { - "Month": "2020-12", - "Result": "Warm: 106, Cold: 212, Delete: 318" - }, - { - "Month": "2021-01", - "Result": "Warm: 107, Cold: 214, Delete: 321" - }, - { - "Month": "2021-02", - "Result": "Warm: 107, Cold: 214, Delete: 321" - }, - { - "Month": "2021-03", - "Result": "Warm: 107, Cold: 214, Delete: 321" - }, - { - "Month": "2021-04", - "Result": "Warm: 107, Cold: 214, Delete: 321" - }, - { - "Month": "2021-05", - "Result": "Warm: 108, Cold: 216, Delete: 324" - }, - { - "Month": "2021-06", - "Result": "Warm: 108, Cold: 216, Delete: 324" - }, - { - "Month": "2021-07", - "Result": "Warm: 108, Cold: 216, Delete: 324" - }, - { - "Month": "2021-08", - "Result": "Warm: 109, Cold: 218, Delete: 327" - }, - { - "Month": "2021-09", - "Result": "Warm: 109, Cold: 218, Delete: 327" - }, - { - "Month": "2021-10", - "Result": "Warm: 109, Cold: 218, Delete: 327" - }, - { - "Month": "2021-11", - "Result": "Warm: 110, Cold: 220, Delete: 330" - }, - { - "Month": "2021-12", - "Result": "Warm: 110, Cold: 220, Delete: 330" - }, - { - "Month": "2022-01", - "Result": "Warm: 111, Cold: 222, Delete: 333" - }, - { - "Month": "2022-02", - "Result": "Warm: 111, Cold: 222, Delete: 333" - }, - { - "Month": "2022-03", - "Result": "Warm: 112, Cold: 224, Delete: 336" - }, - { - "Month": "2022-04", - "Result": "Warm: 112, Cold: 224, Delete: 336" - }, - { - "Month": "2022-05", - "Result": "Warm: 112, Cold: 224, Delete: 336" - }, - { - "Month": "2022-06", - "Result": "Warm: 113, Cold: 226, Delete: 339" - }, - { - "Month": "2022-07", - "Result": "Warm: 113, Cold: 226, Delete: 339" - }, - { - "Month": "2022-08", - "Result": "Warm: 114, Cold: 228, Delete: 342" - }, - { - "Month": "2022-09", - "Result": "Warm: 115, Cold: 230, Delete: 345" - }, - { - "Month": "2022-10", - "Result": "Warm: 115, Cold: 230, Delete: 345" - }, - { - "Month": "2022-11", - "Result": "Warm: 116, Cold: 232, Delete: 348" - }, - { - "Month": "2022-12", - "Result": "Warm: 116, Cold: 232, Delete: 348" - }, - { - "Month": "2023-01", - "Result": "Warm: 117, Cold: 234, Delete: 351" - }, - { - "Month": "2023-02", - "Result": "Warm: 118, Cold: 236, Delete: 354" - }, - { - "Month": "2023-03", - "Result": "Warm: 119, Cold: 238, Delete: 357" - }, - { - "Month": "2023-04", - "Result": "Warm: 119, Cold: 238, Delete: 357" - }, - { - "Month": "2023-05", - "Result": "Warm: 120, Cold: 240, Delete: 360" - }, - { - "Month": "2023-06", - "Result": "Warm: 121, Cold: 242, Delete: 363" - }, - { - "Month": "2023-07", - "Result": "Warm: 122, Cold: 244, Delete: 366" - }, - { - "Month": "2023-08", - "Result": "Warm: 123, Cold: 246, Delete: 369" - }, - { - "Month": "2023-09", - "Result": "Warm: 124, Cold: 248, Delete: 372" - }, - { - "Month": "2023-10", - "Result": "Warm: 125, Cold: 250, Delete: 375" - }, - { - "Month": "2023-11", - "Result": "Warm: 127, Cold: 254, Delete: 381" - }, - { - "Month": "2023-12", - "Result": "Warm: 128, Cold: 256, Delete: 384" - }, - { - "Month": "2024-01", - "Result": "Warm: 130, Cold: 260, Delete: 390" - }, - { - "Month": "2024-02", - "Result": "Warm: 131, Cold: 262, Delete: 393" - }, - { - "Month": "2024-03", - "Result": "Warm: 133, Cold: 266, Delete: 399" - }, - { - "Month": "2024-04", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2024-05", - "Result": "Warm: 136, Cold: 272, Delete: 408" - }, - { - "Month": "2024-06", - "Result": "Warm: 139, Cold: 278, Delete: 417" - }, - { - "Month": "2024-07", - "Result": "Warm: 141, Cold: 282, Delete: 423" - }, - { - "Month": "2024-08", - "Result": "Warm: 144, Cold: 288, Delete: 432" - }, - { - "Month": "2024-09", - "Result": "Warm: 146, Cold: 292, Delete: 438" - }, - { - "Month": "2024-10", - "Result": "Warm: 150, Cold: 300, Delete: 450" - }, - { - "Month": "2024-11", - "Result": "Warm: 153, Cold: 306, Delete: 459" - }, - { - "Month": "2024-12", - "Result": "Warm: 157, Cold: 314, Delete: 471" - }, - { - "Month": "2025-01", - "Result": "Warm: 162, Cold: 324, Delete: 486" - }, - { - "Month": "2025-02", - "Result": "Warm: 167, Cold: 334, Delete: 501" - }, - { - "Month": "2025-03", - "Result": "Warm: 172, Cold: 344, Delete: 516" - } - ], - "1D": [ - { - "Month": "2018-01", - "Result": "Warm: 538, Cold: 1076, Delete: 1614" - }, - { - "Month": "2018-02", - "Result": "Warm: 538, Cold: 1076, Delete: 1614" - }, - { - "Month": "2018-03", - "Result": "Warm: 539, Cold: 1078, Delete: 1617" - }, - { - "Month": "2018-04", - "Result": "Warm: 539, Cold: 1078, Delete: 1617" - }, - { - "Month": "2018-05", - "Result": "Warm: 540, Cold: 1080, Delete: 1620" - }, - { - "Month": "2018-06", - "Result": "Warm: 541, Cold: 1082, Delete: 1623" - }, - { - "Month": "2018-07", - "Result": "Warm: 541, Cold: 1082, Delete: 1623" - }, - { - "Month": "2018-08", - "Result": "Warm: 542, Cold: 1084, Delete: 1626" - }, - { - "Month": "2018-09", - "Result": "Warm: 543, Cold: 1086, Delete: 1629" - }, - { - "Month": "2018-10", - "Result": "Warm: 543, Cold: 1086, Delete: 1629" - }, - { - "Month": "2018-11", - "Result": "Warm: 544, Cold: 1088, Delete: 1632" - }, - { - "Month": "2018-12", - "Result": "Warm: 545, Cold: 1090, Delete: 1635" - }, - { - "Month": "2019-01", - "Result": "Warm: 546, Cold: 1092, Delete: 1638" - }, - { - "Month": "2019-02", - "Result": "Warm: 546, Cold: 1092, Delete: 1638" - }, - { - "Month": "2019-03", - "Result": "Warm: 547, Cold: 1094, Delete: 1641" - }, - { - "Month": "2019-04", - "Result": "Warm: 548, Cold: 1096, Delete: 1644" - }, - { - "Month": "2019-05", - "Result": "Warm: 549, Cold: 1098, Delete: 1647" - }, - { - "Month": "2019-06", - "Result": "Warm: 550, Cold: 1100, Delete: 1650" - }, - { - "Month": "2019-07", - "Result": "Warm: 551, Cold: 1102, Delete: 1653" - }, - { - "Month": "2019-08", - "Result": "Warm: 551, Cold: 1102, Delete: 1653" - }, - { - "Month": "2019-09", - "Result": "Warm: 552, Cold: 1104, Delete: 1656" - }, - { - "Month": "2019-10", - "Result": "Warm: 553, Cold: 1106, Delete: 1659" - }, - { - "Month": "2019-11", - "Result": "Warm: 554, Cold: 1108, Delete: 1662" - }, - { - "Month": "2019-12", - "Result": "Warm: 555, Cold: 1110, Delete: 1665" - }, - { - "Month": "2020-01", - "Result": "Warm: 556, Cold: 1112, Delete: 1668" - }, - { - "Month": "2020-02", - "Result": "Warm: 557, Cold: 1114, Delete: 1671" - }, - { - "Month": "2020-03", - "Result": "Warm: 558, Cold: 1116, Delete: 1674" - }, - { - "Month": "2020-04", - "Result": "Warm: 559, Cold: 1118, Delete: 1677" - }, - { - "Month": "2020-05", - "Result": "Warm: 561, Cold: 1122, Delete: 1683" - }, - { - "Month": "2020-06", - "Result": "Warm: 562, Cold: 1124, Delete: 1686" - }, - { - "Month": "2020-07", - "Result": "Warm: 563, Cold: 1126, Delete: 1689" - }, - { - "Month": "2020-08", - "Result": "Warm: 564, Cold: 1128, Delete: 1692" - }, - { - "Month": "2020-09", - "Result": "Warm: 565, Cold: 1130, Delete: 1695" - }, - { - "Month": "2020-10", - "Result": "Warm: 567, Cold: 1134, Delete: 1701" - }, - { - "Month": "2020-11", - "Result": "Warm: 568, Cold: 1136, Delete: 1704" - }, - { - "Month": "2020-12", - "Result": "Warm: 569, Cold: 1138, Delete: 1707" - }, - { - "Month": "2021-01", - "Result": "Warm: 571, Cold: 1142, Delete: 1713" - }, - { - "Month": "2021-02", - "Result": "Warm: 572, Cold: 1144, Delete: 1716" - }, - { - "Month": "2021-03", - "Result": "Warm: 574, Cold: 1148, Delete: 1722" - }, - { - "Month": "2021-04", - "Result": "Warm: 575, Cold: 1150, Delete: 1725" - }, - { - "Month": "2021-05", - "Result": "Warm: 577, Cold: 1154, Delete: 1731" - }, - { - "Month": "2021-06", - "Result": "Warm: 579, Cold: 1158, Delete: 1737" - }, - { - "Month": "2021-07", - "Result": "Warm: 580, Cold: 1160, Delete: 1740" - }, - { - "Month": "2021-08", - "Result": "Warm: 582, Cold: 1164, Delete: 1746" - }, - { - "Month": "2021-09", - "Result": "Warm: 584, Cold: 1168, Delete: 1752" - }, - { - "Month": "2021-10", - "Result": "Warm: 586, Cold: 1172, Delete: 1758" - }, - { - "Month": "2021-11", - "Result": "Warm: 588, Cold: 1176, Delete: 1764" - }, - { - "Month": "2021-12", - "Result": "Warm: 590, Cold: 1180, Delete: 1770" - }, - { - "Month": "2022-01", - "Result": "Warm: 592, Cold: 1184, Delete: 1776" - }, - { - "Month": "2022-02", - "Result": "Warm: 595, Cold: 1190, Delete: 1785" - }, - { - "Month": "2022-03", - "Result": "Warm: 597, Cold: 1194, Delete: 1791" - }, - { - "Month": "2022-04", - "Result": "Warm: 599, Cold: 1198, Delete: 1797" - }, - { - "Month": "2022-05", - "Result": "Warm: 602, Cold: 1204, Delete: 1806" - }, - { - "Month": "2022-06", - "Result": "Warm: 605, Cold: 1210, Delete: 1815" - }, - { - "Month": "2022-07", - "Result": "Warm: 607, Cold: 1214, Delete: 1821" - }, - { - "Month": "2022-08", - "Result": "Warm: 610, Cold: 1220, Delete: 1830" - }, - { - "Month": "2022-09", - "Result": "Warm: 613, Cold: 1226, Delete: 1839" - }, - { - "Month": "2022-10", - "Result": "Warm: 617, Cold: 1234, Delete: 1851" - }, - { - "Month": "2022-11", - "Result": "Warm: 620, Cold: 1240, Delete: 1860" - }, - { - "Month": "2022-12", - "Result": "Warm: 623, Cold: 1246, Delete: 1869" - }, - { - "Month": "2023-01", - "Result": "Warm: 627, Cold: 1254, Delete: 1881" - }, - { - "Month": "2023-02", - "Result": "Warm: 631, Cold: 1262, Delete: 1893" - }, - { - "Month": "2023-03", - "Result": "Warm: 635, Cold: 1270, Delete: 1905" - }, - { - "Month": "2023-04", - "Result": "Warm: 639, Cold: 1278, Delete: 1917" - }, - { - "Month": "2023-05", - "Result": "Warm: 644, Cold: 1288, Delete: 1932" - }, - { - "Month": "2023-06", - "Result": "Warm: 649, Cold: 1298, Delete: 1947" - }, - { - "Month": "2023-07", - "Result": "Warm: 654, Cold: 1308, Delete: 1962" - }, - { - "Month": "2023-08", - "Result": "Warm: 659, Cold: 1318, Delete: 1977" - }, - { - "Month": "2023-09", - "Result": "Warm: 665, Cold: 1330, Delete: 1995" - }, - { - "Month": "2023-10", - "Result": "Warm: 671, Cold: 1342, Delete: 2013" - }, - { - "Month": "2023-11", - "Result": "Warm: 678, Cold: 1356, Delete: 2034" - }, - { - "Month": "2023-12", - "Result": "Warm: 685, Cold: 1370, Delete: 2055" - }, - { - "Month": "2024-01", - "Result": "Warm: 693, Cold: 1386, Delete: 2079" - }, - { - "Month": "2024-02", - "Result": "Warm: 701, Cold: 1402, Delete: 2103" - }, - { - "Month": "2024-03", - "Result": "Warm: 710, Cold: 1420, Delete: 2130" - }, - { - "Month": "2024-04", - "Result": "Warm: 720, Cold: 1440, Delete: 2160" - }, - { - "Month": "2024-05", - "Result": "Warm: 730, Cold: 1460, Delete: 2190" - }, - { - "Month": "2024-06", - "Result": "Warm: 741, Cold: 1482, Delete: 2223" - }, - { - "Month": "2024-07", - "Result": "Warm: 754, Cold: 1508, Delete: 2262" - }, - { - "Month": "2024-08", - "Result": "Warm: 768, Cold: 1536, Delete: 2304" - }, - { - "Month": "2024-09", - "Result": "Warm: 783, Cold: 1566, Delete: 2349" - }, - { - "Month": "2024-10", - "Result": "Warm: 800, Cold: 1600, Delete: 2400" - }, - { - "Month": "2024-11", - "Result": "Warm: 819, Cold: 1638, Delete: 2457" - }, - { - "Month": "2024-12", - "Result": "Warm: 840, Cold: 1680, Delete: 2520" - }, - { - "Month": "2025-01", - "Result": "Warm: 865, Cold: 1730, Delete: 2595" - }, - { - "Month": "2025-02", - "Result": "Warm: 893, Cold: 1786, Delete: 2679" - }, - { - "Month": "2025-03", - "Result": "Warm: 922, Cold: 1844, Delete: 2766" - } - ], - "1H": [ - { - "Month": "2018-01", - "Result": "Warm: 168, Cold: 336, Delete: 504" - }, - { - "Month": "2018-02", - "Result": "Warm: 168, Cold: 336, Delete: 504" - }, - { - "Month": "2018-03", - "Result": "Warm: 168, Cold: 336, Delete: 504" - }, - { - "Month": "2018-04", - "Result": "Warm: 168, Cold: 336, Delete: 504" - }, - { - "Month": "2018-05", - "Result": "Warm: 168, Cold: 336, Delete: 504" - }, - { - "Month": "2018-06", - "Result": "Warm: 169, Cold: 338, Delete: 507" - }, - { - "Month": "2018-07", - "Result": "Warm: 169, Cold: 338, Delete: 507" - }, - { - "Month": "2018-08", - "Result": "Warm: 169, Cold: 338, Delete: 507" - }, - { - "Month": "2018-09", - "Result": "Warm: 169, Cold: 338, Delete: 507" - }, - { - "Month": "2018-10", - "Result": "Warm: 169, Cold: 338, Delete: 507" - }, - { - "Month": "2018-11", - "Result": "Warm: 170, Cold: 340, Delete: 510" - }, - { - "Month": "2018-12", - "Result": "Warm: 170, Cold: 340, Delete: 510" - }, - { - "Month": "2019-01", - "Result": "Warm: 170, Cold: 340, Delete: 510" - }, - { - "Month": "2019-02", - "Result": "Warm: 170, Cold: 340, Delete: 510" - }, - { - "Month": "2019-03", - "Result": "Warm: 171, Cold: 342, Delete: 513" - }, - { - "Month": "2019-04", - "Result": "Warm: 171, Cold: 342, Delete: 513" - }, - { - "Month": "2019-05", - "Result": "Warm: 171, Cold: 342, Delete: 513" - }, - { - "Month": "2019-06", - "Result": "Warm: 171, Cold: 342, Delete: 513" - }, - { - "Month": "2019-07", - "Result": "Warm: 172, Cold: 344, Delete: 516" - }, - { - "Month": "2019-08", - "Result": "Warm: 172, Cold: 344, Delete: 516" - }, - { - "Month": "2019-09", - "Result": "Warm: 172, Cold: 344, Delete: 516" - }, - { - "Month": "2019-10", - "Result": "Warm: 173, Cold: 346, Delete: 519" - }, - { - "Month": "2019-11", - "Result": "Warm: 173, Cold: 346, Delete: 519" - }, - { - "Month": "2019-12", - "Result": "Warm: 173, Cold: 346, Delete: 519" - }, - { - "Month": "2020-01", - "Result": "Warm: 173, Cold: 346, Delete: 519" - }, - { - "Month": "2020-02", - "Result": "Warm: 174, Cold: 348, Delete: 522" - }, - { - "Month": "2020-03", - "Result": "Warm: 174, Cold: 348, Delete: 522" - }, - { - "Month": "2020-04", - "Result": "Warm: 174, Cold: 348, Delete: 522" - }, - { - "Month": "2020-05", - "Result": "Warm: 175, Cold: 350, Delete: 525" - }, - { - "Month": "2020-06", - "Result": "Warm: 175, Cold: 350, Delete: 525" - }, - { - "Month": "2020-07", - "Result": "Warm: 176, Cold: 352, Delete: 528" - }, - { - "Month": "2020-08", - "Result": "Warm: 176, Cold: 352, Delete: 528" - }, - { - "Month": "2020-09", - "Result": "Warm: 176, Cold: 352, Delete: 528" - }, - { - "Month": "2020-10", - "Result": "Warm: 177, Cold: 354, Delete: 531" - }, - { - "Month": "2020-11", - "Result": "Warm: 177, Cold: 354, Delete: 531" - }, - { - "Month": "2020-12", - "Result": "Warm: 178, Cold: 356, Delete: 534" - }, - { - "Month": "2021-01", - "Result": "Warm: 178, Cold: 356, Delete: 534" - }, - { - "Month": "2021-02", - "Result": "Warm: 179, Cold: 358, Delete: 537" - }, - { - "Month": "2021-03", - "Result": "Warm: 179, Cold: 358, Delete: 537" - }, - { - "Month": "2021-04", - "Result": "Warm: 179, Cold: 358, Delete: 537" - }, - { - "Month": "2021-05", - "Result": "Warm: 180, Cold: 360, Delete: 540" - }, - { - "Month": "2021-06", - "Result": "Warm: 181, Cold: 362, Delete: 543" - }, - { - "Month": "2021-07", - "Result": "Warm: 181, Cold: 362, Delete: 543" - }, - { - "Month": "2021-08", - "Result": "Warm: 182, Cold: 364, Delete: 546" - }, - { - "Month": "2021-09", - "Result": "Warm: 182, Cold: 364, Delete: 546" - }, - { - "Month": "2021-10", - "Result": "Warm: 183, Cold: 366, Delete: 549" - }, - { - "Month": "2021-11", - "Result": "Warm: 183, Cold: 366, Delete: 549" - }, - { - "Month": "2021-12", - "Result": "Warm: 184, Cold: 368, Delete: 552" - }, - { - "Month": "2022-01", - "Result": "Warm: 185, Cold: 370, Delete: 555" - }, - { - "Month": "2022-02", - "Result": "Warm: 186, Cold: 372, Delete: 558" - }, - { - "Month": "2022-03", - "Result": "Warm: 186, Cold: 372, Delete: 558" - }, - { - "Month": "2022-04", - "Result": "Warm: 187, Cold: 374, Delete: 561" - }, - { - "Month": "2022-05", - "Result": "Warm: 188, Cold: 376, Delete: 564" - }, - { - "Month": "2022-06", - "Result": "Warm: 189, Cold: 378, Delete: 567" - }, - { - "Month": "2022-07", - "Result": "Warm: 189, Cold: 378, Delete: 567" - }, - { - "Month": "2022-08", - "Result": "Warm: 190, Cold: 380, Delete: 570" - }, - { - "Month": "2022-09", - "Result": "Warm: 191, Cold: 382, Delete: 573" - }, - { - "Month": "2022-10", - "Result": "Warm: 192, Cold: 384, Delete: 576" - }, - { - "Month": "2022-11", - "Result": "Warm: 193, Cold: 386, Delete: 579" - }, - { - "Month": "2022-12", - "Result": "Warm: 194, Cold: 388, Delete: 582" - }, - { - "Month": "2023-01", - "Result": "Warm: 196, Cold: 392, Delete: 588" - }, - { - "Month": "2023-02", - "Result": "Warm: 197, Cold: 394, Delete: 591" - }, - { - "Month": "2023-03", - "Result": "Warm: 198, Cold: 396, Delete: 594" - }, - { - "Month": "2023-04", - "Result": "Warm: 199, Cold: 398, Delete: 597" - }, - { - "Month": "2023-05", - "Result": "Warm: 201, Cold: 402, Delete: 603" - }, - { - "Month": "2023-06", - "Result": "Warm: 202, Cold: 404, Delete: 606" - }, - { - "Month": "2023-07", - "Result": "Warm: 204, Cold: 408, Delete: 612" - }, - { - "Month": "2023-08", - "Result": "Warm: 206, Cold: 412, Delete: 618" - }, - { - "Month": "2023-09", - "Result": "Warm: 208, Cold: 416, Delete: 624" - }, - { - "Month": "2023-10", - "Result": "Warm: 209, Cold: 418, Delete: 627" - }, - { - "Month": "2023-11", - "Result": "Warm: 212, Cold: 424, Delete: 636" - }, - { - "Month": "2023-12", - "Result": "Warm: 214, Cold: 428, Delete: 642" - }, - { - "Month": "2024-01", - "Result": "Warm: 216, Cold: 432, Delete: 648" - }, - { - "Month": "2024-02", - "Result": "Warm: 219, Cold: 438, Delete: 657" - }, - { - "Month": "2024-03", - "Result": "Warm: 221, Cold: 442, Delete: 663" - }, - { - "Month": "2024-04", - "Result": "Warm: 225, Cold: 450, Delete: 675" - }, - { - "Month": "2024-05", - "Result": "Warm: 228, Cold: 456, Delete: 684" - }, - { - "Month": "2024-06", - "Result": "Warm: 231, Cold: 462, Delete: 693" - }, - { - "Month": "2024-07", - "Result": "Warm: 235, Cold: 470, Delete: 705" - }, - { - "Month": "2024-08", - "Result": "Warm: 240, Cold: 480, Delete: 720" - }, - { - "Month": "2024-09", - "Result": "Warm: 244, Cold: 488, Delete: 732" - }, - { - "Month": "2024-10", - "Result": "Warm: 250, Cold: 500, Delete: 750" - }, - { - "Month": "2024-11", - "Result": "Warm: 256, Cold: 512, Delete: 768" - }, - { - "Month": "2024-12", - "Result": "Warm: 262, Cold: 524, Delete: 786" - }, - { - "Month": "2025-01", - "Result": "Warm: 270, Cold: 540, Delete: 810" - }, - { - "Month": "2025-02", - "Result": "Warm: 279, Cold: 558, Delete: 837" - }, - { - "Month": "2025-03", - "Result": "Warm: 288, Cold: 576, Delete: 864" - } - ], - "1W": [ - { - "Month": "2018-01", - "Result": "Warm: 941, Cold: 1882, Delete: 2823" - }, - { - "Month": "2018-02", - "Result": "Warm: 942, Cold: 1884, Delete: 2826" - }, - { - "Month": "2018-03", - "Result": "Warm: 943, Cold: 1886, Delete: 2829" - }, - { - "Month": "2018-04", - "Result": "Warm: 944, Cold: 1888, Delete: 2832" - }, - { - "Month": "2018-05", - "Result": "Warm: 946, Cold: 1892, Delete: 2838" - }, - { - "Month": "2018-06", - "Result": "Warm: 947, Cold: 1894, Delete: 2841" - }, - { - "Month": "2018-07", - "Result": "Warm: 948, Cold: 1896, Delete: 2844" - }, - { - "Month": "2018-08", - "Result": "Warm: 949, Cold: 1898, Delete: 2847" - }, - { - "Month": "2018-09", - "Result": "Warm: 950, Cold: 1900, Delete: 2850" - }, - { - "Month": "2018-10", - "Result": "Warm: 951, Cold: 1902, Delete: 2853" - }, - { - "Month": "2018-11", - "Result": "Warm: 953, Cold: 1906, Delete: 2859" - }, - { - "Month": "2018-12", - "Result": "Warm: 954, Cold: 1908, Delete: 2862" - }, - { - "Month": "2019-01", - "Result": "Warm: 955, Cold: 1910, Delete: 2865" - }, - { - "Month": "2019-02", - "Result": "Warm: 957, Cold: 1914, Delete: 2871" - }, - { - "Month": "2019-03", - "Result": "Warm: 958, Cold: 1916, Delete: 2874" - }, - { - "Month": "2019-04", - "Result": "Warm: 959, Cold: 1918, Delete: 2877" - }, - { - "Month": "2019-05", - "Result": "Warm: 961, Cold: 1922, Delete: 2883" - }, - { - "Month": "2019-06", - "Result": "Warm: 962, Cold: 1924, Delete: 2886" - }, - { - "Month": "2019-07", - "Result": "Warm: 964, Cold: 1928, Delete: 2892" - }, - { - "Month": "2019-08", - "Result": "Warm: 965, Cold: 1930, Delete: 2895" - }, - { - "Month": "2019-09", - "Result": "Warm: 967, Cold: 1934, Delete: 2901" - }, - { - "Month": "2019-10", - "Result": "Warm: 969, Cold: 1938, Delete: 2907" - }, - { - "Month": "2019-11", - "Result": "Warm: 970, Cold: 1940, Delete: 2910" - }, - { - "Month": "2019-12", - "Result": "Warm: 972, Cold: 1944, Delete: 2916" - }, - { - "Month": "2020-01", - "Result": "Warm: 974, Cold: 1948, Delete: 2922" - }, - { - "Month": "2020-02", - "Result": "Warm: 976, Cold: 1952, Delete: 2928" - }, - { - "Month": "2020-03", - "Result": "Warm: 977, Cold: 1954, Delete: 2931" - }, - { - "Month": "2020-04", - "Result": "Warm: 979, Cold: 1958, Delete: 2937" - }, - { - "Month": "2020-05", - "Result": "Warm: 981, Cold: 1962, Delete: 2943" - }, - { - "Month": "2020-06", - "Result": "Warm: 983, Cold: 1966, Delete: 2949" - }, - { - "Month": "2020-07", - "Result": "Warm: 986, Cold: 1972, Delete: 2958" - }, - { - "Month": "2020-08", - "Result": "Warm: 988, Cold: 1976, Delete: 2964" - }, - { - "Month": "2020-09", - "Result": "Warm: 990, Cold: 1980, Delete: 2970" - }, - { - "Month": "2020-10", - "Result": "Warm: 992, Cold: 1984, Delete: 2976" - }, - { - "Month": "2020-11", - "Result": "Warm: 995, Cold: 1990, Delete: 2985" - }, - { - "Month": "2020-12", - "Result": "Warm: 997, Cold: 1994, Delete: 2991" - }, - { - "Month": "2021-01", - "Result": "Warm: 1000, Cold: 2000, Delete: 3000" - }, - { - "Month": "2021-02", - "Result": "Warm: 1002, Cold: 2004, Delete: 3006" - }, - { - "Month": "2021-03", - "Result": "Warm: 1005, Cold: 2010, Delete: 3015" - }, - { - "Month": "2021-04", - "Result": "Warm: 1007, Cold: 2014, Delete: 3021" - }, - { - "Month": "2021-05", - "Result": "Warm: 1010, Cold: 2020, Delete: 3030" - }, - { - "Month": "2021-06", - "Result": "Warm: 1013, Cold: 2026, Delete: 3039" - }, - { - "Month": "2021-07", - "Result": "Warm: 1016, Cold: 2032, Delete: 3048" - }, - { - "Month": "2021-08", - "Result": "Warm: 1019, Cold: 2038, Delete: 3057" - }, - { - "Month": "2021-09", - "Result": "Warm: 1023, Cold: 2046, Delete: 3069" - }, - { - "Month": "2021-10", - "Result": "Warm: 1026, Cold: 2052, Delete: 3078" - }, - { - "Month": "2021-11", - "Result": "Warm: 1030, Cold: 2060, Delete: 3090" - }, - { - "Month": "2021-12", - "Result": "Warm: 1033, Cold: 2066, Delete: 3099" - }, - { - "Month": "2022-01", - "Result": "Warm: 1037, Cold: 2074, Delete: 3111" - }, - { - "Month": "2022-02", - "Result": "Warm: 1041, Cold: 2082, Delete: 3123" - }, - { - "Month": "2022-03", - "Result": "Warm: 1045, Cold: 2090, Delete: 3135" - }, - { - "Month": "2022-04", - "Result": "Warm: 1049, Cold: 2098, Delete: 3147" - }, - { - "Month": "2022-05", - "Result": "Warm: 1054, Cold: 2108, Delete: 3162" - }, - { - "Month": "2022-06", - "Result": "Warm: 1059, Cold: 2118, Delete: 3177" - }, - { - "Month": "2022-07", - "Result": "Warm: 1063, Cold: 2126, Delete: 3189" - }, - { - "Month": "2022-08", - "Result": "Warm: 1068, Cold: 2136, Delete: 3204" - }, - { - "Month": "2022-09", - "Result": "Warm: 1074, Cold: 2148, Delete: 3222" - }, - { - "Month": "2022-10", - "Result": "Warm: 1079, Cold: 2158, Delete: 3237" - }, - { - "Month": "2022-11", - "Result": "Warm: 1085, Cold: 2170, Delete: 3255" - }, - { - "Month": "2022-12", - "Result": "Warm: 1091, Cold: 2182, Delete: 3273" - }, - { - "Month": "2023-01", - "Result": "Warm: 1098, Cold: 2196, Delete: 3294" - }, - { - "Month": "2023-02", - "Result": "Warm: 1105, Cold: 2210, Delete: 3315" - }, - { - "Month": "2023-03", - "Result": "Warm: 1112, Cold: 2224, Delete: 3336" - }, - { - "Month": "2023-04", - "Result": "Warm: 1119, Cold: 2238, Delete: 3357" - }, - { - "Month": "2023-05", - "Result": "Warm: 1127, Cold: 2254, Delete: 3381" - }, - { - "Month": "2023-06", - "Result": "Warm: 1136, Cold: 2272, Delete: 3408" - }, - { - "Month": "2023-07", - "Result": "Warm: 1145, Cold: 2290, Delete: 3435" - }, - { - "Month": "2023-08", - "Result": "Warm: 1154, Cold: 2308, Delete: 3462" - }, - { - "Month": "2023-09", - "Result": "Warm: 1165, Cold: 2330, Delete: 3495" - }, - { - "Month": "2023-10", - "Result": "Warm: 1175, Cold: 2350, Delete: 3525" - }, - { - "Month": "2023-11", - "Result": "Warm: 1187, Cold: 2374, Delete: 3561" - }, - { - "Month": "2023-12", - "Result": "Warm: 1199, Cold: 2398, Delete: 3597" - }, - { - "Month": "2024-01", - "Result": "Warm: 1213, Cold: 2426, Delete: 3639" - }, - { - "Month": "2024-02", - "Result": "Warm: 1228, Cold: 2456, Delete: 3684" - }, - { - "Month": "2024-03", - "Result": "Warm: 1242, Cold: 2484, Delete: 3726" - }, - { - "Month": "2024-04", - "Result": "Warm: 1260, Cold: 2520, Delete: 3780" - }, - { - "Month": "2024-05", - "Result": "Warm: 1278, Cold: 2556, Delete: 3834" - }, - { - "Month": "2024-06", - "Result": "Warm: 1298, Cold: 2596, Delete: 3894" - }, - { - "Month": "2024-07", - "Result": "Warm: 1319, Cold: 2638, Delete: 3957" - }, - { - "Month": "2024-08", - "Result": "Warm: 1344, Cold: 2688, Delete: 4032" - }, - { - "Month": "2024-09", - "Result": "Warm: 1371, Cold: 2742, Delete: 4113" - }, - { - "Month": "2024-10", - "Result": "Warm: 1400, Cold: 2800, Delete: 4200" - }, - { - "Month": "2024-11", - "Result": "Warm: 1434, Cold: 2868, Delete: 4302" - }, - { - "Month": "2024-12", - "Result": "Warm: 1470, Cold: 2940, Delete: 4410" - }, - { - "Month": "2025-01", - "Result": "Warm: 1513, Cold: 3026, Delete: 4539" - }, - { - "Month": "2025-02", - "Result": "Warm: 1563, Cold: 3126, Delete: 4689" - }, - { - "Month": "2025-03", - "Result": "Warm: 1614, Cold: 3228, Delete: 4842" - } - ], - "1m": [ - { - "Month": "2018-01", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-02", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-03", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-04", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-05", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-06", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-07", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-08", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-09", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-10", - "Result": "Warm: 33, Cold: 66, Delete: 99" - }, - { - "Month": "2018-11", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2018-12", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-01", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-02", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-03", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-04", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-05", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-06", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-07", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-08", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-09", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-10", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-11", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2019-12", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2020-01", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2020-02", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2020-03", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2020-04", - "Result": "Warm: 34, Cold: 68, Delete: 102" - }, - { - "Month": "2020-05", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-06", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-07", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-08", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-09", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-10", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-11", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2020-12", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2021-01", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2021-02", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2021-03", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2021-04", - "Result": "Warm: 35, Cold: 70, Delete: 105" - }, - { - "Month": "2021-05", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-06", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-07", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-08", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-09", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-10", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-11", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2021-12", - "Result": "Warm: 36, Cold: 72, Delete: 108" - }, - { - "Month": "2022-01", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-02", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-03", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-04", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-05", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-06", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-07", - "Result": "Warm: 37, Cold: 74, Delete: 111" - }, - { - "Month": "2022-08", - "Result": "Warm: 38, Cold: 76, Delete: 114" - }, - { - "Month": "2022-09", - "Result": "Warm: 38, Cold: 76, Delete: 114" - }, - { - "Month": "2022-10", - "Result": "Warm: 38, Cold: 76, Delete: 114" - }, - { - "Month": "2022-11", - "Result": "Warm: 38, Cold: 76, Delete: 114" - }, - { - "Month": "2022-12", - "Result": "Warm: 38, Cold: 76, Delete: 114" - }, - { - "Month": "2023-01", - "Result": "Warm: 39, Cold: 78, Delete: 117" - }, - { - "Month": "2023-02", - "Result": "Warm: 39, Cold: 78, Delete: 117" - }, - { - "Month": "2023-03", - "Result": "Warm: 39, Cold: 78, Delete: 117" - }, - { - "Month": "2023-04", - "Result": "Warm: 39, Cold: 78, Delete: 117" - }, - { - "Month": "2023-05", - "Result": "Warm: 40, Cold: 80, Delete: 120" - }, - { - "Month": "2023-06", - "Result": "Warm: 40, Cold: 80, Delete: 120" - }, - { - "Month": "2023-07", - "Result": "Warm: 40, Cold: 80, Delete: 120" - }, - { - "Month": "2023-08", - "Result": "Warm: 41, Cold: 82, Delete: 123" - }, - { - "Month": "2023-09", - "Result": "Warm: 41, Cold: 82, Delete: 123" - }, - { - "Month": "2023-10", - "Result": "Warm: 41, Cold: 82, Delete: 123" - }, - { - "Month": "2023-11", - "Result": "Warm: 42, Cold: 84, Delete: 126" - }, - { - "Month": "2023-12", - "Result": "Warm: 42, Cold: 84, Delete: 126" - }, - { - "Month": "2024-01", - "Result": "Warm: 43, Cold: 86, Delete: 129" - }, - { - "Month": "2024-02", - "Result": "Warm: 43, Cold: 86, Delete: 129" - }, - { - "Month": "2024-03", - "Result": "Warm: 44, Cold: 88, Delete: 132" - }, - { - "Month": "2024-04", - "Result": "Warm: 45, Cold: 90, Delete: 135" - }, - { - "Month": "2024-05", - "Result": "Warm: 45, Cold: 90, Delete: 135" - }, - { - "Month": "2024-06", - "Result": "Warm: 46, Cold: 92, Delete: 138" - }, - { - "Month": "2024-07", - "Result": "Warm: 47, Cold: 94, Delete: 141" - }, - { - "Month": "2024-08", - "Result": "Warm: 48, Cold: 96, Delete: 144" - }, - { - "Month": "2024-09", - "Result": "Warm: 48, Cold: 96, Delete: 144" - }, - { - "Month": "2024-10", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2024-11", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2024-12", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2025-01", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2025-02", - "Result": "Warm: 55, Cold: 110, Delete: 165" - }, - { - "Month": "2025-03", - "Result": "Warm: 57, Cold: 114, Delete: 171" - } - ], - "2D": [ - { - "Month": "2018-01", - "Result": "Warm: 672, Cold: 1344, Delete: 2016" - }, - { - "Month": "2018-02", - "Result": "Warm: 673, Cold: 1346, Delete: 2019" - }, - { - "Month": "2018-03", - "Result": "Warm: 674, Cold: 1348, Delete: 2022" - }, - { - "Month": "2018-04", - "Result": "Warm: 674, Cold: 1348, Delete: 2022" - }, - { - "Month": "2018-05", - "Result": "Warm: 675, Cold: 1350, Delete: 2025" - }, - { - "Month": "2018-06", - "Result": "Warm: 676, Cold: 1352, Delete: 2028" - }, - { - "Month": "2018-07", - "Result": "Warm: 677, Cold: 1354, Delete: 2031" - }, - { - "Month": "2018-08", - "Result": "Warm: 678, Cold: 1356, Delete: 2034" - }, - { - "Month": "2018-09", - "Result": "Warm: 679, Cold: 1358, Delete: 2037" - }, - { - "Month": "2018-10", - "Result": "Warm: 679, Cold: 1358, Delete: 2037" - }, - { - "Month": "2018-11", - "Result": "Warm: 680, Cold: 1360, Delete: 2040" - }, - { - "Month": "2018-12", - "Result": "Warm: 681, Cold: 1362, Delete: 2043" - }, - { - "Month": "2019-01", - "Result": "Warm: 682, Cold: 1364, Delete: 2046" - }, - { - "Month": "2019-02", - "Result": "Warm: 683, Cold: 1366, Delete: 2049" - }, - { - "Month": "2019-03", - "Result": "Warm: 684, Cold: 1368, Delete: 2052" - }, - { - "Month": "2019-04", - "Result": "Warm: 685, Cold: 1370, Delete: 2055" - }, - { - "Month": "2019-05", - "Result": "Warm: 686, Cold: 1372, Delete: 2058" - }, - { - "Month": "2019-06", - "Result": "Warm: 687, Cold: 1374, Delete: 2061" - }, - { - "Month": "2019-07", - "Result": "Warm: 688, Cold: 1376, Delete: 2064" - }, - { - "Month": "2019-08", - "Result": "Warm: 689, Cold: 1378, Delete: 2067" - }, - { - "Month": "2019-09", - "Result": "Warm: 691, Cold: 1382, Delete: 2073" - }, - { - "Month": "2019-10", - "Result": "Warm: 692, Cold: 1384, Delete: 2076" - }, - { - "Month": "2019-11", - "Result": "Warm: 693, Cold: 1386, Delete: 2079" - }, - { - "Month": "2019-12", - "Result": "Warm: 694, Cold: 1388, Delete: 2082" - }, - { - "Month": "2020-01", - "Result": "Warm: 695, Cold: 1390, Delete: 2085" - }, - { - "Month": "2020-02", - "Result": "Warm: 697, Cold: 1394, Delete: 2091" - }, - { - "Month": "2020-03", - "Result": "Warm: 698, Cold: 1396, Delete: 2094" - }, - { - "Month": "2020-04", - "Result": "Warm: 699, Cold: 1398, Delete: 2097" - }, - { - "Month": "2020-05", - "Result": "Warm: 701, Cold: 1402, Delete: 2103" - }, - { - "Month": "2020-06", - "Result": "Warm: 702, Cold: 1404, Delete: 2106" - }, - { - "Month": "2020-07", - "Result": "Warm: 704, Cold: 1408, Delete: 2112" - }, - { - "Month": "2020-08", - "Result": "Warm: 705, Cold: 1410, Delete: 2115" - }, - { - "Month": "2020-09", - "Result": "Warm: 707, Cold: 1414, Delete: 2121" - }, - { - "Month": "2020-10", - "Result": "Warm: 709, Cold: 1418, Delete: 2127" - }, - { - "Month": "2020-11", - "Result": "Warm: 710, Cold: 1420, Delete: 2130" - }, - { - "Month": "2020-12", - "Result": "Warm: 712, Cold: 1424, Delete: 2136" - }, - { - "Month": "2021-01", - "Result": "Warm: 714, Cold: 1428, Delete: 2142" - }, - { - "Month": "2021-02", - "Result": "Warm: 716, Cold: 1432, Delete: 2148" - }, - { - "Month": "2021-03", - "Result": "Warm: 717, Cold: 1434, Delete: 2151" - }, - { - "Month": "2021-04", - "Result": "Warm: 719, Cold: 1438, Delete: 2157" - }, - { - "Month": "2021-05", - "Result": "Warm: 721, Cold: 1442, Delete: 2163" - }, - { - "Month": "2021-06", - "Result": "Warm: 724, Cold: 1448, Delete: 2172" - }, - { - "Month": "2021-07", - "Result": "Warm: 726, Cold: 1452, Delete: 2178" - }, - { - "Month": "2021-08", - "Result": "Warm: 728, Cold: 1456, Delete: 2184" - }, - { - "Month": "2021-09", - "Result": "Warm: 730, Cold: 1460, Delete: 2190" - }, - { - "Month": "2021-10", - "Result": "Warm: 733, Cold: 1466, Delete: 2199" - }, - { - "Month": "2021-11", - "Result": "Warm: 735, Cold: 1470, Delete: 2205" - }, - { - "Month": "2021-12", - "Result": "Warm: 738, Cold: 1476, Delete: 2214" - }, - { - "Month": "2022-01", - "Result": "Warm: 741, Cold: 1482, Delete: 2223" - }, - { - "Month": "2022-02", - "Result": "Warm: 744, Cold: 1488, Delete: 2232" - }, - { - "Month": "2022-03", - "Result": "Warm: 746, Cold: 1492, Delete: 2238" - }, - { - "Month": "2022-04", - "Result": "Warm: 749, Cold: 1498, Delete: 2247" - }, - { - "Month": "2022-05", - "Result": "Warm: 753, Cold: 1506, Delete: 2259" - }, - { - "Month": "2022-06", - "Result": "Warm: 756, Cold: 1512, Delete: 2268" - }, - { - "Month": "2022-07", - "Result": "Warm: 759, Cold: 1518, Delete: 2277" - }, - { - "Month": "2022-08", - "Result": "Warm: 763, Cold: 1526, Delete: 2289" - }, - { - "Month": "2022-09", - "Result": "Warm: 767, Cold: 1534, Delete: 2301" - }, - { - "Month": "2022-10", - "Result": "Warm: 771, Cold: 1542, Delete: 2313" - }, - { - "Month": "2022-11", - "Result": "Warm: 775, Cold: 1550, Delete: 2325" - }, - { - "Month": "2022-12", - "Result": "Warm: 779, Cold: 1558, Delete: 2337" - }, - { - "Month": "2023-01", - "Result": "Warm: 784, Cold: 1568, Delete: 2352" - }, - { - "Month": "2023-02", - "Result": "Warm: 789, Cold: 1578, Delete: 2367" - }, - { - "Month": "2023-03", - "Result": "Warm: 794, Cold: 1588, Delete: 2382" - }, - { - "Month": "2023-04", - "Result": "Warm: 799, Cold: 1598, Delete: 2397" - }, - { - "Month": "2023-05", - "Result": "Warm: 805, Cold: 1610, Delete: 2415" - }, - { - "Month": "2023-06", - "Result": "Warm: 811, Cold: 1622, Delete: 2433" - }, - { - "Month": "2023-07", - "Result": "Warm: 817, Cold: 1634, Delete: 2451" - }, - { - "Month": "2023-08", - "Result": "Warm: 824, Cold: 1648, Delete: 2472" - }, - { - "Month": "2023-09", - "Result": "Warm: 832, Cold: 1664, Delete: 2496" - }, - { - "Month": "2023-10", - "Result": "Warm: 839, Cold: 1678, Delete: 2517" - }, - { - "Month": "2023-11", - "Result": "Warm: 848, Cold: 1696, Delete: 2544" - }, - { - "Month": "2023-12", - "Result": "Warm: 857, Cold: 1714, Delete: 2571" - }, - { - "Month": "2024-01", - "Result": "Warm: 866, Cold: 1732, Delete: 2598" - }, - { - "Month": "2024-02", - "Result": "Warm: 877, Cold: 1754, Delete: 2631" - }, - { - "Month": "2024-03", - "Result": "Warm: 887, Cold: 1774, Delete: 2661" - }, - { - "Month": "2024-04", - "Result": "Warm: 900, Cold: 1800, Delete: 2700" - }, - { - "Month": "2024-05", - "Result": "Warm: 912, Cold: 1824, Delete: 2736" - }, - { - "Month": "2024-06", - "Result": "Warm: 927, Cold: 1854, Delete: 2781" - }, - { - "Month": "2024-07", - "Result": "Warm: 942, Cold: 1884, Delete: 2826" - }, - { - "Month": "2024-08", - "Result": "Warm: 960, Cold: 1920, Delete: 2880" - }, - { - "Month": "2024-09", - "Result": "Warm: 979, Cold: 1958, Delete: 2937" - }, - { - "Month": "2024-10", - "Result": "Warm: 1000, Cold: 2000, Delete: 3000" - }, - { - "Month": "2024-11", - "Result": "Warm: 1024, Cold: 2048, Delete: 3072" - }, - { - "Month": "2024-12", - "Result": "Warm: 1050, Cold: 2100, Delete: 3150" - }, - { - "Month": "2025-01", - "Result": "Warm: 1081, Cold: 2162, Delete: 3243" - }, - { - "Month": "2025-02", - "Result": "Warm: 1116, Cold: 2232, Delete: 3348" - }, - { - "Month": "2025-03", - "Result": "Warm: 1153, Cold: 2306, Delete: 3459" - } - ], - "2H": [ - { - "Month": "2018-01", - "Result": "Warm: 201, Cold: 402, Delete: 603" - }, - { - "Month": "2018-02", - "Result": "Warm: 202, Cold: 404, Delete: 606" - }, - { - "Month": "2018-03", - "Result": "Warm: 202, Cold: 404, Delete: 606" - }, - { - "Month": "2018-04", - "Result": "Warm: 202, Cold: 404, Delete: 606" - }, - { - "Month": "2018-05", - "Result": "Warm: 202, Cold: 404, Delete: 606" - }, - { - "Month": "2018-06", - "Result": "Warm: 202, Cold: 404, Delete: 606" - }, - { - "Month": "2018-07", - "Result": "Warm: 203, Cold: 406, Delete: 609" - }, - { - "Month": "2018-08", - "Result": "Warm: 203, Cold: 406, Delete: 609" - }, - { - "Month": "2018-09", - "Result": "Warm: 203, Cold: 406, Delete: 609" - }, - { - "Month": "2018-10", - "Result": "Warm: 203, Cold: 406, Delete: 609" - }, - { - "Month": "2018-11", - "Result": "Warm: 204, Cold: 408, Delete: 612" - }, - { - "Month": "2018-12", - "Result": "Warm: 204, Cold: 408, Delete: 612" - }, - { - "Month": "2019-01", - "Result": "Warm: 204, Cold: 408, Delete: 612" - }, - { - "Month": "2019-02", - "Result": "Warm: 205, Cold: 410, Delete: 615" - }, - { - "Month": "2019-03", - "Result": "Warm: 205, Cold: 410, Delete: 615" - }, - { - "Month": "2019-04", - "Result": "Warm: 205, Cold: 410, Delete: 615" - }, - { - "Month": "2019-05", - "Result": "Warm: 205, Cold: 410, Delete: 615" - }, - { - "Month": "2019-06", - "Result": "Warm: 206, Cold: 412, Delete: 618" - }, - { - "Month": "2019-07", - "Result": "Warm: 206, Cold: 412, Delete: 618" - }, - { - "Month": "2019-08", - "Result": "Warm: 206, Cold: 412, Delete: 618" - }, - { - "Month": "2019-09", - "Result": "Warm: 207, Cold: 414, Delete: 621" - }, - { - "Month": "2019-10", - "Result": "Warm: 207, Cold: 414, Delete: 621" - }, - { - "Month": "2019-11", - "Result": "Warm: 208, Cold: 416, Delete: 624" - }, - { - "Month": "2019-12", - "Result": "Warm: 208, Cold: 416, Delete: 624" - }, - { - "Month": "2020-01", - "Result": "Warm: 208, Cold: 416, Delete: 624" - }, - { - "Month": "2020-02", - "Result": "Warm: 209, Cold: 418, Delete: 627" - }, - { - "Month": "2020-03", - "Result": "Warm: 209, Cold: 418, Delete: 627" - }, - { - "Month": "2020-04", - "Result": "Warm: 209, Cold: 418, Delete: 627" - }, - { - "Month": "2020-05", - "Result": "Warm: 210, Cold: 420, Delete: 630" - }, - { - "Month": "2020-06", - "Result": "Warm: 210, Cold: 420, Delete: 630" - }, - { - "Month": "2020-07", - "Result": "Warm: 211, Cold: 422, Delete: 633" - }, - { - "Month": "2020-08", - "Result": "Warm: 211, Cold: 422, Delete: 633" - }, - { - "Month": "2020-09", - "Result": "Warm: 212, Cold: 424, Delete: 636" - }, - { - "Month": "2020-10", - "Result": "Warm: 212, Cold: 424, Delete: 636" - }, - { - "Month": "2020-11", - "Result": "Warm: 213, Cold: 426, Delete: 639" - }, - { - "Month": "2020-12", - "Result": "Warm: 213, Cold: 426, Delete: 639" - }, - { - "Month": "2021-01", - "Result": "Warm: 214, Cold: 428, Delete: 642" - }, - { - "Month": "2021-02", - "Result": "Warm: 214, Cold: 428, Delete: 642" - }, - { - "Month": "2021-03", - "Result": "Warm: 215, Cold: 430, Delete: 645" - }, - { - "Month": "2021-04", - "Result": "Warm: 215, Cold: 430, Delete: 645" - }, - { - "Month": "2021-05", - "Result": "Warm: 216, Cold: 432, Delete: 648" - }, - { - "Month": "2021-06", - "Result": "Warm: 217, Cold: 434, Delete: 651" - }, - { - "Month": "2021-07", - "Result": "Warm: 217, Cold: 434, Delete: 651" - }, - { - "Month": "2021-08", - "Result": "Warm: 218, Cold: 436, Delete: 654" - }, - { - "Month": "2021-09", - "Result": "Warm: 219, Cold: 438, Delete: 657" - }, - { - "Month": "2021-10", - "Result": "Warm: 219, Cold: 438, Delete: 657" - }, - { - "Month": "2021-11", - "Result": "Warm: 220, Cold: 440, Delete: 660" - }, - { - "Month": "2021-12", - "Result": "Warm: 221, Cold: 442, Delete: 663" - }, - { - "Month": "2022-01", - "Result": "Warm: 222, Cold: 444, Delete: 666" - }, - { - "Month": "2022-02", - "Result": "Warm: 223, Cold: 446, Delete: 669" - }, - { - "Month": "2022-03", - "Result": "Warm: 224, Cold: 448, Delete: 672" - }, - { - "Month": "2022-04", - "Result": "Warm: 224, Cold: 448, Delete: 672" - }, - { - "Month": "2022-05", - "Result": "Warm: 225, Cold: 450, Delete: 675" - }, - { - "Month": "2022-06", - "Result": "Warm: 226, Cold: 452, Delete: 678" - }, - { - "Month": "2022-07", - "Result": "Warm: 227, Cold: 454, Delete: 681" - }, - { - "Month": "2022-08", - "Result": "Warm: 229, Cold: 458, Delete: 687" - }, - { - "Month": "2022-09", - "Result": "Warm: 230, Cold: 460, Delete: 690" - }, - { - "Month": "2022-10", - "Result": "Warm: 231, Cold: 462, Delete: 693" - }, - { - "Month": "2022-11", - "Result": "Warm: 232, Cold: 464, Delete: 696" - }, - { - "Month": "2022-12", - "Result": "Warm: 233, Cold: 466, Delete: 699" - }, - { - "Month": "2023-01", - "Result": "Warm: 235, Cold: 470, Delete: 705" - }, - { - "Month": "2023-02", - "Result": "Warm: 236, Cold: 472, Delete: 708" - }, - { - "Month": "2023-03", - "Result": "Warm: 238, Cold: 476, Delete: 714" - }, - { - "Month": "2023-04", - "Result": "Warm: 239, Cold: 478, Delete: 717" - }, - { - "Month": "2023-05", - "Result": "Warm: 241, Cold: 482, Delete: 723" - }, - { - "Month": "2023-06", - "Result": "Warm: 243, Cold: 486, Delete: 729" - }, - { - "Month": "2023-07", - "Result": "Warm: 245, Cold: 490, Delete: 735" - }, - { - "Month": "2023-08", - "Result": "Warm: 247, Cold: 494, Delete: 741" - }, - { - "Month": "2023-09", - "Result": "Warm: 249, Cold: 498, Delete: 747" - }, - { - "Month": "2023-10", - "Result": "Warm: 251, Cold: 502, Delete: 753" - }, - { - "Month": "2023-11", - "Result": "Warm: 254, Cold: 508, Delete: 762" - }, - { - "Month": "2023-12", - "Result": "Warm: 257, Cold: 514, Delete: 771" - }, - { - "Month": "2024-01", - "Result": "Warm: 260, Cold: 520, Delete: 780" - }, - { - "Month": "2024-02", - "Result": "Warm: 263, Cold: 526, Delete: 789" - }, - { - "Month": "2024-03", - "Result": "Warm: 266, Cold: 532, Delete: 798" - }, - { - "Month": "2024-04", - "Result": "Warm: 270, Cold: 540, Delete: 810" - }, - { - "Month": "2024-05", - "Result": "Warm: 273, Cold: 546, Delete: 819" - }, - { - "Month": "2024-06", - "Result": "Warm: 278, Cold: 556, Delete: 834" - }, - { - "Month": "2024-07", - "Result": "Warm: 282, Cold: 564, Delete: 846" - }, - { - "Month": "2024-08", - "Result": "Warm: 288, Cold: 576, Delete: 864" - }, - { - "Month": "2024-09", - "Result": "Warm: 293, Cold: 586, Delete: 879" - }, - { - "Month": "2024-10", - "Result": "Warm: 300, Cold: 600, Delete: 900" - }, - { - "Month": "2024-11", - "Result": "Warm: 307, Cold: 614, Delete: 921" - }, - { - "Month": "2024-12", - "Result": "Warm: 315, Cold: 630, Delete: 945" - }, - { - "Month": "2025-01", - "Result": "Warm: 324, Cold: 648, Delete: 972" - }, - { - "Month": "2025-02", - "Result": "Warm: 334, Cold: 668, Delete: 1002" - }, - { - "Month": "2025-03", - "Result": "Warm: 345, Cold: 690, Delete: 1035" - } - ], - "30m": [ - { - "Month": "2018-01", - "Result": "Warm: 134, Cold: 268, Delete: 402" - }, - { - "Month": "2018-02", - "Result": "Warm: 134, Cold: 268, Delete: 402" - }, - { - "Month": "2018-03", - "Result": "Warm: 134, Cold: 268, Delete: 402" - }, - { - "Month": "2018-04", - "Result": "Warm: 134, Cold: 268, Delete: 402" - }, - { - "Month": "2018-05", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2018-06", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2018-07", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2018-08", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2018-09", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2018-10", - "Result": "Warm: 135, Cold: 270, Delete: 405" - }, - { - "Month": "2018-11", - "Result": "Warm: 136, Cold: 272, Delete: 408" - }, - { - "Month": "2018-12", - "Result": "Warm: 136, Cold: 272, Delete: 408" - }, - { - "Month": "2019-01", - "Result": "Warm: 136, Cold: 272, Delete: 408" - }, - { - "Month": "2019-02", - "Result": "Warm: 136, Cold: 272, Delete: 408" - }, - { - "Month": "2019-03", - "Result": "Warm: 136, Cold: 272, Delete: 408" - }, - { - "Month": "2019-04", - "Result": "Warm: 137, Cold: 274, Delete: 411" - }, - { - "Month": "2019-05", - "Result": "Warm: 137, Cold: 274, Delete: 411" - }, - { - "Month": "2019-06", - "Result": "Warm: 137, Cold: 274, Delete: 411" - }, - { - "Month": "2019-07", - "Result": "Warm: 137, Cold: 274, Delete: 411" - }, - { - "Month": "2019-08", - "Result": "Warm: 137, Cold: 274, Delete: 411" - }, - { - "Month": "2019-09", - "Result": "Warm: 138, Cold: 276, Delete: 414" - }, - { - "Month": "2019-10", - "Result": "Warm: 138, Cold: 276, Delete: 414" - }, - { - "Month": "2019-11", - "Result": "Warm: 138, Cold: 276, Delete: 414" - }, - { - "Month": "2019-12", - "Result": "Warm: 138, Cold: 276, Delete: 414" - }, - { - "Month": "2020-01", - "Result": "Warm: 139, Cold: 278, Delete: 417" - }, - { - "Month": "2020-02", - "Result": "Warm: 139, Cold: 278, Delete: 417" - }, - { - "Month": "2020-03", - "Result": "Warm: 139, Cold: 278, Delete: 417" - }, - { - "Month": "2020-04", - "Result": "Warm: 139, Cold: 278, Delete: 417" - }, - { - "Month": "2020-05", - "Result": "Warm: 140, Cold: 280, Delete: 420" - }, - { - "Month": "2020-06", - "Result": "Warm: 140, Cold: 280, Delete: 420" - }, - { - "Month": "2020-07", - "Result": "Warm: 140, Cold: 280, Delete: 420" - }, - { - "Month": "2020-08", - "Result": "Warm: 141, Cold: 282, Delete: 423" - }, - { - "Month": "2020-09", - "Result": "Warm: 141, Cold: 282, Delete: 423" - }, - { - "Month": "2020-10", - "Result": "Warm: 141, Cold: 282, Delete: 423" - }, - { - "Month": "2020-11", - "Result": "Warm: 142, Cold: 284, Delete: 426" - }, - { - "Month": "2020-12", - "Result": "Warm: 142, Cold: 284, Delete: 426" - }, - { - "Month": "2021-01", - "Result": "Warm: 142, Cold: 284, Delete: 426" - }, - { - "Month": "2021-02", - "Result": "Warm: 143, Cold: 286, Delete: 429" - }, - { - "Month": "2021-03", - "Result": "Warm: 143, Cold: 286, Delete: 429" - }, - { - "Month": "2021-04", - "Result": "Warm: 143, Cold: 286, Delete: 429" - }, - { - "Month": "2021-05", - "Result": "Warm: 144, Cold: 288, Delete: 432" - }, - { - "Month": "2021-06", - "Result": "Warm: 144, Cold: 288, Delete: 432" - }, - { - "Month": "2021-07", - "Result": "Warm: 145, Cold: 290, Delete: 435" - }, - { - "Month": "2021-08", - "Result": "Warm: 145, Cold: 290, Delete: 435" - }, - { - "Month": "2021-09", - "Result": "Warm: 146, Cold: 292, Delete: 438" - }, - { - "Month": "2021-10", - "Result": "Warm: 146, Cold: 292, Delete: 438" - }, - { - "Month": "2021-11", - "Result": "Warm: 147, Cold: 294, Delete: 441" - }, - { - "Month": "2021-12", - "Result": "Warm: 147, Cold: 294, Delete: 441" - }, - { - "Month": "2022-01", - "Result": "Warm: 148, Cold: 296, Delete: 444" - }, - { - "Month": "2022-02", - "Result": "Warm: 148, Cold: 296, Delete: 444" - }, - { - "Month": "2022-03", - "Result": "Warm: 149, Cold: 298, Delete: 447" - }, - { - "Month": "2022-04", - "Result": "Warm: 149, Cold: 298, Delete: 447" - }, - { - "Month": "2022-05", - "Result": "Warm: 150, Cold: 300, Delete: 450" - }, - { - "Month": "2022-06", - "Result": "Warm: 151, Cold: 302, Delete: 453" - }, - { - "Month": "2022-07", - "Result": "Warm: 151, Cold: 302, Delete: 453" - }, - { - "Month": "2022-08", - "Result": "Warm: 152, Cold: 304, Delete: 456" - }, - { - "Month": "2022-09", - "Result": "Warm: 153, Cold: 306, Delete: 459" - }, - { - "Month": "2022-10", - "Result": "Warm: 154, Cold: 308, Delete: 462" - }, - { - "Month": "2022-11", - "Result": "Warm: 155, Cold: 310, Delete: 465" - }, - { - "Month": "2022-12", - "Result": "Warm: 155, Cold: 310, Delete: 465" - }, - { - "Month": "2023-01", - "Result": "Warm: 156, Cold: 312, Delete: 468" - }, - { - "Month": "2023-02", - "Result": "Warm: 157, Cold: 314, Delete: 471" - }, - { - "Month": "2023-03", - "Result": "Warm: 158, Cold: 316, Delete: 474" - }, - { - "Month": "2023-04", - "Result": "Warm: 159, Cold: 318, Delete: 477" - }, - { - "Month": "2023-05", - "Result": "Warm: 161, Cold: 322, Delete: 483" - }, - { - "Month": "2023-06", - "Result": "Warm: 162, Cold: 324, Delete: 486" - }, - { - "Month": "2023-07", - "Result": "Warm: 163, Cold: 326, Delete: 489" - }, - { - "Month": "2023-08", - "Result": "Warm: 164, Cold: 328, Delete: 492" - }, - { - "Month": "2023-09", - "Result": "Warm: 166, Cold: 332, Delete: 498" - }, - { - "Month": "2023-10", - "Result": "Warm: 167, Cold: 334, Delete: 501" - }, - { - "Month": "2023-11", - "Result": "Warm: 169, Cold: 338, Delete: 507" - }, - { - "Month": "2023-12", - "Result": "Warm: 171, Cold: 342, Delete: 513" - }, - { - "Month": "2024-01", - "Result": "Warm: 173, Cold: 346, Delete: 519" - }, - { - "Month": "2024-02", - "Result": "Warm: 175, Cold: 350, Delete: 525" - }, - { - "Month": "2024-03", - "Result": "Warm: 177, Cold: 354, Delete: 531" - }, - { - "Month": "2024-04", - "Result": "Warm: 180, Cold: 360, Delete: 540" - }, - { - "Month": "2024-05", - "Result": "Warm: 182, Cold: 364, Delete: 546" - }, - { - "Month": "2024-06", - "Result": "Warm: 185, Cold: 370, Delete: 555" - }, - { - "Month": "2024-07", - "Result": "Warm: 188, Cold: 376, Delete: 564" - }, - { - "Month": "2024-08", - "Result": "Warm: 192, Cold: 384, Delete: 576" - }, - { - "Month": "2024-09", - "Result": "Warm: 195, Cold: 390, Delete: 585" - }, - { - "Month": "2024-10", - "Result": "Warm: 200, Cold: 400, Delete: 600" - }, - { - "Month": "2024-11", - "Result": "Warm: 204, Cold: 408, Delete: 612" - }, - { - "Month": "2024-12", - "Result": "Warm: 210, Cold: 420, Delete: 630" - }, - { - "Month": "2025-01", - "Result": "Warm: 216, Cold: 432, Delete: 648" - }, - { - "Month": "2025-02", - "Result": "Warm: 223, Cold: 446, Delete: 669" - }, - { - "Month": "2025-03", - "Result": "Warm: 230, Cold: 460, Delete: 690" - } - ], - "3m": [ - { - "Month": "2018-01", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-02", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-03", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-04", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-05", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-06", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-07", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-08", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-09", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-10", - "Result": "Warm: 50, Cold: 100, Delete: 150" - }, - { - "Month": "2018-11", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2018-12", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-01", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-02", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-03", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-04", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-05", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-06", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-07", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-08", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-09", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-10", - "Result": "Warm: 51, Cold: 102, Delete: 153" - }, - { - "Month": "2019-11", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2019-12", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-01", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-02", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-03", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-04", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-05", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-06", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-07", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-08", - "Result": "Warm: 52, Cold: 104, Delete: 156" - }, - { - "Month": "2020-09", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2020-10", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2020-11", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2020-12", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2021-01", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2021-02", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2021-03", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2021-04", - "Result": "Warm: 53, Cold: 106, Delete: 159" - }, - { - "Month": "2021-05", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2021-06", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2021-07", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2021-08", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2021-09", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2021-10", - "Result": "Warm: 54, Cold: 108, Delete: 162" - }, - { - "Month": "2021-11", - "Result": "Warm: 55, Cold: 110, Delete: 165" - }, - { - "Month": "2021-12", - "Result": "Warm: 55, Cold: 110, Delete: 165" - }, - { - "Month": "2022-01", - "Result": "Warm: 55, Cold: 110, Delete: 165" - }, - { - "Month": "2022-02", - "Result": "Warm: 55, Cold: 110, Delete: 165" - }, - { - "Month": "2022-03", - "Result": "Warm: 56, Cold: 112, Delete: 168" - }, - { - "Month": "2022-04", - "Result": "Warm: 56, Cold: 112, Delete: 168" - }, - { - "Month": "2022-05", - "Result": "Warm: 56, Cold: 112, Delete: 168" - }, - { - "Month": "2022-06", - "Result": "Warm: 56, Cold: 112, Delete: 168" - }, - { - "Month": "2022-07", - "Result": "Warm: 56, Cold: 112, Delete: 168" - }, - { - "Month": "2022-08", - "Result": "Warm: 57, Cold: 114, Delete: 171" - }, - { - "Month": "2022-09", - "Result": "Warm: 57, Cold: 114, Delete: 171" - }, - { - "Month": "2022-10", - "Result": "Warm: 57, Cold: 114, Delete: 171" - }, - { - "Month": "2022-11", - "Result": "Warm: 58, Cold: 116, Delete: 174" - }, - { - "Month": "2022-12", - "Result": "Warm: 58, Cold: 116, Delete: 174" - }, - { - "Month": "2023-01", - "Result": "Warm: 58, Cold: 116, Delete: 174" - }, - { - "Month": "2023-02", - "Result": "Warm: 59, Cold: 118, Delete: 177" - }, - { - "Month": "2023-03", - "Result": "Warm: 59, Cold: 118, Delete: 177" - }, - { - "Month": "2023-04", - "Result": "Warm: 59, Cold: 118, Delete: 177" - }, - { - "Month": "2023-05", - "Result": "Warm: 60, Cold: 120, Delete: 180" - }, - { - "Month": "2023-06", - "Result": "Warm: 60, Cold: 120, Delete: 180" - }, - { - "Month": "2023-07", - "Result": "Warm: 61, Cold: 122, Delete: 183" - }, - { - "Month": "2023-08", - "Result": "Warm: 61, Cold: 122, Delete: 183" - }, - { - "Month": "2023-09", - "Result": "Warm: 62, Cold: 124, Delete: 186" - }, - { - "Month": "2023-10", - "Result": "Warm: 62, Cold: 124, Delete: 186" - }, - { - "Month": "2023-11", - "Result": "Warm: 63, Cold: 126, Delete: 189" - }, - { - "Month": "2023-12", - "Result": "Warm: 64, Cold: 128, Delete: 192" - }, - { - "Month": "2024-01", - "Result": "Warm: 65, Cold: 130, Delete: 195" - }, - { - "Month": "2024-02", - "Result": "Warm: 65, Cold: 130, Delete: 195" - }, - { - "Month": "2024-03", - "Result": "Warm: 66, Cold: 132, Delete: 198" - }, - { - "Month": "2024-04", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2024-05", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2024-06", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2024-07", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2024-08", - "Result": "Warm: 72, Cold: 144, Delete: 216" - }, - { - "Month": "2024-09", - "Result": "Warm: 73, Cold: 146, Delete: 219" - }, - { - "Month": "2024-10", - "Result": "Warm: 75, Cold: 150, Delete: 225" - }, - { - "Month": "2024-11", - "Result": "Warm: 76, Cold: 152, Delete: 228" - }, - { - "Month": "2024-12", - "Result": "Warm: 78, Cold: 156, Delete: 234" - }, - { - "Month": "2025-01", - "Result": "Warm: 81, Cold: 162, Delete: 243" - }, - { - "Month": "2025-02", - "Result": "Warm: 83, Cold: 166, Delete: 249" - }, - { - "Month": "2025-03", - "Result": "Warm: 86, Cold: 172, Delete: 258" - } - ], - "4H": [ - { - "Month": "2018-01", - "Result": "Warm: 269, Cold: 538, Delete: 807" - }, - { - "Month": "2018-02", - "Result": "Warm: 269, Cold: 538, Delete: 807" - }, - { - "Month": "2018-03", - "Result": "Warm: 269, Cold: 538, Delete: 807" - }, - { - "Month": "2018-04", - "Result": "Warm: 269, Cold: 538, Delete: 807" - }, - { - "Month": "2018-05", - "Result": "Warm: 270, Cold: 540, Delete: 810" - }, - { - "Month": "2018-06", - "Result": "Warm: 270, Cold: 540, Delete: 810" - }, - { - "Month": "2018-07", - "Result": "Warm: 270, Cold: 540, Delete: 810" - }, - { - "Month": "2018-08", - "Result": "Warm: 271, Cold: 542, Delete: 813" - }, - { - "Month": "2018-09", - "Result": "Warm: 271, Cold: 542, Delete: 813" - }, - { - "Month": "2018-10", - "Result": "Warm: 271, Cold: 542, Delete: 813" - }, - { - "Month": "2018-11", - "Result": "Warm: 272, Cold: 544, Delete: 816" - }, - { - "Month": "2018-12", - "Result": "Warm: 272, Cold: 544, Delete: 816" - }, - { - "Month": "2019-01", - "Result": "Warm: 273, Cold: 546, Delete: 819" - }, - { - "Month": "2019-02", - "Result": "Warm: 273, Cold: 546, Delete: 819" - }, - { - "Month": "2019-03", - "Result": "Warm: 273, Cold: 546, Delete: 819" - }, - { - "Month": "2019-04", - "Result": "Warm: 274, Cold: 548, Delete: 822" - }, - { - "Month": "2019-05", - "Result": "Warm: 274, Cold: 548, Delete: 822" - }, - { - "Month": "2019-06", - "Result": "Warm: 275, Cold: 550, Delete: 825" - }, - { - "Month": "2019-07", - "Result": "Warm: 275, Cold: 550, Delete: 825" - }, - { - "Month": "2019-08", - "Result": "Warm: 275, Cold: 550, Delete: 825" - }, - { - "Month": "2019-09", - "Result": "Warm: 276, Cold: 552, Delete: 828" - }, - { - "Month": "2019-10", - "Result": "Warm: 276, Cold: 552, Delete: 828" - }, - { - "Month": "2019-11", - "Result": "Warm: 277, Cold: 554, Delete: 831" - }, - { - "Month": "2019-12", - "Result": "Warm: 277, Cold: 554, Delete: 831" - }, - { - "Month": "2020-01", - "Result": "Warm: 278, Cold: 556, Delete: 834" - }, - { - "Month": "2020-02", - "Result": "Warm: 278, Cold: 556, Delete: 834" - }, - { - "Month": "2020-03", - "Result": "Warm: 279, Cold: 558, Delete: 837" - }, - { - "Month": "2020-04", - "Result": "Warm: 279, Cold: 558, Delete: 837" - }, - { - "Month": "2020-05", - "Result": "Warm: 280, Cold: 560, Delete: 840" - }, - { - "Month": "2020-06", - "Result": "Warm: 281, Cold: 562, Delete: 843" - }, - { - "Month": "2020-07", - "Result": "Warm: 281, Cold: 562, Delete: 843" - }, - { - "Month": "2020-08", - "Result": "Warm: 282, Cold: 564, Delete: 846" - }, - { - "Month": "2020-09", - "Result": "Warm: 282, Cold: 564, Delete: 846" - }, - { - "Month": "2020-10", - "Result": "Warm: 283, Cold: 566, Delete: 849" - }, - { - "Month": "2020-11", - "Result": "Warm: 284, Cold: 568, Delete: 852" - }, - { - "Month": "2020-12", - "Result": "Warm: 284, Cold: 568, Delete: 852" - }, - { - "Month": "2021-01", - "Result": "Warm: 285, Cold: 570, Delete: 855" - }, - { - "Month": "2021-02", - "Result": "Warm: 286, Cold: 572, Delete: 858" - }, - { - "Month": "2021-03", - "Result": "Warm: 287, Cold: 574, Delete: 861" - }, - { - "Month": "2021-04", - "Result": "Warm: 287, Cold: 574, Delete: 861" - }, - { - "Month": "2021-05", - "Result": "Warm: 288, Cold: 576, Delete: 864" - }, - { - "Month": "2021-06", - "Result": "Warm: 289, Cold: 578, Delete: 867" - }, - { - "Month": "2021-07", - "Result": "Warm: 290, Cold: 580, Delete: 870" - }, - { - "Month": "2021-08", - "Result": "Warm: 291, Cold: 582, Delete: 873" - }, - { - "Month": "2021-09", - "Result": "Warm: 292, Cold: 584, Delete: 876" - }, - { - "Month": "2021-10", - "Result": "Warm: 293, Cold: 586, Delete: 879" - }, - { - "Month": "2021-11", - "Result": "Warm: 294, Cold: 588, Delete: 882" - }, - { - "Month": "2021-12", - "Result": "Warm: 295, Cold: 590, Delete: 885" - }, - { - "Month": "2022-01", - "Result": "Warm: 296, Cold: 592, Delete: 888" - }, - { - "Month": "2022-02", - "Result": "Warm: 297, Cold: 594, Delete: 891" - }, - { - "Month": "2022-03", - "Result": "Warm: 298, Cold: 596, Delete: 894" - }, - { - "Month": "2022-04", - "Result": "Warm: 299, Cold: 598, Delete: 897" - }, - { - "Month": "2022-05", - "Result": "Warm: 301, Cold: 602, Delete: 903" - }, - { - "Month": "2022-06", - "Result": "Warm: 302, Cold: 604, Delete: 906" - }, - { - "Month": "2022-07", - "Result": "Warm: 303, Cold: 606, Delete: 909" - }, - { - "Month": "2022-08", - "Result": "Warm: 305, Cold: 610, Delete: 915" - }, - { - "Month": "2022-09", - "Result": "Warm: 306, Cold: 612, Delete: 918" - }, - { - "Month": "2022-10", - "Result": "Warm: 308, Cold: 616, Delete: 924" - }, - { - "Month": "2022-11", - "Result": "Warm: 310, Cold: 620, Delete: 930" - }, - { - "Month": "2022-12", - "Result": "Warm: 311, Cold: 622, Delete: 933" - }, - { - "Month": "2023-01", - "Result": "Warm: 313, Cold: 626, Delete: 939" - }, - { - "Month": "2023-02", - "Result": "Warm: 315, Cold: 630, Delete: 945" - }, - { - "Month": "2023-03", - "Result": "Warm: 317, Cold: 634, Delete: 951" - }, - { - "Month": "2023-04", - "Result": "Warm: 319, Cold: 638, Delete: 957" - }, - { - "Month": "2023-05", - "Result": "Warm: 322, Cold: 644, Delete: 966" - }, - { - "Month": "2023-06", - "Result": "Warm: 324, Cold: 648, Delete: 972" - }, - { - "Month": "2023-07", - "Result": "Warm: 327, Cold: 654, Delete: 981" - }, - { - "Month": "2023-08", - "Result": "Warm: 329, Cold: 658, Delete: 987" - }, - { - "Month": "2023-09", - "Result": "Warm: 332, Cold: 664, Delete: 996" - }, - { - "Month": "2023-10", - "Result": "Warm: 335, Cold: 670, Delete: 1005" - }, - { - "Month": "2023-11", - "Result": "Warm: 339, Cold: 678, Delete: 1017" - }, - { - "Month": "2023-12", - "Result": "Warm: 342, Cold: 684, Delete: 1026" - }, - { - "Month": "2024-01", - "Result": "Warm: 346, Cold: 692, Delete: 1038" - }, - { - "Month": "2024-02", - "Result": "Warm: 350, Cold: 700, Delete: 1050" - }, - { - "Month": "2024-03", - "Result": "Warm: 355, Cold: 710, Delete: 1065" - }, - { - "Month": "2024-04", - "Result": "Warm: 360, Cold: 720, Delete: 1080" - }, - { - "Month": "2024-05", - "Result": "Warm: 365, Cold: 730, Delete: 1095" - }, - { - "Month": "2024-06", - "Result": "Warm: 370, Cold: 740, Delete: 1110" - }, - { - "Month": "2024-07", - "Result": "Warm: 377, Cold: 754, Delete: 1131" - }, - { - "Month": "2024-08", - "Result": "Warm: 384, Cold: 768, Delete: 1152" - }, - { - "Month": "2024-09", - "Result": "Warm: 391, Cold: 782, Delete: 1173" - }, - { - "Month": "2024-10", - "Result": "Warm: 400, Cold: 800, Delete: 1200" - }, - { - "Month": "2024-11", - "Result": "Warm: 409, Cold: 818, Delete: 1227" - }, - { - "Month": "2024-12", - "Result": "Warm: 420, Cold: 840, Delete: 1260" - }, - { - "Month": "2025-01", - "Result": "Warm: 432, Cold: 864, Delete: 1296" - }, - { - "Month": "2025-02", - "Result": "Warm: 446, Cold: 892, Delete: 1338" - }, - { - "Month": "2025-03", - "Result": "Warm: 461, Cold: 922, Delete: 1383" - } - ], - "5D": [ - { - "Month": "2018-01", - "Result": "Warm: 807, Cold: 1614, Delete: 2421" - }, - { - "Month": "2018-02", - "Result": "Warm: 808, Cold: 1616, Delete: 2424" - }, - { - "Month": "2018-03", - "Result": "Warm: 808, Cold: 1616, Delete: 2424" - }, - { - "Month": "2018-04", - "Result": "Warm: 809, Cold: 1618, Delete: 2427" - }, - { - "Month": "2018-05", - "Result": "Warm: 810, Cold: 1620, Delete: 2430" - }, - { - "Month": "2018-06", - "Result": "Warm: 811, Cold: 1622, Delete: 2433" - }, - { - "Month": "2018-07", - "Result": "Warm: 812, Cold: 1624, Delete: 2436" - }, - { - "Month": "2018-08", - "Result": "Warm: 813, Cold: 1626, Delete: 2439" - }, - { - "Month": "2018-09", - "Result": "Warm: 814, Cold: 1628, Delete: 2442" - }, - { - "Month": "2018-10", - "Result": "Warm: 815, Cold: 1630, Delete: 2445" - }, - { - "Month": "2018-11", - "Result": "Warm: 817, Cold: 1634, Delete: 2451" - }, - { - "Month": "2018-12", - "Result": "Warm: 818, Cold: 1636, Delete: 2454" - }, - { - "Month": "2019-01", - "Result": "Warm: 819, Cold: 1638, Delete: 2457" - }, - { - "Month": "2019-02", - "Result": "Warm: 820, Cold: 1640, Delete: 2460" - }, - { - "Month": "2019-03", - "Result": "Warm: 821, Cold: 1642, Delete: 2463" - }, - { - "Month": "2019-04", - "Result": "Warm: 822, Cold: 1644, Delete: 2466" - }, - { - "Month": "2019-05", - "Result": "Warm: 823, Cold: 1646, Delete: 2469" - }, - { - "Month": "2019-06", - "Result": "Warm: 825, Cold: 1650, Delete: 2475" - }, - { - "Month": "2019-07", - "Result": "Warm: 826, Cold: 1652, Delete: 2478" - }, - { - "Month": "2019-08", - "Result": "Warm: 827, Cold: 1654, Delete: 2481" - }, - { - "Month": "2019-09", - "Result": "Warm: 829, Cold: 1658, Delete: 2487" - }, - { - "Month": "2019-10", - "Result": "Warm: 830, Cold: 1660, Delete: 2490" - }, - { - "Month": "2019-11", - "Result": "Warm: 832, Cold: 1664, Delete: 2496" - }, - { - "Month": "2019-12", - "Result": "Warm: 833, Cold: 1666, Delete: 2499" - }, - { - "Month": "2020-01", - "Result": "Warm: 835, Cold: 1670, Delete: 2505" - }, - { - "Month": "2020-02", - "Result": "Warm: 836, Cold: 1672, Delete: 2508" - }, - { - "Month": "2020-03", - "Result": "Warm: 838, Cold: 1676, Delete: 2514" - }, - { - "Month": "2020-04", - "Result": "Warm: 839, Cold: 1678, Delete: 2517" - }, - { - "Month": "2020-05", - "Result": "Warm: 841, Cold: 1682, Delete: 2523" - }, - { - "Month": "2020-06", - "Result": "Warm: 843, Cold: 1686, Delete: 2529" - }, - { - "Month": "2020-07", - "Result": "Warm: 845, Cold: 1690, Delete: 2535" - }, - { - "Month": "2020-08", - "Result": "Warm: 847, Cold: 1694, Delete: 2541" - }, - { - "Month": "2020-09", - "Result": "Warm: 848, Cold: 1696, Delete: 2544" - }, - { - "Month": "2020-10", - "Result": "Warm: 850, Cold: 1700, Delete: 2550" - }, - { - "Month": "2020-11", - "Result": "Warm: 852, Cold: 1704, Delete: 2556" - }, - { - "Month": "2020-12", - "Result": "Warm: 854, Cold: 1708, Delete: 2562" - }, - { - "Month": "2021-01", - "Result": "Warm: 857, Cold: 1714, Delete: 2571" - }, - { - "Month": "2021-02", - "Result": "Warm: 859, Cold: 1718, Delete: 2577" - }, - { - "Month": "2021-03", - "Result": "Warm: 861, Cold: 1722, Delete: 2583" - }, - { - "Month": "2021-04", - "Result": "Warm: 863, Cold: 1726, Delete: 2589" - }, - { - "Month": "2021-05", - "Result": "Warm: 866, Cold: 1732, Delete: 2598" - }, - { - "Month": "2021-06", - "Result": "Warm: 868, Cold: 1736, Delete: 2604" - }, - { - "Month": "2021-07", - "Result": "Warm: 871, Cold: 1742, Delete: 2613" - }, - { - "Month": "2021-08", - "Result": "Warm: 874, Cold: 1748, Delete: 2622" - }, - { - "Month": "2021-09", - "Result": "Warm: 877, Cold: 1754, Delete: 2631" - }, - { - "Month": "2021-10", - "Result": "Warm: 879, Cold: 1758, Delete: 2637" - }, - { - "Month": "2021-11", - "Result": "Warm: 883, Cold: 1766, Delete: 2649" - }, - { - "Month": "2021-12", - "Result": "Warm: 886, Cold: 1772, Delete: 2658" - }, - { - "Month": "2022-01", - "Result": "Warm: 889, Cold: 1778, Delete: 2667" - }, - { - "Month": "2022-02", - "Result": "Warm: 892, Cold: 1784, Delete: 2676" - }, - { - "Month": "2022-03", - "Result": "Warm: 896, Cold: 1792, Delete: 2688" - }, - { - "Month": "2022-04", - "Result": "Warm: 899, Cold: 1798, Delete: 2697" - }, - { - "Month": "2022-05", - "Result": "Warm: 903, Cold: 1806, Delete: 2709" - }, - { - "Month": "2022-06", - "Result": "Warm: 907, Cold: 1814, Delete: 2721" - }, - { - "Month": "2022-07", - "Result": "Warm: 911, Cold: 1822, Delete: 2733" - }, - { - "Month": "2022-08", - "Result": "Warm: 916, Cold: 1832, Delete: 2748" - }, - { - "Month": "2022-09", - "Result": "Warm: 920, Cold: 1840, Delete: 2760" - }, - { - "Month": "2022-10", - "Result": "Warm: 925, Cold: 1850, Delete: 2775" - }, - { - "Month": "2022-11", - "Result": "Warm: 930, Cold: 1860, Delete: 2790" - }, - { - "Month": "2022-12", - "Result": "Warm: 935, Cold: 1870, Delete: 2805" - }, - { - "Month": "2023-01", - "Result": "Warm: 941, Cold: 1882, Delete: 2823" - }, - { - "Month": "2023-02", - "Result": "Warm: 947, Cold: 1894, Delete: 2841" - }, - { - "Month": "2023-03", - "Result": "Warm: 953, Cold: 1906, Delete: 2859" - }, - { - "Month": "2023-04", - "Result": "Warm: 959, Cold: 1918, Delete: 2877" - }, - { - "Month": "2023-05", - "Result": "Warm: 966, Cold: 1932, Delete: 2898" - }, - { - "Month": "2023-06", - "Result": "Warm: 973, Cold: 1946, Delete: 2919" - }, - { - "Month": "2023-07", - "Result": "Warm: 981, Cold: 1962, Delete: 2943" - }, - { - "Month": "2023-08", - "Result": "Warm: 989, Cold: 1978, Delete: 2967" - }, - { - "Month": "2023-09", - "Result": "Warm: 998, Cold: 1996, Delete: 2994" - }, - { - "Month": "2023-10", - "Result": "Warm: 1007, Cold: 2014, Delete: 3021" - }, - { - "Month": "2023-11", - "Result": "Warm: 1017, Cold: 2034, Delete: 3051" - }, - { - "Month": "2023-12", - "Result": "Warm: 1028, Cold: 2056, Delete: 3084" - }, - { - "Month": "2024-01", - "Result": "Warm: 1040, Cold: 2080, Delete: 3120" - }, - { - "Month": "2024-02", - "Result": "Warm: 1052, Cold: 2104, Delete: 3156" - }, - { - "Month": "2024-03", - "Result": "Warm: 1065, Cold: 2130, Delete: 3195" - }, - { - "Month": "2024-04", - "Result": "Warm: 1080, Cold: 2160, Delete: 3240" - }, - { - "Month": "2024-05", - "Result": "Warm: 1095, Cold: 2190, Delete: 3285" - }, - { - "Month": "2024-06", - "Result": "Warm: 1112, Cold: 2224, Delete: 3336" - }, - { - "Month": "2024-07", - "Result": "Warm: 1131, Cold: 2262, Delete: 3393" - }, - { - "Month": "2024-08", - "Result": "Warm: 1152, Cold: 2304, Delete: 3456" - }, - { - "Month": "2024-09", - "Result": "Warm: 1175, Cold: 2350, Delete: 3525" - }, - { - "Month": "2024-10", - "Result": "Warm: 1200, Cold: 2400, Delete: 3600" - }, - { - "Month": "2024-11", - "Result": "Warm: 1229, Cold: 2458, Delete: 3687" - }, - { - "Month": "2024-12", - "Result": "Warm: 1260, Cold: 2520, Delete: 3780" - }, - { - "Month": "2025-01", - "Result": "Warm: 1297, Cold: 2594, Delete: 3891" - }, - { - "Month": "2025-02", - "Result": "Warm: 1339, Cold: 2678, Delete: 4017" - }, - { - "Month": "2025-03", - "Result": "Warm: 1383, Cold: 2766, Delete: 4149" - } - ], - "5m": [ - { - "Month": "2018-01", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-02", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-03", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-04", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-05", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-06", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-07", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-08", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-09", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-10", - "Result": "Warm: 67, Cold: 134, Delete: 201" - }, - { - "Month": "2018-11", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2018-12", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-01", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-02", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-03", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-04", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-05", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-06", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-07", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-08", - "Result": "Warm: 68, Cold: 136, Delete: 204" - }, - { - "Month": "2019-09", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2019-10", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2019-11", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2019-12", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2020-01", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2020-02", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2020-03", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2020-04", - "Result": "Warm: 69, Cold: 138, Delete: 207" - }, - { - "Month": "2020-05", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2020-06", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2020-07", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2020-08", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2020-09", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2020-10", - "Result": "Warm: 70, Cold: 140, Delete: 210" - }, - { - "Month": "2020-11", - "Result": "Warm: 71, Cold: 142, Delete: 213" - }, - { - "Month": "2020-12", - "Result": "Warm: 71, Cold: 142, Delete: 213" - }, - { - "Month": "2021-01", - "Result": "Warm: 71, Cold: 142, Delete: 213" - }, - { - "Month": "2021-02", - "Result": "Warm: 71, Cold: 142, Delete: 213" - }, - { - "Month": "2021-03", - "Result": "Warm: 71, Cold: 142, Delete: 213" - }, - { - "Month": "2021-04", - "Result": "Warm: 71, Cold: 142, Delete: 213" - }, - { - "Month": "2021-05", - "Result": "Warm: 72, Cold: 144, Delete: 216" - }, - { - "Month": "2021-06", - "Result": "Warm: 72, Cold: 144, Delete: 216" - }, - { - "Month": "2021-07", - "Result": "Warm: 72, Cold: 144, Delete: 216" - }, - { - "Month": "2021-08", - "Result": "Warm: 72, Cold: 144, Delete: 216" - }, - { - "Month": "2021-09", - "Result": "Warm: 73, Cold: 146, Delete: 219" - }, - { - "Month": "2021-10", - "Result": "Warm: 73, Cold: 146, Delete: 219" - }, - { - "Month": "2021-11", - "Result": "Warm: 73, Cold: 146, Delete: 219" - }, - { - "Month": "2021-12", - "Result": "Warm: 73, Cold: 146, Delete: 219" - }, - { - "Month": "2022-01", - "Result": "Warm: 74, Cold: 148, Delete: 222" - }, - { - "Month": "2022-02", - "Result": "Warm: 74, Cold: 148, Delete: 222" - }, - { - "Month": "2022-03", - "Result": "Warm: 74, Cold: 148, Delete: 222" - }, - { - "Month": "2022-04", - "Result": "Warm: 74, Cold: 148, Delete: 222" - }, - { - "Month": "2022-05", - "Result": "Warm: 75, Cold: 150, Delete: 225" - }, - { - "Month": "2022-06", - "Result": "Warm: 75, Cold: 150, Delete: 225" - }, - { - "Month": "2022-07", - "Result": "Warm: 75, Cold: 150, Delete: 225" - }, - { - "Month": "2022-08", - "Result": "Warm: 76, Cold: 152, Delete: 228" - }, - { - "Month": "2022-09", - "Result": "Warm: 76, Cold: 152, Delete: 228" - }, - { - "Month": "2022-10", - "Result": "Warm: 77, Cold: 154, Delete: 231" - }, - { - "Month": "2022-11", - "Result": "Warm: 77, Cold: 154, Delete: 231" - }, - { - "Month": "2022-12", - "Result": "Warm: 77, Cold: 154, Delete: 231" - }, - { - "Month": "2023-01", - "Result": "Warm: 78, Cold: 156, Delete: 234" - }, - { - "Month": "2023-02", - "Result": "Warm: 78, Cold: 156, Delete: 234" - }, - { - "Month": "2023-03", - "Result": "Warm: 79, Cold: 158, Delete: 237" - }, - { - "Month": "2023-04", - "Result": "Warm: 79, Cold: 158, Delete: 237" - }, - { - "Month": "2023-05", - "Result": "Warm: 80, Cold: 160, Delete: 240" - }, - { - "Month": "2023-06", - "Result": "Warm: 81, Cold: 162, Delete: 243" - }, - { - "Month": "2023-07", - "Result": "Warm: 81, Cold: 162, Delete: 243" - }, - { - "Month": "2023-08", - "Result": "Warm: 82, Cold: 164, Delete: 246" - }, - { - "Month": "2023-09", - "Result": "Warm: 83, Cold: 166, Delete: 249" - }, - { - "Month": "2023-10", - "Result": "Warm: 83, Cold: 166, Delete: 249" - }, - { - "Month": "2023-11", - "Result": "Warm: 84, Cold: 168, Delete: 252" - }, - { - "Month": "2023-12", - "Result": "Warm: 85, Cold: 170, Delete: 255" - }, - { - "Month": "2024-01", - "Result": "Warm: 86, Cold: 172, Delete: 258" - }, - { - "Month": "2024-02", - "Result": "Warm: 87, Cold: 174, Delete: 261" - }, - { - "Month": "2024-03", - "Result": "Warm: 88, Cold: 176, Delete: 264" - }, - { - "Month": "2024-04", - "Result": "Warm: 90, Cold: 180, Delete: 270" - }, - { - "Month": "2024-05", - "Result": "Warm: 91, Cold: 182, Delete: 273" - }, - { - "Month": "2024-06", - "Result": "Warm: 92, Cold: 184, Delete: 276" - }, - { - "Month": "2024-07", - "Result": "Warm: 94, Cold: 188, Delete: 282" - }, - { - "Month": "2024-08", - "Result": "Warm: 96, Cold: 192, Delete: 288" - }, - { - "Month": "2024-09", - "Result": "Warm: 97, Cold: 194, Delete: 291" - }, - { - "Month": "2024-10", - "Result": "Warm: 100, Cold: 200, Delete: 300" - }, - { - "Month": "2024-11", - "Result": "Warm: 102, Cold: 204, Delete: 306" - }, - { - "Month": "2024-12", - "Result": "Warm: 105, Cold: 210, Delete: 315" - }, - { - "Month": "2025-01", - "Result": "Warm: 108, Cold: 216, Delete: 324" - }, - { - "Month": "2025-02", - "Result": "Warm: 111, Cold: 222, Delete: 333" - }, - { - "Month": "2025-03", - "Result": "Warm: 115, Cold: 230, Delete: 345" - } - ], - "6H": [ - { - "Month": "2018-01", - "Result": "Warm: 336, Cold: 672, Delete: 1008" - }, - { - "Month": "2018-02", - "Result": "Warm: 336, Cold: 672, Delete: 1008" - }, - { - "Month": "2018-03", - "Result": "Warm: 337, Cold: 674, Delete: 1011" - }, - { - "Month": "2018-04", - "Result": "Warm: 337, Cold: 674, Delete: 1011" - }, - { - "Month": "2018-05", - "Result": "Warm: 337, Cold: 674, Delete: 1011" - }, - { - "Month": "2018-06", - "Result": "Warm: 338, Cold: 676, Delete: 1014" - }, - { - "Month": "2018-07", - "Result": "Warm: 338, Cold: 676, Delete: 1014" - }, - { - "Month": "2018-08", - "Result": "Warm: 339, Cold: 678, Delete: 1017" - }, - { - "Month": "2018-09", - "Result": "Warm: 339, Cold: 678, Delete: 1017" - }, - { - "Month": "2018-10", - "Result": "Warm: 339, Cold: 678, Delete: 1017" - }, - { - "Month": "2018-11", - "Result": "Warm: 340, Cold: 680, Delete: 1020" - }, - { - "Month": "2018-12", - "Result": "Warm: 340, Cold: 680, Delete: 1020" - }, - { - "Month": "2019-01", - "Result": "Warm: 341, Cold: 682, Delete: 1023" - }, - { - "Month": "2019-02", - "Result": "Warm: 341, Cold: 682, Delete: 1023" - }, - { - "Month": "2019-03", - "Result": "Warm: 342, Cold: 684, Delete: 1026" - }, - { - "Month": "2019-04", - "Result": "Warm: 342, Cold: 684, Delete: 1026" - }, - { - "Month": "2019-05", - "Result": "Warm: 343, Cold: 686, Delete: 1029" - }, - { - "Month": "2019-06", - "Result": "Warm: 343, Cold: 686, Delete: 1029" - }, - { - "Month": "2019-07", - "Result": "Warm: 344, Cold: 688, Delete: 1032" - }, - { - "Month": "2019-08", - "Result": "Warm: 344, Cold: 688, Delete: 1032" - }, - { - "Month": "2019-09", - "Result": "Warm: 345, Cold: 690, Delete: 1035" - }, - { - "Month": "2019-10", - "Result": "Warm: 346, Cold: 692, Delete: 1038" - }, - { - "Month": "2019-11", - "Result": "Warm: 346, Cold: 692, Delete: 1038" - }, - { - "Month": "2019-12", - "Result": "Warm: 347, Cold: 694, Delete: 1041" - }, - { - "Month": "2020-01", - "Result": "Warm: 347, Cold: 694, Delete: 1041" - }, - { - "Month": "2020-02", - "Result": "Warm: 348, Cold: 696, Delete: 1044" - }, - { - "Month": "2020-03", - "Result": "Warm: 349, Cold: 698, Delete: 1047" - }, - { - "Month": "2020-04", - "Result": "Warm: 349, Cold: 698, Delete: 1047" - }, - { - "Month": "2020-05", - "Result": "Warm: 350, Cold: 700, Delete: 1050" - }, - { - "Month": "2020-06", - "Result": "Warm: 351, Cold: 702, Delete: 1053" - }, - { - "Month": "2020-07", - "Result": "Warm: 352, Cold: 704, Delete: 1056" - }, - { - "Month": "2020-08", - "Result": "Warm: 352, Cold: 704, Delete: 1056" - }, - { - "Month": "2020-09", - "Result": "Warm: 353, Cold: 706, Delete: 1059" - }, - { - "Month": "2020-10", - "Result": "Warm: 354, Cold: 708, Delete: 1062" - }, - { - "Month": "2020-11", - "Result": "Warm: 355, Cold: 710, Delete: 1065" - }, - { - "Month": "2020-12", - "Result": "Warm: 356, Cold: 712, Delete: 1068" - }, - { - "Month": "2021-01", - "Result": "Warm: 357, Cold: 714, Delete: 1071" - }, - { - "Month": "2021-02", - "Result": "Warm: 358, Cold: 716, Delete: 1074" - }, - { - "Month": "2021-03", - "Result": "Warm: 358, Cold: 716, Delete: 1074" - }, - { - "Month": "2021-04", - "Result": "Warm: 359, Cold: 718, Delete: 1077" - }, - { - "Month": "2021-05", - "Result": "Warm: 360, Cold: 720, Delete: 1080" - }, - { - "Month": "2021-06", - "Result": "Warm: 362, Cold: 724, Delete: 1086" - }, - { - "Month": "2021-07", - "Result": "Warm: 363, Cold: 726, Delete: 1089" - }, - { - "Month": "2021-08", - "Result": "Warm: 364, Cold: 728, Delete: 1092" - }, - { - "Month": "2021-09", - "Result": "Warm: 365, Cold: 730, Delete: 1095" - }, - { - "Month": "2021-10", - "Result": "Warm: 366, Cold: 732, Delete: 1098" - }, - { - "Month": "2021-11", - "Result": "Warm: 367, Cold: 734, Delete: 1101" - }, - { - "Month": "2021-12", - "Result": "Warm: 369, Cold: 738, Delete: 1107" - }, - { - "Month": "2022-01", - "Result": "Warm: 370, Cold: 740, Delete: 1110" - }, - { - "Month": "2022-02", - "Result": "Warm: 372, Cold: 744, Delete: 1116" - }, - { - "Month": "2022-03", - "Result": "Warm: 373, Cold: 746, Delete: 1119" - }, - { - "Month": "2022-04", - "Result": "Warm: 374, Cold: 748, Delete: 1122" - }, - { - "Month": "2022-05", - "Result": "Warm: 376, Cold: 752, Delete: 1128" - }, - { - "Month": "2022-06", - "Result": "Warm: 378, Cold: 756, Delete: 1134" - }, - { - "Month": "2022-07", - "Result": "Warm: 379, Cold: 758, Delete: 1137" - }, - { - "Month": "2022-08", - "Result": "Warm: 381, Cold: 762, Delete: 1143" - }, - { - "Month": "2022-09", - "Result": "Warm: 383, Cold: 766, Delete: 1149" - }, - { - "Month": "2022-10", - "Result": "Warm: 385, Cold: 770, Delete: 1155" - }, - { - "Month": "2022-11", - "Result": "Warm: 387, Cold: 774, Delete: 1161" - }, - { - "Month": "2022-12", - "Result": "Warm: 389, Cold: 778, Delete: 1167" - }, - { - "Month": "2023-01", - "Result": "Warm: 392, Cold: 784, Delete: 1176" - }, - { - "Month": "2023-02", - "Result": "Warm: 394, Cold: 788, Delete: 1182" - }, - { - "Month": "2023-03", - "Result": "Warm: 397, Cold: 794, Delete: 1191" - }, - { - "Month": "2023-04", - "Result": "Warm: 399, Cold: 798, Delete: 1197" - }, - { - "Month": "2023-05", - "Result": "Warm: 402, Cold: 804, Delete: 1206" - }, - { - "Month": "2023-06", - "Result": "Warm: 405, Cold: 810, Delete: 1215" - }, - { - "Month": "2023-07", - "Result": "Warm: 408, Cold: 816, Delete: 1224" - }, - { - "Month": "2023-08", - "Result": "Warm: 412, Cold: 824, Delete: 1236" - }, - { - "Month": "2023-09", - "Result": "Warm: 416, Cold: 832, Delete: 1248" - }, - { - "Month": "2023-10", - "Result": "Warm: 419, Cold: 838, Delete: 1257" - }, - { - "Month": "2023-11", - "Result": "Warm: 424, Cold: 848, Delete: 1272" - }, - { - "Month": "2023-12", - "Result": "Warm: 428, Cold: 856, Delete: 1284" - }, - { - "Month": "2024-01", - "Result": "Warm: 433, Cold: 866, Delete: 1299" - }, - { - "Month": "2024-02", - "Result": "Warm: 438, Cold: 876, Delete: 1314" - }, - { - "Month": "2024-03", - "Result": "Warm: 443, Cold: 886, Delete: 1329" - }, - { - "Month": "2024-04", - "Result": "Warm: 450, Cold: 900, Delete: 1350" - }, - { - "Month": "2024-05", - "Result": "Warm: 456, Cold: 912, Delete: 1368" - }, - { - "Month": "2024-06", - "Result": "Warm: 463, Cold: 926, Delete: 1389" - }, - { - "Month": "2024-07", - "Result": "Warm: 471, Cold: 942, Delete: 1413" - }, - { - "Month": "2024-08", - "Result": "Warm: 480, Cold: 960, Delete: 1440" - }, - { - "Month": "2024-09", - "Result": "Warm: 489, Cold: 978, Delete: 1467" - }, - { - "Month": "2024-10", - "Result": "Warm: 500, Cold: 1000, Delete: 1500" - }, - { - "Month": "2024-11", - "Result": "Warm: 512, Cold: 1024, Delete: 1536" - }, - { - "Month": "2024-12", - "Result": "Warm: 525, Cold: 1050, Delete: 1575" - }, - { - "Month": "2025-01", - "Result": "Warm: 540, Cold: 1080, Delete: 1620" - }, - { - "Month": "2025-02", - "Result": "Warm: 558, Cold: 1116, Delete: 1674" - }, - { - "Month": "2025-03", - "Result": "Warm: 576, Cold: 1152, Delete: 1728" - } - ] -} ---- PASS: TestEnsureILMPolicy (0.00s) -PASS -ok command-line-arguments 0.500s diff --git a/test/okxAli/candleList_test.go b/test/okxAli/candleList_test.go index 6953bf5..8a044bc 100644 --- a/test/okxAli/candleList_test.go +++ b/test/okxAli/candleList_test.go @@ -80,7 +80,7 @@ import ( func TestCandleListI_CalculateCrossPair(t *testing.T) { // 使用更早的时间范围来触发不同的phase startTime := time.Date(2024, 3, 1, 0, 0, 0, 0, time.UTC) - endTime := time.Date(2024, 3, 31, 0, 0, 0, 0, time.UTC) + endTime := time.Date(2024, 3, 5, 0, 0, 0, 0, time.UTC) // 打印测试时间范围 t.Logf("Test time range: %s to %s", startTime, endTime)