diff --git a/.DS_Store b/.DS_Store index 5008ddf..d32740b 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/abs_error_analysis.png b/abs_error_analysis.png new file mode 100644 index 0000000..3e74e86 Binary files /dev/null and b/abs_error_analysis.png differ diff --git a/docs/3-2.lightgbm.md b/docs/3-2.lightgbm.md new file mode 100644 index 0000000..3b95dd3 --- /dev/null +++ b/docs/3-2.lightgbm.md @@ -0,0 +1,41 @@ +# LightGBM 기반 난이도 상수 예측 모델 + +이 문서는 프로젝트의 또 다른 학습 엔진인 LightGBM 모델의 구조, 하이퍼파라미터 및 특징을 설명합니다. + +## 1. 모델 개요 +**LightGBM (Light Gradient Boosting Machine)**은 트리 기반 학습 알고리즘으로, XGBoost와 유사하지만 'Leaf-wise' 트리 성장 방식을 사용하여 더 빠르고 메모리 효율적인 학습이 가능합니다. 특히 대규모 데이터셋에서 높은 성능을 발휘하며, 본 프로젝트에서는 XGBoost와의 비교 및 앙상블 가능성을 열어두기 위해 도입되었습니다. + +## 2. 하이퍼파라미터 설정 +`train/train_lightgbm.py`에 정의된 주요 설정값은 다음과 같습니다. XGBoost보다 더 깊고 복잡한 트리를 형성하도록 설정되어 있습니다. + +| 파라미터 | 설정값 | 설명 | +| :--- | :--- | :--- | +| `learning_rate` | 0.02 | 학습률. XGBoost(0.05)보다 낮게 설정하여 더 정밀하게 수렴 | +| `num_leaves` | 63 | 하나의 트리가 가질 수 있는 최대 잎(Leaf) 수. 복잡한 패턴 학습에 유리 | +| `n_estimators` | 3000 | 결정 트리의 개수. 충분한 학습을 위해 크게 설정 | +| `feature_fraction`| 0.9 | 각 트리 학습 시 사용할 피처 비율 (과적합 방지) | +| `bagging_fraction`| 0.8 | 데이터 샘플링 비율 | +| `bagging_freq` | 5 | 배깅 수행 빈도 | +| `early_stopping` | 100 | 검증 오차가 개선되지 않을 경우 학습을 조기 종료하는 라운드 수 | + +## 3. LightGBM 모델의 특징 + +### A. Leaf-wise 성장 방식 +- 대부분의 boosting 알고리즘이 Level-wise(수평 성장) 방식을 사용하는 것과 달리, LightGBM은 **Leaf-wise(수직 성장)** 방식을 사용합니다. +- 이 방식은 손실(Loss)을 가장 많이 줄일 수 있는 잎 노드를 계속 분할하므로, 동일한 분할 횟수에서 Level-wise보다 더 낮은 손실을 달성할 수 있습니다. + +### B. 실행 속도 및 효율성 +- XGBoost 대비 학습 속도가 매우 빠르며 메모리 사용량이 적습니다. +- 많은 양의 데이터를 처리할 때 이점이 큽니다. + +## 4. 학습 및 검증 프로세스 +XGBoost와 동일한 파이프라인을 따르며, 결과물은 다음과 같이 구분되어 저장됩니다. + +- **모델 파일**: `model_lgbm.pkl` +- **스케일러**: `scaler_lgbm.pkl` +- **피처 목록**: `features_lgbm.txt` +- **검증 결과**: `validate.json`, `validate.png` + +## 5. 모델 평가 +- LightGBM은 하이퍼파라미터 변화에 민감하므로 과적합(Overfitting) 여부를 `validate.png`를 통해 상시 모니터링해야 합니다. +- 현재 설정은 높은 `n_estimators`와 낮은 `learning_rate`를 통해 아주 미세한 채보의 차이까지 학습하는 것을 목표로 하고 있습니다. diff --git a/docs/4. train script.md b/docs/4. train script.md new file mode 100644 index 0000000..81955f0 --- /dev/null +++ b/docs/4. train script.md @@ -0,0 +1,67 @@ +# 4. 학습 스크립트 (Training Script) 가이드 + +이 문서는 `train/` 폴더 내의 학습 스크립트(`train_xgboost.py`, `train_lightgbm.py`)의 구조와 실행 과정을 설명합니다. + +## 1. 실행 구조 및 파라미터 + +학습 스크립트는 명령행 인자(CLI Arguments)를 통해 제어됩니다. + +### 실행 예시 +```bash +python3 train/train_xgboost.py \ + --workingDir ./output/xgboost \ + --dataDir ./datas \ + --trainSize 1000 \ + --validSize 200 +``` + +### 파라미터 상세 +- `--workingDir`: 학습 결과물(`model.pkl`, `validate.json` 등)이 저장될 경로입니다. +- `--dataDir`: 정답 데이터(`measure.csv`)가 위치한 경로입니다. +- `--trainSize`: 전체 데이터셋 중 학습에 사용할 샘플 수입니다. +- `--validSize`: 학습에 참여하지 않고 모델 평가(검증)에만 사용할 샘플 수입니다. + +## 2. 데이터 처리 및 학습 파이프라인 + +스크립트 내부의 `train_model` 함수는 다음 순서로 동작합니다. + +### A. 데이터 로드 및 매칭 +1. `workingDir`에서 `features.json`(전처리된 피처)을 읽어옵니다. +2. `dataDir`에서 `measure.csv`(정답 난이도)를 읽어옵니다. +3. `(songno, difficulty)`를 키로 사용하여 두 데이터를 매칭하고 하나의 데이터셋으로 결합합니다. + +### B. 데이터셋 분리 (Train/Valid Split) +1. 결합된 데이터셋을 `RANDOM_STATE(42)`를 기반으로 무작위로 섞습니다(Shuffle). +2. 앞에서부터 `TRAIN_SIZE` 만큼을 학습 데이터로, 그 뒤의 `VALID_SIZE` 만큼을 검증 데이터로 엄격히 분리하여 모델의 일반화 성능을 보장합니다. + +### C. 정규화 (Scaling) +1. `StandardScaler`를 사용하여 피처의 평균을 0, 분산을 1로 조정합니다. +2. `CONTINUE_TRAINING` 옵션이 켜져 있고 기존 `scaler.pkl`이 있다면 이를 로드하여 일관성을 유지합니다. + +### D. 모델 학습 및 지속 학습 (Warm Start) +1. 모델 객체를 생성하거나, 기존 `model.pkl`이 있다면 이를 로드합니다. +2. 기존 모델이 있는 경우 이전 학습 상태를 유지한 채 새로운 데이터로 가중치를 미세 조정(Fine-tuning)합니다. + +## 3. 검증 및 결과 시각화 + +학습 완료 직후, 모델이 학습 중에 보지 못한 검증 데이터셋(`X_valid`)을 사용하여 성능을 평가합니다. + +1. **지표 계산**: MAE(Mean Absolute Error)와 오차 범위 ±0.1 이내의 정확도를 산출합니다. +2. **validate.json 저장**: 검증된 각 곡의 실제값, 예측값, 오차를 에러 절댓값 내림차순으로 저장합니다. +3. **validate.png 생성**: 에러의 분포를 한눈에 볼 수 있도록 산점도 그래프를 생성합니다. (X축: 에러 크기 순, Y축: 에러 절댓값) + +## 4. 주요 산출물 (Outputs) + +학습이 성공하면 `workingDir` 폴더에 다음 파일들이 생성/업데이트됩니다. + +| 파일명 | 내용 | +| :--- | :--- | +| `model.pkl` | 학습된 모델 바이너리 | +| `scaler.pkl` | 피처 정규화를 위한 Scaler 객체 | +| `features.txt` | 학습에 사용된 피처 이름 목록 및 순서 | +| `validate.json` | 검증 데이터셋에 대한 상세 예측 결과 (JSON) | +| `validate.png` | 검증 에러 분포 시각화 그래프 (PNG) | + +## 5. 주의사항 +- `features.json`이 먼저 생성되어 있어야 학습이 가능합니다 (`preprocess.ts` 선행 필요). +- `TRAIN_SIZE + VALID_SIZE`가 전체 가용 데이터 수보다 크면 오류가 발생합니다. diff --git a/output/lightgbm/compare.json b/output/lightgbm/compare.json deleted file mode 100644 index 72c8fec..0000000 --- a/output/lightgbm/compare.json +++ /dev/null @@ -1,9824 +0,0 @@ -{ - "summary": { - "total_compared": 1402, - "average_absolute_error": 0.2209804564907278, - "timestamp": "2026-04-25T05:04:52.416Z", - "script_used": "predict/predict_lightgbm.py" - }, - "details": [ - { - "songno": "43", - "diff": "oni", - "actual": 8.1, - "predicted": 4.8798, - "error": 3.2201999999999993 - }, - { - "songno": "506", - "diff": "ura", - "actual": 7.5, - "predicted": 4.445, - "error": 3.0549999999999997 - }, - { - "songno": "831", - "diff": "ura", - "actual": 9.5, - "predicted": 6.7235, - "error": 2.7765000000000004 - }, - { - "songno": "719", - "diff": "oni", - "actual": 9.9, - "predicted": 7.3567, - "error": 2.5433000000000003 - }, - { - "songno": "1382", - "diff": "ura", - "actual": 7.6, - "predicted": 5.2197, - "error": 2.3803 - }, - { - "songno": "1214", - "diff": "oni", - "actual": 6, - "predicted": 8.3393, - "error": 2.3392999999999997 - }, - { - "songno": "935", - "diff": "oni", - "actual": 9.5, - "predicted": 7.2974, - "error": 2.2026000000000003 - }, - { - "songno": "1375", - "diff": "oni", - "actual": 1.1, - "predicted": 3.2193, - "error": 2.1193 - }, - { - "songno": "1394", - "diff": "oni", - "actual": 10.3, - "predicted": 8.2169, - "error": 2.0831 - }, - { - "songno": "1185", - "diff": "oni", - "actual": 10.5, - "predicted": 8.5389, - "error": 1.9611 - }, - { - "songno": "503", - "diff": "oni", - "actual": 11.3, - "predicted": 9.3965, - "error": 1.903500000000001 - }, - { - "songno": "967", - "diff": "oni", - "actual": 8.8, - "predicted": 6.9016, - "error": 1.8984000000000005 - }, - { - "songno": "1199", - "diff": "oni", - "actual": 4.3, - "predicted": 2.4051, - "error": 1.8948999999999998 - }, - { - "songno": "1090", - "diff": "oni", - "actual": 4.2, - "predicted": 2.3289, - "error": 1.8711000000000002 - }, - { - "songno": "1138", - "diff": "oni", - "actual": 4.1, - "predicted": 5.9044, - "error": 1.8044000000000002 - }, - { - "songno": "663", - "diff": "oni", - "actual": 4.1, - "predicted": 5.8735, - "error": 1.7735000000000003 - }, - { - "songno": "762", - "diff": "oni", - "actual": 10.3, - "predicted": 8.5287, - "error": 1.7713 - }, - { - "songno": "405", - "diff": "oni", - "actual": 3.1, - "predicted": 4.8485, - "error": 1.7484999999999995 - }, - { - "songno": "48", - "diff": "ura", - "actual": 9.2, - "predicted": 7.4876, - "error": 1.7123999999999997 - }, - { - "songno": "117", - "diff": "oni", - "actual": 8, - "predicted": 6.3078, - "error": 1.6921999999999997 - }, - { - "songno": "101", - "diff": "oni", - "actual": 1.4, - "predicted": 3.0673, - "error": 1.6673 - }, - { - "songno": "1118", - "diff": "oni", - "actual": 1.2, - "predicted": 2.8644, - "error": 1.6643999999999999 - }, - { - "songno": "1349", - "diff": "oni", - "actual": 6.3, - "predicted": 4.6405, - "error": 1.6594999999999995 - }, - { - "songno": "144", - "diff": "oni", - "actual": 2.5, - "predicted": 4.1334, - "error": 1.6334 - }, - { - "songno": "1134", - "diff": "oni", - "actual": 9.6, - "predicted": 7.9673, - "error": 1.6326999999999998 - }, - { - "songno": "465", - "diff": "oni", - "actual": 6.9, - "predicted": 8.5207, - "error": 1.6206999999999994 - }, - { - "songno": "1382", - "diff": "oni", - "actual": 3.2, - "predicted": 1.581, - "error": 1.6190000000000002 - }, - { - "songno": "259", - "diff": "oni", - "actual": 6.6, - "predicted": 8.1495, - "error": 1.5495 - }, - { - "songno": "673", - "diff": "oni", - "actual": 8.9, - "predicted": 7.3605, - "error": 1.5395000000000003 - }, - { - "songno": "654", - "diff": "oni", - "actual": 4.5, - "predicted": 6.0395, - "error": 1.5395000000000003 - }, - { - "songno": "1303", - "diff": "oni", - "actual": 4.3, - "predicted": 2.7824, - "error": 1.5175999999999998 - }, - { - "songno": "316", - "diff": "oni", - "actual": 7.1, - "predicted": 5.593, - "error": 1.5069999999999997 - }, - { - "songno": "578", - "diff": "oni", - "actual": 6.5, - "predicted": 5.0034, - "error": 1.4966 - }, - { - "songno": "92", - "diff": "oni", - "actual": 2.4, - "predicted": 3.8811, - "error": 1.4811 - }, - { - "songno": "205", - "diff": "oni", - "actual": 3, - "predicted": 4.4192, - "error": 1.4192 - }, - { - "songno": "42", - "diff": "oni", - "actual": 1.1, - "predicted": 2.4733, - "error": 1.3733 - }, - { - "songno": "1282", - "diff": "oni", - "actual": 3.8, - "predicted": 2.4446, - "error": 1.3554 - }, - { - "songno": "88", - "diff": "oni", - "actual": 8.1, - "predicted": 6.7654, - "error": 1.3346 - }, - { - "songno": "739", - "diff": "oni", - "actual": 7.1, - "predicted": 8.4253, - "error": 1.3253000000000004 - }, - { - "songno": "1010", - "diff": "oni", - "actual": 4.8, - "predicted": 6.1145, - "error": 1.3144999999999998 - }, - { - "songno": "365", - "diff": "oni", - "actual": 10, - "predicted": 8.726, - "error": 1.2739999999999991 - }, - { - "songno": "487", - "diff": "oni", - "actual": 3.5, - "predicted": 4.7707, - "error": 1.2706999999999997 - }, - { - "songno": "976", - "diff": "oni", - "actual": 8.7, - "predicted": 7.4379, - "error": 1.2620999999999993 - }, - { - "songno": "1245", - "diff": "oni", - "actual": 8.4, - "predicted": 7.1584, - "error": 1.2416 - }, - { - "songno": "1254", - "diff": "oni", - "actual": 5.9, - "predicted": 4.6614, - "error": 1.2386 - }, - { - "songno": "1412", - "diff": "oni", - "actual": 6.2, - "predicted": 7.415, - "error": 1.2149999999999999 - }, - { - "songno": "222", - "diff": "oni", - "actual": 4.4, - "predicted": 5.6081, - "error": 1.2081 - }, - { - "songno": "1163", - "diff": "oni", - "actual": 8.3, - "predicted": 7.1025, - "error": 1.1975000000000007 - }, - { - "songno": "1037", - "diff": "oni", - "actual": 9.2, - "predicted": 10.3854, - "error": 1.1854000000000013 - }, - { - "songno": "1391", - "diff": "ura", - "actual": 10.2, - "predicted": 11.3825, - "error": 1.182500000000001 - }, - { - "songno": "377", - "diff": "oni", - "actual": 4.3, - "predicted": 3.122, - "error": 1.178 - }, - { - "songno": "100", - "diff": "oni", - "actual": 5.3, - "predicted": 6.4691, - "error": 1.1691000000000003 - }, - { - "songno": "36", - "diff": "oni", - "actual": 1.6, - "predicted": 2.7677, - "error": 1.1677 - }, - { - "songno": "1190", - "diff": "oni", - "actual": 5.5, - "predicted": 6.6509, - "error": 1.1509 - }, - { - "songno": "543", - "diff": "oni", - "actual": 5.5, - "predicted": 4.3542, - "error": 1.1458000000000004 - }, - { - "songno": "507", - "diff": "ura", - "actual": 8, - "predicted": 9.1354, - "error": 1.1354000000000006 - }, - { - "songno": "749", - "diff": "oni", - "actual": 7.9, - "predicted": 9.0321, - "error": 1.1320999999999994 - }, - { - "songno": "586", - "diff": "oni", - "actual": 3.3, - "predicted": 4.4216, - "error": 1.1216 - }, - { - "songno": "197", - "diff": "oni", - "actual": 1.7, - "predicted": 2.8112, - "error": 1.1112 - }, - { - "songno": "121", - "diff": "oni", - "actual": 9.3, - "predicted": 8.1925, - "error": 1.1075 - }, - { - "songno": "1305", - "diff": "oni", - "actual": 7.8, - "predicted": 6.694, - "error": 1.1059999999999999 - }, - { - "songno": "601", - "diff": "oni", - "actual": 3.5, - "predicted": 4.5758, - "error": 1.0758 - }, - { - "songno": "928", - "diff": "oni", - "actual": 10.3, - "predicted": 9.2246, - "error": 1.0754000000000001 - }, - { - "songno": "374", - "diff": "oni", - "actual": 5.4, - "predicted": 6.4747, - "error": 1.0747 - }, - { - "songno": "1417", - "diff": "oni", - "actual": 4.2, - "predicted": 3.1298, - "error": 1.0702000000000003 - }, - { - "songno": "824", - "diff": "oni", - "actual": 1.3, - "predicted": 2.3564, - "error": 1.0563999999999998 - }, - { - "songno": "415", - "diff": "oni", - "actual": 1.8, - "predicted": 2.8493, - "error": 1.0493 - }, - { - "songno": "1051", - "diff": "oni", - "actual": 8.7, - "predicted": 9.7382, - "error": 1.0382000000000016 - }, - { - "songno": "252", - "diff": "oni", - "actual": 7.5, - "predicted": 6.4745, - "error": 1.0255 - }, - { - "songno": "368", - "diff": "oni", - "actual": 1.8, - "predicted": 2.8226, - "error": 1.0226 - }, - { - "songno": "111", - "diff": "oni", - "actual": 4.7, - "predicted": 5.7067, - "error": 1.0066999999999995 - }, - { - "songno": "1047", - "diff": "oni", - "actual": 8.7, - "predicted": 7.7091, - "error": 0.990899999999999 - }, - { - "songno": "519", - "diff": "ura", - "actual": 9.4, - "predicted": 10.384, - "error": 0.984 - }, - { - "songno": "182", - "diff": "oni", - "actual": 6.4, - "predicted": 5.4217, - "error": 0.9783 - }, - { - "songno": "164", - "diff": "oni", - "actual": 8, - "predicted": 7.0501, - "error": 0.9499000000000004 - }, - { - "songno": "713", - "diff": "oni", - "actual": 8.3, - "predicted": 7.3597, - "error": 0.9403000000000006 - }, - { - "songno": "1072", - "diff": "oni", - "actual": 9.8, - "predicted": 8.8602, - "error": 0.9398 - }, - { - "songno": "1313", - "diff": "oni", - "actual": 5.3, - "predicted": 6.2364, - "error": 0.9363999999999999 - }, - { - "songno": "1446", - "diff": "oni", - "actual": 8, - "predicted": 7.0648, - "error": 0.9352 - }, - { - "songno": "3", - "diff": "oni", - "actual": 3.6, - "predicted": 2.6655, - "error": 0.9344999999999999 - }, - { - "songno": "1099", - "diff": "oni", - "actual": 11, - "predicted": 10.0709, - "error": 0.9291 - }, - { - "songno": "53", - "diff": "oni", - "actual": 6.4, - "predicted": 7.3167, - "error": 0.9166999999999996 - }, - { - "songno": "407", - "diff": "oni", - "actual": 7.4, - "predicted": 8.3153, - "error": 0.9153000000000002 - }, - { - "songno": "154", - "diff": "oni", - "actual": 7.7, - "predicted": 8.6012, - "error": 0.9012000000000002 - }, - { - "songno": "1137", - "diff": "oni", - "actual": 7.1, - "predicted": 6.2022, - "error": 0.8977999999999993 - }, - { - "songno": "405", - "diff": "ura", - "actual": 6.9, - "predicted": 7.7969, - "error": 0.8968999999999996 - }, - { - "songno": "156", - "diff": "oni", - "actual": 5.8, - "predicted": 6.6964, - "error": 0.8963999999999999 - }, - { - "songno": "1069", - "diff": "oni", - "actual": 8, - "predicted": 7.1106, - "error": 0.8894000000000002 - }, - { - "songno": "711", - "diff": "oni", - "actual": 2, - "predicted": 2.8856, - "error": 0.8856000000000002 - }, - { - "songno": "1452", - "diff": "oni", - "actual": 8.1, - "predicted": 7.2185, - "error": 0.8815 - }, - { - "songno": "1371", - "diff": "ura", - "actual": 9.8, - "predicted": 8.922, - "error": 0.8780000000000001 - }, - { - "songno": "1404", - "diff": "oni", - "actual": 9.5, - "predicted": 8.6225, - "error": 0.8774999999999995 - }, - { - "songno": "1421", - "diff": "oni", - "actual": 8.1, - "predicted": 8.9768, - "error": 0.8768000000000011 - }, - { - "songno": "17", - "diff": "oni", - "actual": 7.3, - "predicted": 6.4235, - "error": 0.8765000000000001 - }, - { - "songno": "1327", - "diff": "oni", - "actual": 3.7, - "predicted": 2.8255, - "error": 0.8745000000000003 - }, - { - "songno": "193", - "diff": "oni", - "actual": 4.4, - "predicted": 5.2729, - "error": 0.8728999999999996 - }, - { - "songno": "305", - "diff": "oni", - "actual": 3.7, - "predicted": 2.8406, - "error": 0.8594000000000004 - }, - { - "songno": "1314", - "diff": "oni", - "actual": 4.4, - "predicted": 3.5447, - "error": 0.8553000000000002 - }, - { - "songno": "550", - "diff": "oni", - "actual": 7.8, - "predicted": 8.655, - "error": 0.8549999999999995 - }, - { - "songno": "281", - "diff": "oni", - "actual": 4.2, - "predicted": 5.0545, - "error": 0.8544999999999998 - }, - { - "songno": "1244", - "diff": "oni", - "actual": 1.6, - "predicted": 2.4388, - "error": 0.8388 - }, - { - "songno": "367", - "diff": "oni", - "actual": 5.8, - "predicted": 6.6377, - "error": 0.8376999999999999 - }, - { - "songno": "1187", - "diff": "oni", - "actual": 1.8, - "predicted": 2.6362, - "error": 0.8362 - }, - { - "songno": "926", - "diff": "ura", - "actual": 5.4, - "predicted": 6.2318, - "error": 0.8317999999999994 - }, - { - "songno": "974", - "diff": "oni", - "actual": 1.5, - "predicted": 2.3289, - "error": 0.8289 - }, - { - "songno": "39", - "diff": "oni", - "actual": 5.6, - "predicted": 6.424, - "error": 0.8240000000000007 - }, - { - "songno": "435", - "diff": "oni", - "actual": 5.7, - "predicted": 4.8842, - "error": 0.8158000000000003 - }, - { - "songno": "676", - "diff": "ura", - "actual": 7.4, - "predicted": 6.5935, - "error": 0.8065000000000007 - }, - { - "songno": "721", - "diff": "ura", - "actual": 11.7, - "predicted": 10.8936, - "error": 0.8064 - }, - { - "songno": "1276", - "diff": "oni", - "actual": 9.2, - "predicted": 8.3975, - "error": 0.8024999999999984 - }, - { - "songno": "1122", - "diff": "oni", - "actual": 7.8, - "predicted": 8.5957, - "error": 0.795700000000001 - }, - { - "songno": "1338", - "diff": "oni", - "actual": 10, - "predicted": 9.2049, - "error": 0.7950999999999997 - }, - { - "songno": "1309", - "diff": "ura", - "actual": 10.5, - "predicted": 9.7054, - "error": 0.7946000000000009 - }, - { - "songno": "818", - "diff": "oni", - "actual": 10.4, - "predicted": 9.6065, - "error": 0.7934999999999999 - }, - { - "songno": "1362", - "diff": "oni", - "actual": 6.1, - "predicted": 6.8838, - "error": 0.7838000000000003 - }, - { - "songno": "1297", - "diff": "oni", - "actual": 9.4, - "predicted": 10.1835, - "error": 0.7835000000000001 - }, - { - "songno": "392", - "diff": "oni", - "actual": 9, - "predicted": 8.217, - "error": 0.7829999999999995 - }, - { - "songno": "1336", - "diff": "oni", - "actual": 2.9, - "predicted": 3.6819, - "error": 0.7819000000000003 - }, - { - "songno": "686", - "diff": "oni", - "actual": 8.7, - "predicted": 7.9226, - "error": 0.7773999999999992 - }, - { - "songno": "34", - "diff": "oni", - "actual": 6.3, - "predicted": 5.5249, - "error": 0.7751000000000001 - }, - { - "songno": "1070", - "diff": "oni", - "actual": 3.5, - "predicted": 4.2729, - "error": 0.7728999999999999 - }, - { - "songno": "1304", - "diff": "ura", - "actual": 8.1, - "predicted": 8.8699, - "error": 0.7698999999999998 - }, - { - "songno": "11", - "diff": "oni", - "actual": 1.5, - "predicted": 2.2691, - "error": 0.7690999999999999 - }, - { - "songno": "1100", - "diff": "oni", - "actual": 3.9, - "predicted": 4.6681, - "error": 0.7681 - }, - { - "songno": "959", - "diff": "ura", - "actual": 10.7, - "predicted": 9.9355, - "error": 0.7645 - }, - { - "songno": "402", - "diff": "oni", - "actual": 6.5, - "predicted": 7.2527, - "error": 0.7526999999999999 - }, - { - "songno": "887", - "diff": "oni", - "actual": 7.2, - "predicted": 6.4478, - "error": 0.7522000000000002 - }, - { - "songno": "747", - "diff": "oni", - "actual": 7.3, - "predicted": 8.0457, - "error": 0.7457000000000003 - }, - { - "songno": "524", - "diff": "oni", - "actual": 8.9, - "predicted": 8.1567, - "error": 0.7432999999999996 - }, - { - "songno": "1157", - "diff": "oni", - "actual": 4.6, - "predicted": 3.8576, - "error": 0.7423999999999995 - }, - { - "songno": "1211", - "diff": "oni", - "actual": 6, - "predicted": 5.2774, - "error": 0.7225999999999999 - }, - { - "songno": "971", - "diff": "oni", - "actual": 10.3, - "predicted": 9.5776, - "error": 0.7224000000000004 - }, - { - "songno": "579", - "diff": "ura", - "actual": 7.2, - "predicted": 6.4781, - "error": 0.7218999999999998 - }, - { - "songno": "811", - "diff": "ura", - "actual": 8.2, - "predicted": 7.4895, - "error": 0.7104999999999997 - }, - { - "songno": "425", - "diff": "ura", - "actual": 8.6, - "predicted": 7.8895, - "error": 0.7104999999999997 - }, - { - "songno": "906", - "diff": "oni", - "actual": 9.1, - "predicted": 8.3898, - "error": 0.7102000000000004 - }, - { - "songno": "449", - "diff": "oni", - "actual": 8.1, - "predicted": 8.8094, - "error": 0.7094000000000005 - }, - { - "songno": "140", - "diff": "oni", - "actual": 3.3, - "predicted": 4.0035, - "error": 0.7035 - }, - { - "songno": "1000", - "diff": "oni", - "actual": 8, - "predicted": 7.3069, - "error": 0.6931000000000003 - }, - { - "songno": "740", - "diff": "oni", - "actual": 8.8, - "predicted": 8.1104, - "error": 0.6896000000000004 - }, - { - "songno": "1397", - "diff": "oni", - "actual": 3.3, - "predicted": 3.9856, - "error": 0.6856 - }, - { - "songno": "751", - "diff": "oni", - "actual": 7.7, - "predicted": 7.0175, - "error": 0.6825000000000001 - }, - { - "songno": "544", - "diff": "oni", - "actual": 5.9, - "predicted": 6.5679, - "error": 0.6678999999999995 - }, - { - "songno": "1228", - "diff": "oni", - "actual": 4.1, - "predicted": 4.7642, - "error": 0.6642000000000001 - }, - { - "songno": "1319", - "diff": "oni", - "actual": 8.8, - "predicted": 9.4637, - "error": 0.6636999999999986 - }, - { - "songno": "1149", - "diff": "oni", - "actual": 3.8, - "predicted": 4.4632, - "error": 0.6631999999999998 - }, - { - "songno": "1150", - "diff": "oni", - "actual": 4.1, - "predicted": 3.4398, - "error": 0.6601999999999997 - }, - { - "songno": "755", - "diff": "oni", - "actual": 6.9, - "predicted": 7.5549, - "error": 0.6548999999999996 - }, - { - "songno": "530", - "diff": "oni", - "actual": 4.7, - "predicted": 4.0463, - "error": 0.6537000000000006 - }, - { - "songno": "641", - "diff": "oni", - "actual": 8.4, - "predicted": 7.7549, - "error": 0.6451000000000002 - }, - { - "songno": "736", - "diff": "ura", - "actual": 9.5, - "predicted": 8.855, - "error": 0.6449999999999996 - }, - { - "songno": "273", - "diff": "oni", - "actual": 3.3, - "predicted": 2.6566, - "error": 0.6433999999999997 - }, - { - "songno": "1333", - "diff": "oni", - "actual": 1.7, - "predicted": 2.3289, - "error": 0.6289 - }, - { - "songno": "1192", - "diff": "oni", - "actual": 5.7, - "predicted": 6.3204, - "error": 0.6204000000000001 - }, - { - "songno": "273", - "diff": "ura", - "actual": 4.9, - "predicted": 5.5195, - "error": 0.6194999999999995 - }, - { - "songno": "1251", - "diff": "oni", - "actual": 4.5, - "predicted": 3.881, - "error": 0.6190000000000002 - }, - { - "songno": "457", - "diff": "oni", - "actual": 6.5, - "predicted": 5.8815, - "error": 0.6185 - }, - { - "songno": "1278", - "diff": "oni", - "actual": 11.7, - "predicted": 11.0843, - "error": 0.6156999999999986 - }, - { - "songno": "1396", - "diff": "oni", - "actual": 4.6, - "predicted": 3.9856, - "error": 0.6143999999999998 - }, - { - "songno": "773", - "diff": "oni", - "actual": 4, - "predicted": 4.6139, - "error": 0.6139000000000001 - }, - { - "songno": "666", - "diff": "oni", - "actual": 6.7, - "predicted": 7.3102, - "error": 0.6101999999999999 - }, - { - "songno": "775", - "diff": "ura", - "actual": 10.6, - "predicted": 9.9898, - "error": 0.610199999999999 - }, - { - "songno": "280", - "diff": "oni", - "actual": 2.5, - "predicted": 3.1083, - "error": 0.6082999999999998 - }, - { - "songno": "1343", - "diff": "oni", - "actual": 1.4, - "predicted": 2.0047, - "error": 0.6047000000000002 - }, - { - "songno": "703", - "diff": "oni", - "actual": 5.1, - "predicted": 5.7044, - "error": 0.6044 - }, - { - "songno": "212", - "diff": "oni", - "actual": 5.7, - "predicted": 5.1087, - "error": 0.5913000000000004 - }, - { - "songno": "1434", - "diff": "oni", - "actual": 9.7, - "predicted": 10.2908, - "error": 0.5908000000000015 - }, - { - "songno": "1062", - "diff": "oni", - "actual": 5, - "predicted": 4.4111, - "error": 0.5888999999999998 - }, - { - "songno": "1237", - "diff": "ura", - "actual": 10.3, - "predicted": 9.7143, - "error": 0.585700000000001 - }, - { - "songno": "298", - "diff": "oni", - "actual": 5.2, - "predicted": 5.7847, - "error": 0.5846999999999998 - }, - { - "songno": "1186", - "diff": "oni", - "actual": 1.9, - "predicted": 1.3169, - "error": 0.5831 - }, - { - "songno": "455", - "diff": "oni", - "actual": 5.7, - "predicted": 6.2822, - "error": 0.5821999999999994 - }, - { - "songno": "1387", - "diff": "ura", - "actual": 7.3, - "predicted": 6.7221, - "error": 0.5778999999999996 - }, - { - "songno": "915", - "diff": "oni", - "actual": 5.7, - "predicted": 5.1295, - "error": 0.5705 - }, - { - "songno": "1456", - "diff": "oni", - "actual": 6.1, - "predicted": 5.5325, - "error": 0.5674999999999999 - }, - { - "songno": "312", - "diff": "oni", - "actual": 1.1, - "predicted": 1.6642, - "error": 0.5641999999999998 - }, - { - "songno": "738", - "diff": "oni", - "actual": 7.9, - "predicted": 7.3438, - "error": 0.5562000000000005 - }, - { - "songno": "1096", - "diff": "oni", - "actual": 5.1, - "predicted": 4.5441, - "error": 0.5558999999999994 - }, - { - "songno": "1232", - "diff": "oni", - "actual": 7.2, - "predicted": 6.6458, - "error": 0.5541999999999998 - }, - { - "songno": "76", - "diff": "ura", - "actual": 7.4, - "predicted": 7.9532, - "error": 0.5531999999999995 - }, - { - "songno": "881", - "diff": "ura", - "actual": 10.1, - "predicted": 9.5492, - "error": 0.5507999999999988 - }, - { - "songno": "118", - "diff": "oni", - "actual": 3, - "predicted": 2.4565, - "error": 0.5434999999999999 - }, - { - "songno": "1412", - "diff": "ura", - "actual": 10, - "predicted": 10.536, - "error": 0.5359999999999996 - }, - { - "songno": "1097", - "diff": "ura", - "actual": 10.1, - "predicted": 9.5644, - "error": 0.5356000000000005 - }, - { - "songno": "604", - "diff": "oni", - "actual": 1, - "predicted": 1.5336, - "error": 0.5336000000000001 - }, - { - "songno": "160", - "diff": "oni", - "actual": 5.3, - "predicted": 5.828, - "error": 0.5280000000000005 - }, - { - "songno": "1303", - "diff": "ura", - "actual": 6.2, - "predicted": 6.727, - "error": 0.5270000000000001 - }, - { - "songno": "536", - "diff": "oni", - "actual": 6.7, - "predicted": 7.2237, - "error": 0.5236999999999998 - }, - { - "songno": "514", - "diff": "oni", - "actual": 7.7, - "predicted": 8.2223, - "error": 0.5223000000000004 - }, - { - "songno": "460", - "diff": "oni", - "actual": 2.7, - "predicted": 3.2207, - "error": 0.5206999999999997 - }, - { - "songno": "1130", - "diff": "oni", - "actual": 5.9, - "predicted": 6.4195, - "error": 0.5194999999999999 - }, - { - "songno": "203", - "diff": "ura", - "actual": 7.6, - "predicted": 7.0851, - "error": 0.5148999999999999 - }, - { - "songno": "947", - "diff": "oni", - "actual": 5.2, - "predicted": 5.7129, - "error": 0.5129000000000001 - }, - { - "songno": "51", - "diff": "oni", - "actual": 3.2, - "predicted": 3.7121, - "error": 0.5120999999999998 - }, - { - "songno": "506", - "diff": "oni", - "actual": 5.6, - "predicted": 5.0908, - "error": 0.5091999999999999 - }, - { - "songno": "221", - "diff": "oni", - "actual": 6.7, - "predicted": 6.1916, - "error": 0.5084 - }, - { - "songno": "152", - "diff": "oni", - "actual": 7.9, - "predicted": 7.4, - "error": 0.5 - }, - { - "songno": "1423", - "diff": "oni", - "actual": 4.7, - "predicted": 4.2073, - "error": 0.49270000000000014 - }, - { - "songno": "798", - "diff": "oni", - "actual": 9.1, - "predicted": 8.61, - "error": 0.4900000000000002 - }, - { - "songno": "90", - "diff": "oni", - "actual": 5.6, - "predicted": 6.0874, - "error": 0.48740000000000006 - }, - { - "songno": "366", - "diff": "oni", - "actual": 1.5, - "predicted": 1.9841, - "error": 0.4841 - }, - { - "songno": "25", - "diff": "oni", - "actual": 1.6, - "predicted": 2.0837, - "error": 0.4836999999999998 - }, - { - "songno": "828", - "diff": "oni", - "actual": 4.1, - "predicted": 4.5818, - "error": 0.48180000000000067 - }, - { - "songno": "1356", - "diff": "oni", - "actual": 9.4, - "predicted": 8.9183, - "error": 0.4817 - }, - { - "songno": "702", - "diff": "oni", - "actual": 10.6, - "predicted": 10.12, - "error": 0.4800000000000004 - }, - { - "songno": "670", - "diff": "oni", - "actual": 8.1, - "predicted": 7.623, - "error": 0.4769999999999994 - }, - { - "songno": "181", - "diff": "ura", - "actual": 10.2, - "predicted": 10.6755, - "error": 0.47550000000000026 - }, - { - "songno": "1324", - "diff": "oni", - "actual": 9.3, - "predicted": 8.8257, - "error": 0.4743000000000013 - }, - { - "songno": "1393", - "diff": "oni", - "actual": 5.2, - "predicted": 4.7273, - "error": 0.47270000000000056 - }, - { - "songno": "196", - "diff": "oni", - "actual": 5.3, - "predicted": 5.7721, - "error": 0.4721000000000002 - }, - { - "songno": "5", - "diff": "oni", - "actual": 8.3, - "predicted": 7.8289, - "error": 0.47110000000000074 - }, - { - "songno": "1024", - "diff": "oni", - "actual": 3.3, - "predicted": 3.7659, - "error": 0.4659 - }, - { - "songno": "1300", - "diff": "oni", - "actual": 2, - "predicted": 2.4655, - "error": 0.4655 - }, - { - "songno": "1077", - "diff": "ura", - "actual": 7.1, - "predicted": 6.6388, - "error": 0.46119999999999983 - }, - { - "songno": "1112", - "diff": "oni", - "actual": 3.8, - "predicted": 4.2605, - "error": 0.4605000000000006 - }, - { - "songno": "398", - "diff": "oni", - "actual": 6.3, - "predicted": 5.8423, - "error": 0.4577 - }, - { - "songno": "1401", - "diff": "oni", - "actual": 7.4, - "predicted": 6.9443, - "error": 0.4557000000000002 - }, - { - "songno": "1411", - "diff": "oni", - "actual": 9.1, - "predicted": 9.5531, - "error": 0.45310000000000095 - }, - { - "songno": "878", - "diff": "oni", - "actual": 9.7, - "predicted": 10.1521, - "error": 0.4521000000000015 - }, - { - "songno": "419", - "diff": "oni", - "actual": 7.6, - "predicted": 7.1538, - "error": 0.44619999999999926 - }, - { - "songno": "1374", - "diff": "oni", - "actual": 1.6, - "predicted": 2.0421, - "error": 0.44209999999999994 - }, - { - "songno": "1344", - "diff": "ura", - "actual": 8, - "predicted": 8.4415, - "error": 0.44149999999999956 - }, - { - "songno": "276", - "diff": "ura", - "actual": 6, - "predicted": 5.5618, - "error": 0.43820000000000014 - }, - { - "songno": "1100", - "diff": "ura", - "actual": 9.6, - "predicted": 10.0368, - "error": 0.43679999999999986 - }, - { - "songno": "492", - "diff": "oni", - "actual": 1.9, - "predicted": 2.3289, - "error": 0.42890000000000006 - }, - { - "songno": "190", - "diff": "oni", - "actual": 7.7, - "predicted": 7.2852, - "error": 0.4148000000000005 - }, - { - "songno": "990", - "diff": "oni", - "actual": 10.9, - "predicted": 10.4852, - "error": 0.4147999999999996 - }, - { - "songno": "745", - "diff": "oni", - "actual": 10.4, - "predicted": 10.8139, - "error": 0.41389999999999993 - }, - { - "songno": "422", - "diff": "oni", - "actual": 3, - "predicted": 3.4118, - "error": 0.41179999999999994 - }, - { - "songno": "151", - "diff": "oni", - "actual": 4.8, - "predicted": 5.2103, - "error": 0.41030000000000033 - }, - { - "songno": "122", - "diff": "oni", - "actual": 1.9, - "predicted": 2.3084, - "error": 0.4083999999999999 - }, - { - "songno": "115", - "diff": "oni", - "actual": 2.3, - "predicted": 2.7053, - "error": 0.4053 - }, - { - "songno": "1392", - "diff": "ura", - "actual": 11.6, - "predicted": 12.0001, - "error": 0.4001000000000001 - }, - { - "songno": "1450", - "diff": "oni", - "actual": 2.9, - "predicted": 3.298, - "error": 0.39800000000000013 - }, - { - "songno": "1352", - "diff": "oni", - "actual": 8, - "predicted": 8.3963, - "error": 0.3963000000000001 - }, - { - "songno": "938", - "diff": "ura", - "actual": 8.5, - "predicted": 8.1046, - "error": 0.3954000000000004 - }, - { - "songno": "782", - "diff": "oni", - "actual": 2.7, - "predicted": 3.0946, - "error": 0.3945999999999996 - }, - { - "songno": "894", - "diff": "oni", - "actual": 1.7, - "predicted": 2.0912, - "error": 0.3912000000000002 - }, - { - "songno": "219", - "diff": "oni", - "actual": 5.1, - "predicted": 4.71, - "error": 0.3899999999999997 - }, - { - "songno": "680", - "diff": "oni", - "actual": 7.9, - "predicted": 8.2883, - "error": 0.3882999999999992 - }, - { - "songno": "961", - "diff": "oni", - "actual": 10.2, - "predicted": 9.8139, - "error": 0.386099999999999 - }, - { - "songno": "1074", - "diff": "oni", - "actual": 3.1, - "predicted": 2.7143, - "error": 0.38569999999999993 - }, - { - "songno": "1053", - "diff": "ura", - "actual": 9.9, - "predicted": 9.5153, - "error": 0.3847000000000005 - }, - { - "songno": "202", - "diff": "ura", - "actual": 9.6, - "predicted": 9.2154, - "error": 0.38459999999999894 - }, - { - "songno": "1358", - "diff": "oni", - "actual": 3.8, - "predicted": 4.1793, - "error": 0.37929999999999975 - }, - { - "songno": "1419", - "diff": "oni", - "actual": 9.8, - "predicted": 10.1772, - "error": 0.3771999999999984 - }, - { - "songno": "1227", - "diff": "ura", - "actual": 12, - "predicted": 11.625, - "error": 0.375 - }, - { - "songno": "681", - "diff": "oni", - "actual": 7, - "predicted": 7.3733, - "error": 0.3733000000000004 - }, - { - "songno": "1197", - "diff": "oni", - "actual": 4.5, - "predicted": 4.8727, - "error": 0.37270000000000003 - }, - { - "songno": "1327", - "diff": "ura", - "actual": 6.4, - "predicted": 6.7723, - "error": 0.3723000000000001 - }, - { - "songno": "551", - "diff": "ura", - "actual": 6.8, - "predicted": 7.1661, - "error": 0.3661000000000003 - }, - { - "songno": "37", - "diff": "oni", - "actual": 5.3, - "predicted": 5.666, - "error": 0.36600000000000055 - }, - { - "songno": "1346", - "diff": "oni", - "actual": 8.8, - "predicted": 8.4349, - "error": 0.3651 - }, - { - "songno": "566", - "diff": "oni", - "actual": 7.6, - "predicted": 7.2409, - "error": 0.35909999999999975 - }, - { - "songno": "942", - "diff": "oni", - "actual": 5.5, - "predicted": 5.1455, - "error": 0.3544999999999998 - }, - { - "songno": "47", - "diff": "oni", - "actual": 5.1, - "predicted": 4.7474, - "error": 0.3525999999999998 - }, - { - "songno": "1298", - "diff": "oni", - "actual": 5.7, - "predicted": 6.0507, - "error": 0.3506999999999998 - }, - { - "songno": "784", - "diff": "oni", - "actual": 9.3, - "predicted": 9.6411, - "error": 0.34109999999999907 - }, - { - "songno": "607", - "diff": "oni", - "actual": 4.8, - "predicted": 4.4611, - "error": 0.33889999999999976 - }, - { - "songno": "1243", - "diff": "oni", - "actual": 1.1, - "predicted": 1.4388, - "error": 0.3388 - }, - { - "songno": "804", - "diff": "ura", - "actual": 9.4, - "predicted": 9.0615, - "error": 0.3384999999999998 - }, - { - "songno": "1045", - "diff": "oni", - "actual": 8, - "predicted": 8.3381, - "error": 0.33810000000000073 - }, - { - "songno": "815", - "diff": "oni", - "actual": 8.9, - "predicted": 9.2374, - "error": 0.3373999999999988 - }, - { - "songno": "133", - "diff": "oni", - "actual": 4.8, - "predicted": 5.1356, - "error": 0.33560000000000034 - }, - { - "songno": "793", - "diff": "ura", - "actual": 6.2, - "predicted": 5.8681, - "error": 0.3319000000000001 - }, - { - "songno": "1135", - "diff": "oni", - "actual": 3, - "predicted": 3.3314, - "error": 0.3313999999999999 - }, - { - "songno": "1341", - "diff": "oni", - "actual": 5.4, - "predicted": 5.0722, - "error": 0.32780000000000076 - }, - { - "songno": "1422", - "diff": "oni", - "actual": 5.6, - "predicted": 5.2786, - "error": 0.3213999999999997 - }, - { - "songno": "1419", - "diff": "ura", - "actual": 11.9, - "predicted": 11.5796, - "error": 0.32040000000000113 - }, - { - "songno": "1081", - "diff": "oni", - "actual": 5.4, - "predicted": 5.7167, - "error": 0.3167 - }, - { - "songno": "951", - "diff": "ura", - "actual": 7.8, - "predicted": 8.1149, - "error": 0.3149000000000006 - }, - { - "songno": "733", - "diff": "oni", - "actual": 3.8, - "predicted": 3.4863, - "error": 0.31369999999999987 - }, - { - "songno": "1133", - "diff": "ura", - "actual": 8.6, - "predicted": 8.2864, - "error": 0.3135999999999992 - }, - { - "songno": "94", - "diff": "oni", - "actual": 9.9, - "predicted": 10.2102, - "error": 0.31020000000000003 - }, - { - "songno": "1095", - "diff": "oni", - "actual": 6.2, - "predicted": 5.89, - "error": 0.3100000000000005 - }, - { - "songno": "9", - "diff": "oni", - "actual": 2, - "predicted": 2.3065, - "error": 0.3065000000000002 - }, - { - "songno": "512", - "diff": "oni", - "actual": 3.4, - "predicted": 3.7042, - "error": 0.30420000000000025 - }, - { - "songno": "1023", - "diff": "oni", - "actual": 3.4, - "predicted": 3.6979, - "error": 0.2979000000000003 - }, - { - "songno": "945", - "diff": "oni", - "actual": 5, - "predicted": 4.7078, - "error": 0.29220000000000024 - }, - { - "songno": "1328", - "diff": "oni", - "actual": 9.9, - "predicted": 10.1903, - "error": 0.2903000000000002 - }, - { - "songno": "1086", - "diff": "oni", - "actual": 10.6, - "predicted": 10.3098, - "error": 0.29020000000000046 - }, - { - "songno": "136", - "diff": "oni", - "actual": 9.1, - "predicted": 9.389, - "error": 0.2889999999999997 - }, - { - "songno": "134", - "diff": "oni", - "actual": 6.4, - "predicted": 6.6886, - "error": 0.28859999999999975 - }, - { - "songno": "220", - "diff": "oni", - "actual": 9.3, - "predicted": 9.0115, - "error": 0.28850000000000087 - }, - { - "songno": "1083", - "diff": "oni", - "actual": 7.5, - "predicted": 7.2132, - "error": 0.2868000000000004 - }, - { - "songno": "1049", - "diff": "oni", - "actual": 9.5, - "predicted": 9.7855, - "error": 0.28550000000000075 - }, - { - "songno": "459", - "diff": "oni", - "actual": 5.6, - "predicted": 5.3162, - "error": 0.2837999999999994 - }, - { - "songno": "1054", - "diff": "oni", - "actual": 3.9, - "predicted": 4.1829, - "error": 0.28290000000000015 - }, - { - "songno": "461", - "diff": "oni", - "actual": 7.1, - "predicted": 7.3822, - "error": 0.28220000000000045 - }, - { - "songno": "804", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4182, - "error": 0.2818000000000005 - }, - { - "songno": "1014", - "diff": "oni", - "actual": 5.3, - "predicted": 5.0189, - "error": 0.28109999999999946 - }, - { - "songno": "905", - "diff": "oni", - "actual": 10.1, - "predicted": 10.3767, - "error": 0.27669999999999995 - }, - { - "songno": "611", - "diff": "oni", - "actual": 3.8, - "predicted": 4.0752, - "error": 0.2751999999999999 - }, - { - "songno": "44", - "diff": "oni", - "actual": 3.4, - "predicted": 3.6752, - "error": 0.2751999999999999 - }, - { - "songno": "515", - "diff": "oni", - "actual": 3.5, - "predicted": 3.7731, - "error": 0.2730999999999999 - }, - { - "songno": "1084", - "diff": "oni", - "actual": 2.6, - "predicted": 2.8725, - "error": 0.27249999999999996 - }, - { - "songno": "954", - "diff": "ura", - "actual": 11.8, - "predicted": 11.5295, - "error": 0.2705000000000002 - }, - { - "songno": "1003", - "diff": "oni", - "actual": 5.1, - "predicted": 4.8332, - "error": 0.2667999999999999 - }, - { - "songno": "1085", - "diff": "oni", - "actual": 10, - "predicted": 9.7336, - "error": 0.26640000000000086 - }, - { - "songno": "795", - "diff": "oni", - "actual": 2.6, - "predicted": 2.8648, - "error": 0.2647999999999997 - }, - { - "songno": "849", - "diff": "oni", - "actual": 11.9, - "predicted": 11.6355, - "error": 0.26449999999999996 - }, - { - "songno": "1116", - "diff": "ura", - "actual": 7.8, - "predicted": 7.5367, - "error": 0.2633000000000001 - }, - { - "songno": "427", - "diff": "oni", - "actual": 9.1, - "predicted": 8.8388, - "error": 0.26119999999999877 - }, - { - "songno": "333", - "diff": "oni", - "actual": 1.1, - "predicted": 1.361, - "error": 0.2609999999999999 - }, - { - "songno": "811", - "diff": "oni", - "actual": 1, - "predicted": 1.26, - "error": 0.26 - }, - { - "songno": "1376", - "diff": "oni", - "actual": 1.9, - "predicted": 1.6456, - "error": 0.25439999999999996 - }, - { - "songno": "1225", - "diff": "ura", - "actual": 6.5, - "predicted": 6.754, - "error": 0.25399999999999956 - }, - { - "songno": "1250", - "diff": "oni", - "actual": 6, - "predicted": 6.2536, - "error": 0.2535999999999996 - }, - { - "songno": "309", - "diff": "oni", - "actual": 6.6, - "predicted": 6.3468, - "error": 0.25319999999999965 - }, - { - "songno": "142", - "diff": "oni", - "actual": 3, - "predicted": 2.7491, - "error": 0.2509000000000001 - }, - { - "songno": "89", - "diff": "oni", - "actual": 7.6, - "predicted": 7.3514, - "error": 0.2485999999999997 - }, - { - "songno": "570", - "diff": "oni", - "actual": 9, - "predicted": 9.2461, - "error": 0.2461000000000002 - }, - { - "songno": "203", - "diff": "oni", - "actual": 4.4, - "predicted": 4.155, - "error": 0.2450000000000001 - }, - { - "songno": "161", - "diff": "oni", - "actual": 3, - "predicted": 3.2442, - "error": 0.2442000000000002 - }, - { - "songno": "1227", - "diff": "oni", - "actual": 10.8, - "predicted": 10.5572, - "error": 0.2428000000000008 - }, - { - "songno": "921", - "diff": "oni", - "actual": 2.8, - "predicted": 2.5575, - "error": 0.24249999999999972 - }, - { - "songno": "1332", - "diff": "oni", - "actual": 1.5, - "predicted": 1.7423, - "error": 0.24229999999999996 - }, - { - "songno": "1105", - "diff": "oni", - "actual": 5.5, - "predicted": 5.2594, - "error": 0.2405999999999997 - }, - { - "songno": "138", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4613, - "error": 0.23870000000000058 - }, - { - "songno": "911", - "diff": "ura", - "actual": 7.1, - "predicted": 7.3372, - "error": 0.23720000000000052 - }, - { - "songno": "720", - "diff": "oni", - "actual": 9.6, - "predicted": 9.3661, - "error": 0.23390000000000022 - }, - { - "songno": "1055", - "diff": "oni", - "actual": 1.8, - "predicted": 2.0338, - "error": 0.23379999999999979 - }, - { - "songno": "623", - "diff": "oni", - "actual": 5, - "predicted": 4.7677, - "error": 0.2323000000000004 - }, - { - "songno": "146", - "diff": "oni", - "actual": 4.1, - "predicted": 4.3321, - "error": 0.23209999999999997 - }, - { - "songno": "1230", - "diff": "oni", - "actual": 3.4, - "predicted": 3.1695, - "error": 0.2304999999999997 - }, - { - "songno": "76", - "diff": "oni", - "actual": 3.5, - "predicted": 3.7304, - "error": 0.23039999999999994 - }, - { - "songno": "1026", - "diff": "oni", - "actual": 4.1, - "predicted": 3.8703, - "error": 0.2296999999999998 - }, - { - "songno": "1110", - "diff": "oni", - "actual": 1.7, - "predicted": 1.473, - "error": 0.22699999999999987 - }, - { - "songno": "1058", - "diff": "oni", - "actual": 6.4, - "predicted": 6.1749, - "error": 0.2251000000000003 - }, - { - "songno": "270", - "diff": "oni", - "actual": 6.9, - "predicted": 6.6758, - "error": 0.22420000000000062 - }, - { - "songno": "1212", - "diff": "oni", - "actual": 1.4, - "predicted": 1.6238, - "error": 0.2238 - }, - { - "songno": "801", - "diff": "oni", - "actual": 4.6, - "predicted": 4.3767, - "error": 0.22330000000000005 - }, - { - "songno": "699", - "diff": "oni", - "actual": 9.7, - "predicted": 9.923, - "error": 0.22300000000000075 - }, - { - "songno": "1390", - "diff": "ura", - "actual": 7.7, - "predicted": 7.4773, - "error": 0.22270000000000056 - }, - { - "songno": "960", - "diff": "ura", - "actual": 11.8, - "predicted": 11.5784, - "error": 0.22160000000000046 - }, - { - "songno": "790", - "diff": "oni", - "actual": 2.5, - "predicted": 2.7216, - "error": 0.22160000000000002 - }, - { - "songno": "1395", - "diff": "oni", - "actual": 9, - "predicted": 8.7789, - "error": 0.22109999999999985 - }, - { - "songno": "661", - "diff": "oni", - "actual": 2.9, - "predicted": 3.1162, - "error": 0.21620000000000017 - }, - { - "songno": "946", - "diff": "oni", - "actual": 3.4, - "predicted": 3.1848, - "error": 0.21519999999999984 - }, - { - "songno": "571", - "diff": "oni", - "actual": 9.1, - "predicted": 8.8857, - "error": 0.2142999999999997 - }, - { - "songno": "572", - "diff": "oni", - "actual": 8.3, - "predicted": 8.5142, - "error": 0.21419999999999995 - }, - { - "songno": "466", - "diff": "oni", - "actual": 3, - "predicted": 3.2138, - "error": 0.2138 - }, - { - "songno": "701", - "diff": "oni", - "actual": 6.6, - "predicted": 6.3868, - "error": 0.2131999999999996 - }, - { - "songno": "358", - "diff": "oni", - "actual": 7.5, - "predicted": 7.2883, - "error": 0.21170000000000044 - }, - { - "songno": "67", - "diff": "oni", - "actual": 7.6, - "predicted": 7.3886, - "error": 0.21139999999999937 - }, - { - "songno": "1256", - "diff": "oni", - "actual": 6.2, - "predicted": 5.989, - "error": 0.2110000000000003 - }, - { - "songno": "60", - "diff": "ura", - "actual": 8.8, - "predicted": 8.589, - "error": 0.2110000000000003 - }, - { - "songno": "781", - "diff": "oni", - "actual": 10.1, - "predicted": 10.3104, - "error": 0.21039999999999992 - }, - { - "songno": "418", - "diff": "oni", - "actual": 8.2, - "predicted": 8.4103, - "error": 0.21030000000000015 - }, - { - "songno": "243", - "diff": "oni", - "actual": 11, - "predicted": 10.7919, - "error": 0.20809999999999995 - }, - { - "songno": "275", - "diff": "oni", - "actual": 3.5, - "predicted": 3.2992, - "error": 0.2008000000000001 - }, - { - "songno": "952", - "diff": "oni", - "actual": 10, - "predicted": 9.7998, - "error": 0.2002000000000006 - }, - { - "songno": "855", - "diff": "oni", - "actual": 5.7, - "predicted": 5.8986, - "error": 0.1985999999999999 - }, - { - "songno": "239", - "diff": "oni", - "actual": 7.6, - "predicted": 7.7982, - "error": 0.19819999999999993 - }, - { - "songno": "558", - "diff": "oni", - "actual": 8.5, - "predicted": 8.3027, - "error": 0.19730000000000025 - }, - { - "songno": "2", - "diff": "oni", - "actual": 2.7, - "predicted": 2.8972, - "error": 0.19720000000000004 - }, - { - "songno": "741", - "diff": "oni", - "actual": 3.5, - "predicted": 3.6971, - "error": 0.19709999999999983 - }, - { - "songno": "1241", - "diff": "oni", - "actual": 5, - "predicted": 5.1958, - "error": 0.1958000000000002 - }, - { - "songno": "1233", - "diff": "oni", - "actual": 4.1, - "predicted": 3.9042, - "error": 0.19579999999999975 - }, - { - "songno": "1204", - "diff": "oni", - "actual": 3.1, - "predicted": 3.294, - "error": 0.19399999999999995 - }, - { - "songno": "1201", - "diff": "oni", - "actual": 1.9, - "predicted": 2.0925, - "error": 0.1924999999999999 - }, - { - "songno": "886", - "diff": "oni", - "actual": 1.9, - "predicted": 2.0921, - "error": 0.19209999999999994 - }, - { - "songno": "1215", - "diff": "ura", - "actual": 11.2, - "predicted": 11.3917, - "error": 0.19170000000000087 - }, - { - "songno": "618", - "diff": "oni", - "actual": 5, - "predicted": 4.8084, - "error": 0.19160000000000021 - }, - { - "songno": "299", - "diff": "oni", - "actual": 3.4, - "predicted": 3.2094, - "error": 0.19059999999999988 - }, - { - "songno": "300", - "diff": "oni", - "actual": 4, - "predicted": 4.1905, - "error": 0.1905000000000001 - }, - { - "songno": "808", - "diff": "oni", - "actual": 6.2, - "predicted": 6.01, - "error": 0.1900000000000004 - }, - { - "songno": "339", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6106, - "error": 0.1894 - }, - { - "songno": "932", - "diff": "oni", - "actual": 7.5, - "predicted": 7.3124, - "error": 0.18759999999999977 - }, - { - "songno": "856", - "diff": "ura", - "actual": 11.3, - "predicted": 11.1125, - "error": 0.1875 - }, - { - "songno": "1450", - "diff": "ura", - "actual": 7, - "predicted": 7.1871, - "error": 0.18710000000000004 - }, - { - "songno": "1252", - "diff": "oni", - "actual": 4.9, - "predicted": 4.7132, - "error": 0.18680000000000074 - }, - { - "songno": "1386", - "diff": "oni", - "actual": 5.4, - "predicted": 5.2136, - "error": 0.1864000000000008 - }, - { - "songno": "1283", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3859, - "error": 0.18589999999999973 - }, - { - "songno": "956", - "diff": "oni", - "actual": 2.1, - "predicted": 2.2849, - "error": 0.18489999999999984 - }, - { - "songno": "1385", - "diff": "oni", - "actual": 3.2, - "predicted": 3.0152, - "error": 0.18480000000000008 - }, - { - "songno": "580", - "diff": "ura", - "actual": 6.9, - "predicted": 7.0848, - "error": 0.18480000000000008 - }, - { - "songno": "913", - "diff": "oni", - "actual": 2.1, - "predicted": 2.2842, - "error": 0.1841999999999997 - }, - { - "songno": "1082", - "diff": "ura", - "actual": 6.5, - "predicted": 6.3174, - "error": 0.18259999999999987 - }, - { - "songno": "765", - "diff": "oni", - "actual": 11.9, - "predicted": 11.7179, - "error": 0.18210000000000015 - }, - { - "songno": "16", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4819, - "error": 0.18189999999999884 - }, - { - "songno": "109", - "diff": "oni", - "actual": 4.6, - "predicted": 4.7809, - "error": 0.18090000000000028 - }, - { - "songno": "1451", - "diff": "oni", - "actual": 5.1, - "predicted": 4.9193, - "error": 0.18069999999999986 - }, - { - "songno": "833", - "diff": "oni", - "actual": 9.6, - "predicted": 9.7793, - "error": 0.17929999999999957 - }, - { - "songno": "1066", - "diff": "oni", - "actual": 11, - "predicted": 11.1772, - "error": 0.17719999999999914 - }, - { - "songno": "989", - "diff": "oni", - "actual": 6.4, - "predicted": 6.5732, - "error": 0.17319999999999958 - }, - { - "songno": "469", - "diff": "oni", - "actual": 4.5, - "predicted": 4.6719, - "error": 0.17189999999999994 - }, - { - "songno": "735", - "diff": "oni", - "actual": 6.4, - "predicted": 6.2285, - "error": 0.17149999999999999 - }, - { - "songno": "1160", - "diff": "oni", - "actual": 6.3, - "predicted": 6.4713, - "error": 0.17130000000000045 - }, - { - "songno": "1420", - "diff": "oni", - "actual": 3.7, - "predicted": 3.87, - "error": 0.16999999999999993 - }, - { - "songno": "1188", - "diff": "oni", - "actual": 3.9, - "predicted": 3.7306, - "error": 0.1694 - }, - { - "songno": "969", - "diff": "oni", - "actual": 5.6, - "predicted": 5.4306, - "error": 0.16939999999999955 - }, - { - "songno": "831", - "diff": "oni", - "actual": 1.2, - "predicted": 1.3692, - "error": 0.16920000000000002 - }, - { - "songno": "208", - "diff": "oni", - "actual": 4.5, - "predicted": 4.3308, - "error": 0.16920000000000002 - }, - { - "songno": "1310", - "diff": "ura", - "actual": 11.1, - "predicted": 11.268, - "error": 0.16800000000000104 - }, - { - "songno": "580", - "diff": "oni", - "actual": 3.6, - "predicted": 3.768, - "error": 0.1679999999999997 - }, - { - "songno": "575", - "diff": "oni", - "actual": 9.8, - "predicted": 9.6321, - "error": 0.16790000000000127 - }, - { - "songno": "668", - "diff": "oni", - "actual": 3.4, - "predicted": 3.5677, - "error": 0.16769999999999996 - }, - { - "songno": "384", - "diff": "oni", - "actual": 2.1, - "predicted": 2.267, - "error": 0.16699999999999982 - }, - { - "songno": "285", - "diff": "oni", - "actual": 4.3, - "predicted": 4.1339, - "error": 0.16610000000000014 - }, - { - "songno": "1011", - "diff": "oni", - "actual": 5.8, - "predicted": 5.9659, - "error": 0.1659000000000006 - }, - { - "songno": "21", - "diff": "oni", - "actual": 8.1, - "predicted": 8.2658, - "error": 0.16580000000000084 - }, - { - "songno": "1205", - "diff": "oni", - "actual": 6.1, - "predicted": 5.9356, - "error": 0.16439999999999966 - }, - { - "songno": "260", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6368, - "error": 0.16320000000000157 - }, - { - "songno": "482", - "diff": "oni", - "actual": 1.8, - "predicted": 1.637, - "error": 0.16300000000000003 - }, - { - "songno": "404", - "diff": "oni", - "actual": 8.5, - "predicted": 8.3385, - "error": 0.1615000000000002 - }, - { - "songno": "1378", - "diff": "oni", - "actual": 7.1, - "predicted": 7.2615, - "error": 0.1615000000000002 - }, - { - "songno": "178", - "diff": "ura", - "actual": 8.7, - "predicted": 8.5389, - "error": 0.16109999999999935 - }, - { - "songno": "1040", - "diff": "oni", - "actual": 11.6, - "predicted": 11.4396, - "error": 0.1603999999999992 - }, - { - "songno": "613", - "diff": "oni", - "actual": 3, - "predicted": 3.1594, - "error": 0.1594000000000002 - }, - { - "songno": "1048", - "diff": "ura", - "actual": 11.6, - "predicted": 11.7594, - "error": 0.15939999999999976 - }, - { - "songno": "430", - "diff": "oni", - "actual": 1.5, - "predicted": 1.3407, - "error": 0.1593 - }, - { - "songno": "462", - "diff": "oni", - "actual": 7.3, - "predicted": 7.141, - "error": 0.1589999999999998 - }, - { - "songno": "850", - "diff": "oni", - "actual": 10.7, - "predicted": 10.5416, - "error": 0.15839999999999854 - }, - { - "songno": "861", - "diff": "oni", - "actual": 4.2, - "predicted": 4.0426, - "error": 0.15739999999999998 - }, - { - "songno": "1061", - "diff": "oni", - "actual": 3.9, - "predicted": 3.7427, - "error": 0.15729999999999977 - }, - { - "songno": "1301", - "diff": "oni", - "actual": 2, - "predicted": 1.8428, - "error": 0.1572 - }, - { - "songno": "343", - "diff": "oni", - "actual": 6.4, - "predicted": 6.2435, - "error": 0.1565000000000003 - }, - { - "songno": "157", - "diff": "oni", - "actual": 3.3, - "predicted": 3.4561, - "error": 0.15610000000000035 - }, - { - "songno": "14", - "diff": "oni", - "actual": 3.7, - "predicted": 3.544, - "error": 0.15600000000000014 - }, - { - "songno": "1281", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3553, - "error": 0.1553 - }, - { - "songno": "1319", - "diff": "ura", - "actual": 11.5, - "predicted": 11.6537, - "error": 0.15370000000000061 - }, - { - "songno": "823", - "diff": "oni", - "actual": 5.8, - "predicted": 5.9531, - "error": 0.15310000000000024 - }, - { - "songno": "689", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4526, - "error": 0.1526000000000005 - }, - { - "songno": "694", - "diff": "oni", - "actual": 3.5, - "predicted": 3.3474, - "error": 0.15260000000000007 - }, - { - "songno": "35", - "diff": "oni", - "actual": 3.1, - "predicted": 2.9479, - "error": 0.1520999999999999 - }, - { - "songno": "468", - "diff": "oni", - "actual": 2.7, - "predicted": 2.852, - "error": 0.1519999999999997 - }, - { - "songno": "594", - "diff": "oni", - "actual": 9.7, - "predicted": 9.548, - "error": 0.15199999999999925 - }, - { - "songno": "262", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6482, - "error": 0.1517999999999997 - }, - { - "songno": "753", - "diff": "oni", - "actual": 5.3, - "predicted": 5.4512, - "error": 0.15120000000000022 - }, - { - "songno": "198", - "diff": "oni", - "actual": 2.4, - "predicted": 2.5478, - "error": 0.14780000000000015 - }, - { - "songno": "896", - "diff": "oni", - "actual": 11.1, - "predicted": 10.9526, - "error": 0.1473999999999993 - }, - { - "songno": "799", - "diff": "oni", - "actual": 5.7, - "predicted": 5.5531, - "error": 0.14690000000000047 - }, - { - "songno": "629", - "diff": "oni", - "actual": 7.3, - "predicted": 7.1531, - "error": 0.1468999999999996 - }, - { - "songno": "473", - "diff": "oni", - "actual": 5.4, - "predicted": 5.5467, - "error": 0.14670000000000005 - }, - { - "songno": "715", - "diff": "oni", - "actual": 8.4, - "predicted": 8.2546, - "error": 0.14540000000000042 - }, - { - "songno": "132", - "diff": "oni", - "actual": 4, - "predicted": 4.1453, - "error": 0.14529999999999976 - }, - { - "songno": "411", - "diff": "oni", - "actual": 4.8, - "predicted": 4.6548, - "error": 0.1452 - }, - { - "songno": "938", - "diff": "oni", - "actual": 5.3, - "predicted": 5.4452, - "error": 0.1452 - }, - { - "songno": "1029", - "diff": "oni", - "actual": 1.6, - "predicted": 1.4567, - "error": 0.14329999999999998 - }, - { - "songno": "1152", - "diff": "oni", - "actual": 4.2, - "predicted": 4.3429, - "error": 0.14290000000000003 - }, - { - "songno": "1408", - "diff": "oni", - "actual": 4.5, - "predicted": 4.6425, - "error": 0.14250000000000007 - }, - { - "songno": "652", - "diff": "ura", - "actual": 5.5, - "predicted": 5.6415, - "error": 0.14149999999999974 - }, - { - "songno": "59", - "diff": "oni", - "actual": 3.6, - "predicted": 3.4587, - "error": 0.1413000000000002 - }, - { - "songno": "1124", - "diff": "oni", - "actual": 2.8, - "predicted": 2.6598, - "error": 0.14019999999999966 - }, - { - "songno": "1006", - "diff": "oni", - "actual": 5.3, - "predicted": 5.44, - "error": 0.14000000000000057 - }, - { - "songno": "968", - "diff": "oni", - "actual": 7, - "predicted": 7.1399, - "error": 0.1398999999999999 - }, - { - "songno": "8", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3398, - "error": 0.1397999999999997 - }, - { - "songno": "361", - "diff": "oni", - "actual": 8, - "predicted": 8.1395, - "error": 0.13949999999999996 - }, - { - "songno": "1361", - "diff": "oni", - "actual": 1.5, - "predicted": 1.6386, - "error": 0.13860000000000006 - }, - { - "songno": "456", - "diff": "oni", - "actual": 8.2, - "predicted": 8.3375, - "error": 0.13750000000000107 - }, - { - "songno": "930", - "diff": "oni", - "actual": 7.1, - "predicted": 7.237, - "error": 0.13700000000000045 - }, - { - "songno": "314", - "diff": "oni", - "actual": 1.3, - "predicted": 1.163, - "error": 0.137 - }, - { - "songno": "1269", - "diff": "oni", - "actual": 3.2, - "predicted": 3.0634, - "error": 0.13660000000000005 - }, - { - "songno": "242", - "diff": "oni", - "actual": 2.9, - "predicted": 3.0362, - "error": 0.1362000000000001 - }, - { - "songno": "308", - "diff": "oni", - "actual": 5.2, - "predicted": 5.064, - "error": 0.13600000000000012 - }, - { - "songno": "537", - "diff": "ura", - "actual": 9, - "predicted": 9.1359, - "error": 0.13589999999999947 - }, - { - "songno": "277", - "diff": "oni", - "actual": 3.2, - "predicted": 3.0643, - "error": 0.13570000000000038 - }, - { - "songno": "845", - "diff": "ura", - "actual": 10.5, - "predicted": 10.6356, - "error": 0.13560000000000016 - }, - { - "songno": "693", - "diff": "oni", - "actual": 4.6, - "predicted": 4.7351, - "error": 0.13510000000000044 - }, - { - "songno": "1004", - "diff": "oni", - "actual": 5.9, - "predicted": 5.765, - "error": 0.13500000000000068 - }, - { - "songno": "200", - "diff": "oni", - "actual": 2.3, - "predicted": 2.165, - "error": 0.1349999999999998 - }, - { - "songno": "387", - "diff": "oni", - "actual": 4.9, - "predicted": 4.7655, - "error": 0.13450000000000006 - }, - { - "songno": "92", - "diff": "ura", - "actual": 5.5, - "predicted": 5.3655, - "error": 0.13450000000000006 - }, - { - "songno": "868", - "diff": "ura", - "actual": 11.3, - "predicted": 11.4338, - "error": 0.13379999999999903 - }, - { - "songno": "425", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5675, - "error": 0.13250000000000028 - }, - { - "songno": "851", - "diff": "oni", - "actual": 10.1, - "predicted": 10.2316, - "error": 0.1316000000000006 - }, - { - "songno": "909", - "diff": "oni", - "actual": 4.8, - "predicted": 4.6684, - "error": 0.13159999999999972 - }, - { - "songno": "32", - "diff": "oni", - "actual": 6.8, - "predicted": 6.9306, - "error": 0.13060000000000027 - }, - { - "songno": "1400", - "diff": "oni", - "actual": 1.6, - "predicted": 1.4698, - "error": 0.1302000000000001 - }, - { - "songno": "1296", - "diff": "oni", - "actual": 7.9, - "predicted": 8.0292, - "error": 0.1291999999999991 - }, - { - "songno": "1331", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3289, - "error": 0.1288999999999998 - }, - { - "songno": "1465", - "diff": "ura", - "actual": 11, - "predicted": 10.8714, - "error": 0.1286000000000005 - }, - { - "songno": "489", - "diff": "oni", - "actual": 4.7, - "predicted": 4.5715, - "error": 0.12849999999999984 - }, - { - "songno": "724", - "diff": "oni", - "actual": 8.5, - "predicted": 8.3717, - "error": 0.12829999999999941 - }, - { - "songno": "637", - "diff": "oni", - "actual": 6.6, - "predicted": 6.472, - "error": 0.12799999999999923 - }, - { - "songno": "1452", - "diff": "ura", - "actual": 9, - "predicted": 8.8721, - "error": 0.12790000000000035 - }, - { - "songno": "545", - "diff": "oni", - "actual": 4.8, - "predicted": 4.9279, - "error": 0.12790000000000035 - }, - { - "songno": "495", - "diff": "oni", - "actual": 10.1, - "predicted": 9.9723, - "error": 0.12769999999999904 - }, - { - "songno": "394", - "diff": "oni", - "actual": 5.9, - "predicted": 6.0272, - "error": 0.1271999999999993 - }, - { - "songno": "168", - "diff": "oni", - "actual": 8.6, - "predicted": 8.4732, - "error": 0.12679999999999936 - }, - { - "songno": "651", - "diff": "oni", - "actual": 7.1, - "predicted": 6.9745, - "error": 0.12549999999999972 - }, - { - "songno": "820", - "diff": "oni", - "actual": 10.7, - "predicted": 10.5747, - "error": 0.1252999999999993 - }, - { - "songno": "352", - "diff": "oni", - "actual": 2.5, - "predicted": 2.6248, - "error": 0.12480000000000002 - }, - { - "songno": "652", - "diff": "oni", - "actual": 3.7, - "predicted": 3.8243, - "error": 0.12429999999999986 - }, - { - "songno": "647", - "diff": "oni", - "actual": 7.8, - "predicted": 7.6771, - "error": 0.12289999999999957 - }, - { - "songno": "470", - "diff": "ura", - "actual": 6.9, - "predicted": 7.0225, - "error": 0.12249999999999961 - }, - { - "songno": "1379", - "diff": "oni", - "actual": 9.5, - "predicted": 9.6212, - "error": 0.12119999999999997 - }, - { - "songno": "615", - "diff": "oni", - "actual": 9, - "predicted": 8.8791, - "error": 0.12090000000000067 - }, - { - "songno": "648", - "diff": "oni", - "actual": 4.2, - "predicted": 4.3204, - "error": 0.12040000000000006 - }, - { - "songno": "250", - "diff": "oni", - "actual": 3, - "predicted": 3.1201, - "error": 0.12009999999999987 - }, - { - "songno": "1304", - "diff": "oni", - "actual": 4.7, - "predicted": 4.5803, - "error": 0.11969999999999992 - }, - { - "songno": "310", - "diff": "oni", - "actual": 6.2, - "predicted": 6.3195, - "error": 0.1194999999999995 - }, - { - "songno": "274", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4193, - "error": 0.11929999999999996 - }, - { - "songno": "910", - "diff": "oni", - "actual": 7.3, - "predicted": 7.4186, - "error": 0.11859999999999982 - }, - { - "songno": "1149", - "diff": "ura", - "actual": 7, - "predicted": 7.1178, - "error": 0.1177999999999999 - }, - { - "songno": "1208", - "diff": "oni", - "actual": 4.3, - "predicted": 4.1826, - "error": 0.11739999999999995 - }, - { - "songno": "520", - "diff": "ura", - "actual": 8.9, - "predicted": 9.0174, - "error": 0.11739999999999995 - }, - { - "songno": "1140", - "diff": "oni", - "actual": 5.6, - "predicted": 5.4829, - "error": 0.11709999999999976 - }, - { - "songno": "1136", - "diff": "oni", - "actual": 2.7, - "predicted": 2.8167, - "error": 0.1166999999999998 - }, - { - "songno": "1407", - "diff": "oni", - "actual": 2.8, - "predicted": 2.6833, - "error": 0.1166999999999998 - }, - { - "songno": "612", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5838, - "error": 0.11620000000000008 - }, - { - "songno": "842", - "diff": "ura", - "actual": 4.9, - "predicted": 4.7846, - "error": 0.11540000000000017 - }, - { - "songno": "61", - "diff": "oni", - "actual": 4.6, - "predicted": 4.7152, - "error": 0.11520000000000064 - }, - { - "songno": "448", - "diff": "oni", - "actual": 5.5, - "predicted": 5.3848, - "error": 0.11519999999999975 - }, - { - "songno": "546", - "diff": "oni", - "actual": 6.8, - "predicted": 6.9148, - "error": 0.11479999999999979 - }, - { - "songno": "1381", - "diff": "oni", - "actual": 7.3, - "predicted": 7.4142, - "error": 0.1142000000000003 - }, - { - "songno": "19", - "diff": "oni", - "actual": 7.5, - "predicted": 7.3861, - "error": 0.11390000000000011 - }, - { - "songno": "1437", - "diff": "oni", - "actual": 7.5, - "predicted": 7.3863, - "error": 0.11369999999999969 - }, - { - "songno": "1426", - "diff": "oni", - "actual": 6.2, - "predicted": 6.0867, - "error": 0.11329999999999973 - }, - { - "songno": "1207", - "diff": "oni", - "actual": 7.8, - "predicted": 7.6875, - "error": 0.11249999999999982 - }, - { - "songno": "1057", - "diff": "oni", - "actual": 6.4, - "predicted": 6.5114, - "error": 0.11139999999999972 - }, - { - "songno": "1318", - "diff": "ura", - "actual": 10.7, - "predicted": 10.8113, - "error": 0.11129999999999995 - }, - { - "songno": "442", - "diff": "oni", - "actual": 10.3, - "predicted": 10.189, - "error": 0.11100000000000065 - }, - { - "songno": "124", - "diff": "oni", - "actual": 5.5, - "predicted": 5.6109, - "error": 0.1109 - }, - { - "songno": "268", - "diff": "oni", - "actual": 5.1, - "predicted": 4.99, - "error": 0.10999999999999943 - }, - { - "songno": "1144", - "diff": "ura", - "actual": 8.9, - "predicted": 9.0096, - "error": 0.10960000000000036 - }, - { - "songno": "842", - "diff": "oni", - "actual": 2.1, - "predicted": 2.2094, - "error": 0.10939999999999994 - }, - { - "songno": "587", - "diff": "oni", - "actual": 5.2, - "predicted": 5.0907, - "error": 0.10930000000000017 - }, - { - "songno": "207", - "diff": "oni", - "actual": 4.2, - "predicted": 4.3089, - "error": 0.10890000000000022 - }, - { - "songno": "676", - "diff": "oni", - "actual": 2.6, - "predicted": 2.4915, - "error": 0.10850000000000026 - }, - { - "songno": "498", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5915, - "error": 0.10850000000000026 - }, - { - "songno": "180", - "diff": "oni", - "actual": 7.3, - "predicted": 7.1916, - "error": 0.10839999999999961 - }, - { - "songno": "477", - "diff": "oni", - "actual": 9.3, - "predicted": 9.192, - "error": 0.10800000000000054 - }, - { - "songno": "256", - "diff": "ura", - "actual": 6.2, - "predicted": 6.0922, - "error": 0.10780000000000012 - }, - { - "songno": "539", - "diff": "ura", - "actual": 8.2, - "predicted": 8.3071, - "error": 0.10710000000000086 - }, - { - "songno": "1287", - "diff": "oni", - "actual": 3.2, - "predicted": 3.093, - "error": 0.1070000000000002 - }, - { - "songno": "79", - "diff": "oni", - "actual": 3.2, - "predicted": 3.3066, - "error": 0.1065999999999998 - }, - { - "songno": "49", - "diff": "oni", - "actual": 4.4, - "predicted": 4.5055, - "error": 0.10549999999999926 - }, - { - "songno": "559", - "diff": "oni", - "actual": 5.4, - "predicted": 5.5046, - "error": 0.10459999999999958 - }, - { - "songno": "972", - "diff": "oni", - "actual": 7.5, - "predicted": 7.6046, - "error": 0.10459999999999958 - }, - { - "songno": "62", - "diff": "oni", - "actual": 6.1, - "predicted": 6.2045, - "error": 0.1045000000000007 - }, - { - "songno": "687", - "diff": "oni", - "actual": 4.3, - "predicted": 4.404, - "error": 0.10400000000000009 - }, - { - "songno": "711", - "diff": "ura", - "actual": 5, - "predicted": 5.1039, - "error": 0.10390000000000033 - }, - { - "songno": "279", - "diff": "oni", - "actual": 4.7, - "predicted": 4.8039, - "error": 0.10389999999999944 - }, - { - "songno": "128", - "diff": "oni", - "actual": 9.2, - "predicted": 9.0963, - "error": 0.1036999999999999 - }, - { - "songno": "794", - "diff": "oni", - "actual": 7.6, - "predicted": 7.4963, - "error": 0.1036999999999999 - }, - { - "songno": "758", - "diff": "oni", - "actual": 10.8, - "predicted": 10.6964, - "error": 0.10360000000000014 - }, - { - "songno": "1295", - "diff": "ura", - "actual": 6, - "predicted": 6.1034, - "error": 0.10339999999999971 - }, - { - "songno": "625", - "diff": "oni", - "actual": 5.5, - "predicted": 5.6033, - "error": 0.10329999999999995 - }, - { - "songno": "391", - "diff": "oni", - "actual": 7.4, - "predicted": 7.2968, - "error": 0.10320000000000018 - }, - { - "songno": "991", - "diff": "oni", - "actual": 6.3, - "predicted": 6.4023, - "error": 0.1023000000000005 - }, - { - "songno": "539", - "diff": "oni", - "actual": 6, - "predicted": 5.8978, - "error": 0.10219999999999985 - }, - { - "songno": "1342", - "diff": "oni", - "actual": 2.2, - "predicted": 2.0982, - "error": 0.10180000000000033 - }, - { - "songno": "709", - "diff": "oni", - "actual": 2.5, - "predicted": 2.6018, - "error": 0.10179999999999989 - }, - { - "songno": "110", - "diff": "oni", - "actual": 10.9, - "predicted": 10.7984, - "error": 0.10159999999999947 - }, - { - "songno": "38", - "diff": "oni", - "actual": 5.7, - "predicted": 5.8015, - "error": 0.1014999999999997 - }, - { - "songno": "1389", - "diff": "oni", - "actual": 1.2, - "predicted": 1.3009, - "error": 0.10089999999999999 - }, - { - "songno": "1295", - "diff": "oni", - "actual": 1.3, - "predicted": 1.1998, - "error": 0.10020000000000007 - }, - { - "songno": "576", - "diff": "oni", - "actual": 8, - "predicted": 8.1001, - "error": 0.10009999999999941 - }, - { - "songno": "1153", - "diff": "oni", - "actual": 1.8, - "predicted": 1.7003, - "error": 0.09970000000000012 - }, - { - "songno": "383", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1996, - "error": 0.09960000000000058 - }, - { - "songno": "1393", - "diff": "ura", - "actual": 8.6, - "predicted": 8.5015, - "error": 0.09849999999999959 - }, - { - "songno": "958", - "diff": "oni", - "actual": 8.4, - "predicted": 8.4978, - "error": 0.09779999999999944 - }, - { - "songno": "209", - "diff": "oni", - "actual": 3.1, - "predicted": 3.1976, - "error": 0.09759999999999991 - }, - { - "songno": "1202", - "diff": "oni", - "actual": 4.8, - "predicted": 4.8968, - "error": 0.0968 - }, - { - "songno": "1052", - "diff": "oni", - "actual": 8.1, - "predicted": 8.1963, - "error": 0.09630000000000116 - }, - { - "songno": "1235", - "diff": "ura", - "actual": 10.4, - "predicted": 10.3042, - "error": 0.09580000000000055 - }, - { - "songno": "223", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0047, - "error": 0.09529999999999994 - }, - { - "songno": "671", - "diff": "oni", - "actual": 2.6, - "predicted": 2.6952, - "error": 0.09519999999999973 - }, - { - "songno": "1306", - "diff": "oni", - "actual": 4.9, - "predicted": 4.805, - "error": 0.09500000000000064 - }, - { - "songno": "109", - "diff": "ura", - "actual": 6.6, - "predicted": 6.5051, - "error": 0.09489999999999998 - }, - { - "songno": "256", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8051, - "error": 0.09489999999999998 - }, - { - "songno": "467", - "diff": "oni", - "actual": 2.9, - "predicted": 2.8057, - "error": 0.09430000000000005 - }, - { - "songno": "1209", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0058, - "error": 0.09419999999999984 - }, - { - "songno": "616", - "diff": "oni", - "actual": 5.8, - "predicted": 5.894, - "error": 0.0940000000000003 - }, - { - "songno": "1171", - "diff": "ura", - "actual": 9.5, - "predicted": 9.5937, - "error": 0.09370000000000012 - }, - { - "songno": "523", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0069, - "error": 0.09309999999999974 - }, - { - "songno": "645", - "diff": "oni", - "actual": 6.7, - "predicted": 6.607, - "error": 0.09299999999999997 - }, - { - "songno": "549", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3929, - "error": 0.09289999999999843 - }, - { - "songno": "805", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4072, - "error": 0.09280000000000044 - }, - { - "songno": "1107", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5927, - "error": 0.09269999999999978 - }, - { - "songno": "1292", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4926, - "error": 0.09260000000000002 - }, - { - "songno": "432", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6925, - "error": 0.09250000000000025 - }, - { - "songno": "650", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3078, - "error": 0.09220000000000006 - }, - { - "songno": "1240", - "diff": "oni", - "actual": 4.2, - "predicted": 4.108, - "error": 0.09200000000000053 - }, - { - "songno": "1392", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4916, - "error": 0.09159999999999968 - }, - { - "songno": "1114", - "diff": "oni", - "actual": 2, - "predicted": 2.09, - "error": 0.08999999999999986 - }, - { - "songno": "505", - "diff": "oni", - "actual": 3, - "predicted": 3.0898, - "error": 0.08979999999999988 - }, - { - "songno": "437", - "diff": "oni", - "actual": 2.6, - "predicted": 2.6896, - "error": 0.0895999999999999 - }, - { - "songno": "1121", - "diff": "ura", - "actual": 10.2, - "predicted": 10.1105, - "error": 0.08949999999999925 - }, - { - "songno": "108", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7111, - "error": 0.08889999999999976 - }, - { - "songno": "1285", - "diff": "oni", - "actual": 2.4, - "predicted": 2.3112, - "error": 0.08879999999999999 - }, - { - "songno": "317", - "diff": "oni", - "actual": 2.9, - "predicted": 2.9887, - "error": 0.08870000000000022 - }, - { - "songno": "540", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9884, - "error": 0.08840000000000003 - }, - { - "songno": "496", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1883, - "error": 0.08830000000000027 - }, - { - "songno": "1359", - "diff": "oni", - "actual": 2.2, - "predicted": 2.2882, - "error": 0.08819999999999961 - }, - { - "songno": "568", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4119, - "error": 0.08809999999999985 - }, - { - "songno": "858", - "diff": "oni", - "actual": 11.1, - "predicted": 11.012, - "error": 0.08799999999999919 - }, - { - "songno": "1218", - "diff": "oni", - "actual": 1.4, - "predicted": 1.4879, - "error": 0.08790000000000009 - }, - { - "songno": "732", - "diff": "oni", - "actual": 2.4, - "predicted": 2.3125, - "error": 0.08749999999999991 - }, - { - "songno": "891", - "diff": "oni", - "actual": 6.8, - "predicted": 6.8868, - "error": 0.08680000000000021 - }, - { - "songno": "264", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7133, - "error": 0.08669999999999956 - }, - { - "songno": "1234", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5135, - "error": 0.08650000000000002 - }, - { - "songno": "12", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4136, - "error": 0.08640000000000025 - }, - { - "songno": "1117", - "diff": "oni", - "actual": 2.9, - "predicted": 2.9863, - "error": 0.08630000000000004 - }, - { - "songno": "730", - "diff": "ura", - "actual": 8.5, - "predicted": 8.4138, - "error": 0.08619999999999983 - }, - { - "songno": "238", - "diff": "oni", - "actual": 6.1, - "predicted": 6.014, - "error": 0.08599999999999941 - }, - { - "songno": "997", - "diff": "ura", - "actual": 7.3, - "predicted": 7.3859, - "error": 0.08590000000000053 - }, - { - "songno": "65", - "diff": "oni", - "actual": 6.2, - "predicted": 6.2857, - "error": 0.08570000000000011 - }, - { - "songno": "704", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3855, - "error": 0.08550000000000058 - }, - { - "songno": "538", - "diff": "oni", - "actual": 8.6, - "predicted": 8.685, - "error": 0.08500000000000085 - }, - { - "songno": "311", - "diff": "oni", - "actual": 7, - "predicted": 6.9151, - "error": 0.0849000000000002 - }, - { - "songno": "551", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5849, - "error": 0.0849000000000002 - }, - { - "songno": "1145", - "diff": "ura", - "actual": 11.3, - "predicted": 11.3842, - "error": 0.08419999999999916 - }, - { - "songno": "1073", - "diff": "oni", - "actual": 2.3, - "predicted": 2.2159, - "error": 0.08409999999999984 - }, - { - "songno": "337", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2841, - "error": 0.0840999999999994 - }, - { - "songno": "381", - "diff": "oni", - "actual": 2.3, - "predicted": 2.384, - "error": 0.08400000000000007 - }, - { - "songno": "1181", - "diff": "oni", - "actual": 3.3, - "predicted": 3.216, - "error": 0.08399999999999963 - }, - { - "songno": "504", - "diff": "ura", - "actual": 8.9, - "predicted": 8.983, - "error": 0.08300000000000018 - }, - { - "songno": "1390", - "diff": "oni", - "actual": 5.7, - "predicted": 5.6178, - "error": 0.08220000000000027 - }, - { - "songno": "955", - "diff": "oni", - "actual": 10.5, - "predicted": 10.4182, - "error": 0.08179999999999943 - }, - { - "songno": "630", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2183, - "error": 0.08170000000000144 - }, - { - "songno": "416", - "diff": "oni", - "actual": 6, - "predicted": 5.9184, - "error": 0.0815999999999999 - }, - { - "songno": "1058", - "diff": "ura", - "actual": 8.6, - "predicted": 8.6814, - "error": 0.08140000000000036 - }, - { - "songno": "294", - "diff": "oni", - "actual": 4.3, - "predicted": 4.2187, - "error": 0.0812999999999997 - }, - { - "songno": "922", - "diff": "oni", - "actual": 5.7, - "predicted": 5.6194, - "error": 0.08060000000000045 - }, - { - "songno": "866", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9805, - "error": 0.0804999999999998 - }, - { - "songno": "1125", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6801, - "error": 0.08009999999999984 - }, - { - "songno": "40", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6798, - "error": 0.07980000000000054 - }, - { - "songno": "1316", - "diff": "oni", - "actual": 2.8, - "predicted": 2.8798, - "error": 0.0798000000000001 - }, - { - "songno": "1052", - "diff": "ura", - "actual": 11.1, - "predicted": 11.0207, - "error": 0.07929999999999993 - }, - { - "songno": "346", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4791, - "error": 0.0790999999999995 - }, - { - "songno": "621", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1209, - "error": 0.07909999999999862 - }, - { - "songno": "771", - "diff": "oni", - "actual": 3.3, - "predicted": 3.3788, - "error": 0.0788000000000002 - }, - { - "songno": "1364", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6212, - "error": 0.0788000000000002 - }, - { - "songno": "844", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0212, - "error": 0.07879999999999932 - }, - { - "songno": "287", - "diff": "oni", - "actual": 2.8, - "predicted": 2.8787, - "error": 0.07869999999999999 - }, - { - "songno": "478", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7213, - "error": 0.07869999999999955 - }, - { - "songno": "434", - "diff": "oni", - "actual": 4.1, - "predicted": 4.1785, - "error": 0.07850000000000001 - }, - { - "songno": "150", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3783, - "error": 0.07830000000000048 - }, - { - "songno": "265", - "diff": "oni", - "actual": 10.2, - "predicted": 10.2782, - "error": 0.07820000000000071 - }, - { - "songno": "644", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4782, - "error": 0.07819999999999983 - }, - { - "songno": "824", - "diff": "ura", - "actual": 5.1, - "predicted": 5.1781, - "error": 0.07810000000000006 - }, - { - "songno": "1363", - "diff": "oni", - "actual": 4.4, - "predicted": 4.3219, - "error": 0.07810000000000006 - }, - { - "songno": "1043", - "diff": "ura", - "actual": 12, - "predicted": 11.9221, - "error": 0.07789999999999964 - }, - { - "songno": "267", - "diff": "oni", - "actual": 3.6, - "predicted": 3.5222, - "error": 0.07779999999999987 - }, - { - "songno": "1368", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5777, - "error": 0.0777000000000001 - }, - { - "songno": "1373", - "diff": "oni", - "actual": 2.1, - "predicted": 2.1774, - "error": 0.07739999999999991 - }, - { - "songno": "925", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2773, - "error": 0.07730000000000015 - }, - { - "songno": "1350", - "diff": "oni", - "actual": 11.9, - "predicted": 11.823, - "error": 0.07699999999999996 - }, - { - "songno": "319", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4765, - "error": 0.07649999999999935 - }, - { - "songno": "448", - "diff": "ura", - "actual": 9.6, - "predicted": 9.5237, - "error": 0.07629999999999981 - }, - { - "songno": "284", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8761, - "error": 0.07610000000000028 - }, - { - "songno": "470", - "diff": "oni", - "actual": 5, - "predicted": 5.0758, - "error": 0.07580000000000009 - }, - { - "songno": "765", - "diff": "ura", - "actual": 12, - "predicted": 11.9242, - "error": 0.0757999999999992 - }, - { - "songno": "1355", - "diff": "oni", - "actual": 9, - "predicted": 9.0756, - "error": 0.07559999999999967 - }, - { - "songno": "816", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1244, - "error": 0.07559999999999967 - }, - { - "songno": "1098", - "diff": "oni", - "actual": 5.9, - "predicted": 5.8245, - "error": 0.07550000000000079 - }, - { - "songno": "892", - "diff": "oni", - "actual": 10.9, - "predicted": 10.8245, - "error": 0.0754999999999999 - }, - { - "songno": "1451", - "diff": "ura", - "actual": 6.2, - "predicted": 6.1246, - "error": 0.07540000000000013 - }, - { - "songno": "368", - "diff": "ura", - "actual": 7.2, - "predicted": 7.1246, - "error": 0.07540000000000013 - }, - { - "songno": "80", - "diff": "oni", - "actual": 8.4, - "predicted": 8.3246, - "error": 0.07540000000000013 - }, - { - "songno": "15", - "diff": "ura", - "actual": 10.2, - "predicted": 10.2749, - "error": 0.0749000000000013 - }, - { - "songno": "1271", - "diff": "ura", - "actual": 9.3, - "predicted": 9.2251, - "error": 0.0749000000000013 - }, - { - "songno": "230", - "diff": "oni", - "actual": 7.4, - "predicted": 7.3251, - "error": 0.07490000000000041 - }, - { - "songno": "511", - "diff": "oni", - "actual": 2.3, - "predicted": 2.3748, - "error": 0.0748000000000002 - }, - { - "songno": "1122", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5747, - "error": 0.07469999999999999 - }, - { - "songno": "777", - "diff": "oni", - "actual": 10.8, - "predicted": 10.7253, - "error": 0.07469999999999999 - }, - { - "songno": "488", - "diff": "oni", - "actual": 5.7, - "predicted": 5.6255, - "error": 0.07450000000000045 - }, - { - "songno": "1318", - "diff": "oni", - "actual": 8.9, - "predicted": 8.9745, - "error": 0.07450000000000045 - }, - { - "songno": "70", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1743, - "error": 0.07430000000000003 - }, - { - "songno": "1348", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7743, - "error": 0.07430000000000003 - }, - { - "songno": "1077", - "diff": "oni", - "actual": 3.9, - "predicted": 3.8257, - "error": 0.07430000000000003 - }, - { - "songno": "471", - "diff": "oni", - "actual": 7.2, - "predicted": 7.1258, - "error": 0.07420000000000027 - }, - { - "songno": "285", - "diff": "ura", - "actual": 5.9, - "predicted": 5.974, - "error": 0.07399999999999984 - }, - { - "songno": "1274", - "diff": "oni", - "actual": 4.8, - "predicted": 4.8738, - "error": 0.07380000000000031 - }, - { - "songno": "332", - "diff": "oni", - "actual": 2.5, - "predicted": 2.5738, - "error": 0.07379999999999987 - }, - { - "songno": "313", - "diff": "oni", - "actual": 2.6, - "predicted": 2.5263, - "error": 0.0737000000000001 - }, - { - "songno": "1225", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3734, - "error": 0.07340000000000035 - }, - { - "songno": "278", - "diff": "oni", - "actual": 3.8, - "predicted": 3.873, - "error": 0.0730000000000004 - }, - { - "songno": "1391", - "diff": "oni", - "actual": 7.8, - "predicted": 7.8727, - "error": 0.07270000000000021 - }, - { - "songno": "87", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5275, - "error": 0.07249999999999979 - }, - { - "songno": "224", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7276, - "error": 0.07240000000000002 - }, - { - "songno": "135", - "diff": "oni", - "actual": 4.1, - "predicted": 4.1719, - "error": 0.0719000000000003 - }, - { - "songno": "1410", - "diff": "oni", - "actual": 3, - "predicted": 3.0716, - "error": 0.07160000000000011 - }, - { - "songno": "941", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6715, - "error": 0.07150000000000034 - }, - { - "songno": "345", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4286, - "error": 0.07139999999999969 - }, - { - "songno": "882", - "diff": "oni", - "actual": 1.9, - "predicted": 1.9713, - "error": 0.07130000000000014 - }, - { - "songno": "1206", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6712, - "error": 0.07120000000000015 - }, - { - "songno": "926", - "diff": "oni", - "actual": 3.7, - "predicted": 3.7712, - "error": 0.07119999999999971 - }, - { - "songno": "574", - "diff": "oni", - "actual": 8.6, - "predicted": 8.5289, - "error": 0.0710999999999995 - }, - { - "songno": "821", - "diff": "oni", - "actual": 6.5, - "predicted": 6.429, - "error": 0.07099999999999973 - }, - { - "songno": "1226", - "diff": "ura", - "actual": 6.1, - "predicted": 6.1709, - "error": 0.07089999999999996 - }, - { - "songno": "315", - "diff": "oni", - "actual": 3.2, - "predicted": 3.2708, - "error": 0.07079999999999975 - }, - { - "songno": "204", - "diff": "oni", - "actual": 2.4, - "predicted": 2.3293, - "error": 0.07069999999999999 - }, - { - "songno": "1220", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6707, - "error": 0.07069999999999999 - }, - { - "songno": "221", - "diff": "ura", - "actual": 9.3, - "predicted": 9.2294, - "error": 0.07060000000000066 - }, - { - "songno": "480", - "diff": "oni", - "actual": 3.2, - "predicted": 3.2705, - "error": 0.07050000000000001 - }, - { - "songno": "649", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5297, - "error": 0.07029999999999959 - }, - { - "songno": "241", - "diff": "oni", - "actual": 2.6, - "predicted": 2.5298, - "error": 0.07020000000000026 - }, - { - "songno": "1286", - "diff": "oni", - "actual": 2.2, - "predicted": 2.27, - "error": 0.06999999999999984 - }, - { - "songno": "106", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1699, - "error": 0.06990000000000052 - }, - { - "songno": "186", - "diff": "oni", - "actual": 10.9, - "predicted": 10.8301, - "error": 0.06990000000000052 - }, - { - "songno": "386", - "diff": "oni", - "actual": 7, - "predicted": 7.0698, - "error": 0.06979999999999986 - }, - { - "songno": "1140", - "diff": "ura", - "actual": 8.6, - "predicted": 8.6696, - "error": 0.06960000000000122 - }, - { - "songno": "1353", - "diff": "oni", - "actual": 2.8, - "predicted": 2.8696, - "error": 0.06960000000000033 - }, - { - "songno": "474", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2304, - "error": 0.06959999999999944 - }, - { - "songno": "949", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1694, - "error": 0.0694000000000008 - }, - { - "songno": "199", - "diff": "oni", - "actual": 3.1, - "predicted": 3.0314, - "error": 0.0686 - }, - { - "songno": "73", - "diff": "ura", - "actual": 9.1, - "predicted": 9.0316, - "error": 0.06840000000000046 - }, - { - "songno": "493", - "diff": "ura", - "actual": 9.4, - "predicted": 9.3316, - "error": 0.06840000000000046 - }, - { - "songno": "1183", - "diff": "oni", - "actual": 6.5, - "predicted": 6.432, - "error": 0.06799999999999962 - }, - { - "songno": "956", - "diff": "ura", - "actual": 6.2, - "predicted": 6.1321, - "error": 0.06789999999999985 - }, - { - "songno": "55", - "diff": "oni", - "actual": 8.7, - "predicted": 8.6322, - "error": 0.06780000000000008 - }, - { - "songno": "194", - "diff": "oni", - "actual": 9.4, - "predicted": 9.4678, - "error": 0.06780000000000008 - }, - { - "songno": "291", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9676, - "error": 0.06759999999999966 - }, - { - "songno": "959", - "diff": "oni", - "actual": 7, - "predicted": 7.0669, - "error": 0.0669000000000004 - }, - { - "songno": "898", - "diff": "ura", - "actual": 7.5, - "predicted": 7.5669, - "error": 0.0669000000000004 - }, - { - "songno": "1184", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4668, - "error": 0.06679999999999975 - }, - { - "songno": "1343", - "diff": "ura", - "actual": 7, - "predicted": 6.9333, - "error": 0.06669999999999998 - }, - { - "songno": "385", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0333, - "error": 0.06669999999999998 - }, - { - "songno": "331", - "diff": "oni", - "actual": 9.4, - "predicted": 9.4662, - "error": 0.06620000000000026 - }, - { - "songno": "1148", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4661, - "error": 0.06610000000000005 - }, - { - "songno": "1428", - "diff": "oni", - "actual": 5, - "predicted": 4.9342, - "error": 0.0658000000000003 - }, - { - "songno": "1162", - "diff": "oni", - "actual": 3.9, - "predicted": 3.8342, - "error": 0.06579999999999986 - }, - { - "songno": "1435", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2655, - "error": 0.06550000000000011 - }, - { - "songno": "417", - "diff": "oni", - "actual": 3.3, - "predicted": 3.3652, - "error": 0.06520000000000037 - }, - { - "songno": "988", - "diff": "oni", - "actual": 5.3, - "predicted": 5.365, - "error": 0.06500000000000039 - }, - { - "songno": "1438", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4649, - "error": 0.06489999999999974 - }, - { - "songno": "414", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8647, - "error": 0.0647000000000002 - }, - { - "songno": "780", - "diff": "oni", - "actual": 8.7, - "predicted": 8.6353, - "error": 0.06469999999999843 - }, - { - "songno": "714", - "diff": "oni", - "actual": 9.4, - "predicted": 9.3354, - "error": 0.06460000000000043 - }, - { - "songno": "1414", - "diff": "oni", - "actual": 5.2, - "predicted": 5.1354, - "error": 0.06460000000000043 - }, - { - "songno": "348", - "diff": "ura", - "actual": 6.7, - "predicted": 6.6355, - "error": 0.06449999999999978 - }, - { - "songno": "1220", - "diff": "ura", - "actual": 9.4, - "predicted": 9.4643, - "error": 0.06429999999999936 - }, - { - "songno": "1031", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7642, - "error": 0.06419999999999959 - }, - { - "songno": "735", - "diff": "ura", - "actual": 9.7, - "predicted": 9.764, - "error": 0.06400000000000006 - }, - { - "songno": "1380", - "diff": "ura", - "actual": 8.9, - "predicted": 8.9638, - "error": 0.06380000000000052 - }, - { - "songno": "1035", - "diff": "ura", - "actual": 8.6, - "predicted": 8.663, - "error": 0.06300000000000061 - }, - { - "songno": "413", - "diff": "oni", - "actual": 5.7, - "predicted": 5.637, - "error": 0.06300000000000061 - }, - { - "songno": "341", - "diff": "oni", - "actual": 3.3, - "predicted": 3.363, - "error": 0.06300000000000017 - }, - { - "songno": "993", - "diff": "ura", - "actual": 12, - "predicted": 11.9372, - "error": 0.0627999999999993 - }, - { - "songno": "85", - "diff": "oni", - "actual": 7.4, - "predicted": 7.3375, - "error": 0.0625 - }, - { - "songno": "1126", - "diff": "oni", - "actual": 3.9, - "predicted": 3.8378, - "error": 0.06219999999999981 - }, - { - "songno": "592", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0378, - "error": 0.06219999999999981 - }, - { - "songno": "716", - "diff": "oni", - "actual": 6.8, - "predicted": 6.862, - "error": 0.06200000000000028 - }, - { - "songno": "183", - "diff": "oni", - "actual": 7, - "predicted": 6.938, - "error": 0.06200000000000028 - }, - { - "songno": "1308", - "diff": "oni", - "actual": 8.4, - "predicted": 8.4618, - "error": 0.061799999999999855 - }, - { - "songno": "1027", - "diff": "ura", - "actual": 9.1, - "predicted": 9.1616, - "error": 0.06160000000000032 - }, - { - "songno": "354", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7389, - "error": 0.06109999999999971 - }, - { - "songno": "452", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4389, - "error": 0.06109999999999971 - }, - { - "songno": "608", - "diff": "oni", - "actual": 3.5, - "predicted": 3.439, - "error": 0.06099999999999994 - }, - { - "songno": "591", - "diff": "oni", - "actual": 6.2, - "predicted": 6.261, - "error": 0.06099999999999994 - }, - { - "songno": "725", - "diff": "oni", - "actual": 4.4, - "predicted": 4.339, - "error": 0.06099999999999994 - }, - { - "songno": "1284", - "diff": "oni", - "actual": 2.3, - "predicted": 2.2391, - "error": 0.06089999999999973 - }, - { - "songno": "1168", - "diff": "oni", - "actual": 4, - "predicted": 4.0608, - "error": 0.06080000000000041 - }, - { - "songno": "1131", - "diff": "oni", - "actual": 3.6, - "predicted": 3.5393, - "error": 0.0607000000000002 - }, - { - "songno": "1315", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9606, - "error": 0.06059999999999999 - }, - { - "songno": "1326", - "diff": "oni", - "actual": 3.7, - "predicted": 3.6395, - "error": 0.06050000000000022 - }, - { - "songno": "525", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6603, - "error": 0.060300000000000686 - }, - { - "songno": "317", - "diff": "ura", - "actual": 5.8, - "predicted": 5.7397, - "error": 0.0602999999999998 - }, - { - "songno": "963", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0397, - "error": 0.0602999999999998 - }, - { - "songno": "992", - "diff": "oni", - "actual": 10.1, - "predicted": 10.0398, - "error": 0.06020000000000003 - }, - { - "songno": "1325", - "diff": "oni", - "actual": 8.2, - "predicted": 8.26, - "error": 0.0600000000000005 - }, - { - "songno": "1203", - "diff": "oni", - "actual": 4.9, - "predicted": 4.84, - "error": 0.0600000000000005 - }, - { - "songno": "785", - "diff": "oni", - "actual": 8.5, - "predicted": 8.56, - "error": 0.0600000000000005 - }, - { - "songno": "66", - "diff": "oni", - "actual": 5.9, - "predicted": 5.96, - "error": 0.05999999999999961 - }, - { - "songno": "761", - "diff": "oni", - "actual": 10.4, - "predicted": 10.3402, - "error": 0.059800000000000963 - }, - { - "songno": "401", - "diff": "oni", - "actual": 11.3, - "predicted": 11.2402, - "error": 0.059800000000000963 - }, - { - "songno": "10", - "diff": "oni", - "actual": 7.8, - "predicted": 7.7402, - "error": 0.059800000000000075 - }, - { - "songno": "215", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6597, - "error": 0.05970000000000031 - }, - { - "songno": "72", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4597, - "error": 0.05969999999999942 - }, - { - "songno": "944", - "diff": "oni", - "actual": 7, - "predicted": 7.0596, - "error": 0.05959999999999965 - }, - { - "songno": "695", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3595, - "error": 0.059499999999999886 - }, - { - "songno": "253", - "diff": "oni", - "actual": 5, - "predicted": 5.0595, - "error": 0.059499999999999886 - }, - { - "songno": "283", - "diff": "ura", - "actual": 11.1, - "predicted": 11.1593, - "error": 0.05930000000000035 - }, - { - "songno": "1164", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4593, - "error": 0.059299999999999464 - }, - { - "songno": "335", - "diff": "oni", - "actual": 9.4, - "predicted": 9.3408, - "error": 0.059200000000000585 - }, - { - "songno": "898", - "diff": "oni", - "actual": 3.8, - "predicted": 3.741, - "error": 0.05899999999999972 - }, - { - "songno": "675", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2588, - "error": 0.05879999999999974 - }, - { - "songno": "355", - "diff": "oni", - "actual": 10, - "predicted": 9.9413, - "error": 0.058699999999999974 - }, - { - "songno": "1447", - "diff": "oni", - "actual": 10.4, - "predicted": 10.3415, - "error": 0.05850000000000044 - }, - { - "songno": "98", - "diff": "oni", - "actual": 3.1, - "predicted": 3.1585, - "error": 0.058499999999999996 - }, - { - "songno": "1268", - "diff": "ura", - "actual": 9.1, - "predicted": 9.1584, - "error": 0.058400000000000674 - }, - { - "songno": "246", - "diff": "oni", - "actual": 1.1, - "predicted": 1.1584, - "error": 0.05840000000000001 - }, - { - "songno": "26", - "diff": "oni", - "actual": 4.1, - "predicted": 4.158, - "error": 0.05800000000000072 - }, - { - "songno": "481", - "diff": "ura", - "actual": 3.4, - "predicted": 3.342, - "error": 0.05799999999999983 - }, - { - "songno": "1097", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0421, - "error": 0.05790000000000006 - }, - { - "songno": "972", - "diff": "ura", - "actual": 10.9, - "predicted": 10.8423, - "error": 0.05770000000000053 - }, - { - "songno": "852", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6574, - "error": 0.05740000000000034 - }, - { - "songno": "247", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4426, - "error": 0.05740000000000034 - }, - { - "songno": "1094", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3573, - "error": 0.05730000000000057 - }, - { - "songno": "81", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4572, - "error": 0.05719999999999992 - }, - { - "songno": "33", - "diff": "oni", - "actual": 10.5, - "predicted": 10.4429, - "error": 0.05710000000000015 - }, - { - "songno": "951", - "diff": "oni", - "actual": 4.2, - "predicted": 4.1433, - "error": 0.056700000000000195 - }, - { - "songno": "1129", - "diff": "oni", - "actual": 9.8, - "predicted": 9.7434, - "error": 0.056600000000001316 - }, - { - "songno": "834", - "diff": "oni", - "actual": 9.7, - "predicted": 9.6435, - "error": 0.05649999999999977 - }, - { - "songno": "681", - "diff": "ura", - "actual": 9.1, - "predicted": 9.1565, - "error": 0.05649999999999977 - }, - { - "songno": "579", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2564, - "error": 0.056400000000000006 - }, - { - "songno": "181", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4438, - "error": 0.05620000000000047 - }, - { - "songno": "60", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8439, - "error": 0.056100000000000705 - }, - { - "songno": "939", - "diff": "oni", - "actual": 7.4, - "predicted": 7.456, - "error": 0.05600000000000005 - }, - { - "songno": "1263", - "diff": "oni", - "actual": 7.4, - "predicted": 7.456, - "error": 0.05600000000000005 - }, - { - "songno": "640", - "diff": "oni", - "actual": 8.5, - "predicted": 8.444, - "error": 0.05599999999999916 - }, - { - "songno": "1388", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1558, - "error": 0.055800000000000516 - }, - { - "songno": "1145", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2558, - "error": 0.05579999999999963 - }, - { - "songno": "64", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3556, - "error": 0.055600000000000094 - }, - { - "songno": "1171", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0444, - "error": 0.055599999999999206 - }, - { - "songno": "1079", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5446, - "error": 0.05539999999999967 - }, - { - "songno": "1216", - "diff": "ura", - "actual": 11.6, - "predicted": 11.5446, - "error": 0.055399999999998784 - }, - { - "songno": "45", - "diff": "ura", - "actual": 8.4, - "predicted": 8.4548, - "error": 0.05480000000000018 - }, - { - "songno": "408", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6548, - "error": 0.05479999999999974 - }, - { - "songno": "1274", - "diff": "ura", - "actual": 8.2, - "predicted": 8.1454, - "error": 0.05459999999999887 - }, - { - "songno": "879", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4456, - "error": 0.05439999999999934 - }, - { - "songno": "760", - "diff": "oni", - "actual": 10.8, - "predicted": 10.7457, - "error": 0.05430000000000135 - }, - { - "songno": "1329", - "diff": "ura", - "actual": 11.2, - "predicted": 11.1457, - "error": 0.05429999999999957 - }, - { - "songno": "819", - "diff": "ura", - "actual": 10.1, - "predicted": 10.1541, - "error": 0.05410000000000004 - }, - { - "songno": "1246", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6461, - "error": 0.0539000000000005 - }, - { - "songno": "1197", - "diff": "ura", - "actual": 9.8, - "predicted": 9.8539, - "error": 0.05389999999999873 - }, - { - "songno": "156", - "diff": "ura", - "actual": 8.9, - "predicted": 8.8462, - "error": 0.053800000000000736 - }, - { - "songno": "997", - "diff": "oni", - "actual": 4, - "predicted": 4.0536, - "error": 0.053600000000000314 - }, - { - "songno": "1061", - "diff": "ura", - "actual": 7.7, - "predicted": 7.7536, - "error": 0.053599999999999426 - }, - { - "songno": "500", - "diff": "ura", - "actual": 8.5, - "predicted": 8.4466, - "error": 0.05339999999999989 - }, - { - "songno": "846", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4468, - "error": 0.05320000000000036 - }, - { - "songno": "441", - "diff": "oni", - "actual": 10.7, - "predicted": 10.7532, - "error": 0.05320000000000036 - }, - { - "songno": "728", - "diff": "oni", - "actual": 4.9, - "predicted": 4.9531, - "error": 0.0530999999999997 - }, - { - "songno": "359", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3531, - "error": 0.053099999999998815 - }, - { - "songno": "1432", - "diff": "oni", - "actual": 10, - "predicted": 9.947, - "error": 0.053000000000000824 - }, - { - "songno": "73", - "diff": "oni", - "actual": 8.5, - "predicted": 8.5527, - "error": 0.05269999999999975 - }, - { - "songno": "1212", - "diff": "ura", - "actual": 6.7, - "predicted": 6.6474, - "error": 0.05259999999999998 - }, - { - "songno": "171", - "diff": "oni", - "actual": 9.6, - "predicted": 9.5475, - "error": 0.05250000000000021 - }, - { - "songno": "356", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0475, - "error": 0.05250000000000021 - }, - { - "songno": "351", - "diff": "oni", - "actual": 8.7, - "predicted": 8.6475, - "error": 0.05249999999999844 - }, - { - "songno": "1022", - "diff": "oni", - "actual": 2.7, - "predicted": 2.7524, - "error": 0.0524 - }, - { - "songno": "734", - "diff": "oni", - "actual": 8.6, - "predicted": 8.5478, - "error": 0.052199999999999136 - }, - { - "songno": "1403", - "diff": "oni", - "actual": 5, - "predicted": 5.0521, - "error": 0.05210000000000026 - }, - { - "songno": "547", - "diff": "oni", - "actual": 3.8, - "predicted": 3.748, - "error": 0.0519999999999996 - }, - { - "songno": "1021", - "diff": "oni", - "actual": 7, - "predicted": 7.0518, - "error": 0.05180000000000007 - }, - { - "songno": "646", - "diff": "ura", - "actual": 6.6, - "predicted": 6.6518, - "error": 0.05180000000000007 - }, - { - "songno": "776", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6484, - "error": 0.05159999999999876 - }, - { - "songno": "1001", - "diff": "oni", - "actual": 3.6, - "predicted": 3.5485, - "error": 0.05149999999999988 - }, - { - "songno": "1036", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4486, - "error": 0.05140000000000011 - }, - { - "songno": "1415", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6514, - "error": 0.05140000000000011 - }, - { - "songno": "497", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4514, - "error": 0.051399999999999224 - }, - { - "songno": "1020", - "diff": "ura", - "actual": 8, - "predicted": 7.9487, - "error": 0.051300000000000345 - }, - { - "songno": "83", - "diff": "oni", - "actual": 6, - "predicted": 6.0513, - "error": 0.051300000000000345 - }, - { - "songno": "1271", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7487, - "error": 0.05129999999999946 - }, - { - "songno": "786", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2488, - "error": 0.05120000000000147 - }, - { - "songno": "797", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7489, - "error": 0.05109999999999992 - }, - { - "songno": "139", - "diff": "ura", - "actual": 7.2, - "predicted": 7.1491, - "error": 0.05090000000000039 - }, - { - "songno": "775", - "diff": "oni", - "actual": 10.6, - "predicted": 10.6507, - "error": 0.050700000000000855 - }, - { - "songno": "1214", - "diff": "ura", - "actual": 10.4, - "predicted": 10.3493, - "error": 0.050700000000000855 - }, - { - "songno": "1249", - "diff": "ura", - "actual": 11.4, - "predicted": 11.4502, - "error": 0.050200000000000244 - }, - { - "songno": "344", - "diff": "oni", - "actual": 5.2, - "predicted": 5.1501, - "error": 0.049900000000000055 - }, - { - "songno": "1027", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9498, - "error": 0.04980000000000029 - }, - { - "songno": "627", - "diff": "oni", - "actual": 11.5, - "predicted": 11.4502, - "error": 0.0497999999999994 - }, - { - "songno": "372", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3503, - "error": 0.04970000000000052 - }, - { - "songno": "897", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4507, - "error": 0.04929999999999968 - }, - { - "songno": "293", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9491, - "error": 0.049100000000000144 - }, - { - "songno": "792", - "diff": "oni", - "actual": 3.7, - "predicted": 3.7491, - "error": 0.0490999999999997 - }, - { - "songno": "1210", - "diff": "oni", - "actual": 3.2, - "predicted": 3.249, - "error": 0.04899999999999993 - }, - { - "songno": "501", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6487, - "error": 0.04870000000000019 - }, - { - "songno": "672", - "diff": "oni", - "actual": 2.4, - "predicted": 2.4484, - "error": 0.0484 - }, - { - "songno": "973", - "diff": "oni", - "actual": 4, - "predicted": 3.9518, - "error": 0.04820000000000002 - }, - { - "songno": "1172", - "diff": "oni", - "actual": 11.9, - "predicted": 11.8518, - "error": 0.048199999999999577 - }, - { - "songno": "869", - "diff": "oni", - "actual": 10.9, - "predicted": 10.9481, - "error": 0.04809999999999981 - }, - { - "songno": "218", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6528, - "error": 0.04720000000000013 - }, - { - "songno": "1132", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0531, - "error": 0.04689999999999994 - }, - { - "songno": "149", - "diff": "oni", - "actual": 4.8, - "predicted": 4.8466, - "error": 0.04659999999999975 - }, - { - "songno": "169", - "diff": "oni", - "actual": 3.7, - "predicted": 3.7465, - "error": 0.046499999999999986 - }, - { - "songno": "975", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3465, - "error": 0.046499999999999986 - }, - { - "songno": "1465", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7536, - "error": 0.04640000000000022 - }, - { - "songno": "727", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7462, - "error": 0.0461999999999998 - }, - { - "songno": "1042", - "diff": "oni", - "actual": 10.1, - "predicted": 10.1461, - "error": 0.04610000000000092 - }, - { - "songno": "338", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2541, - "error": 0.045900000000001384 - }, - { - "songno": "27", - "diff": "oni", - "actual": 3.1, - "predicted": 3.0542, - "error": 0.045800000000000285 - }, - { - "songno": "1041", - "diff": "oni", - "actual": 10.9, - "predicted": 10.9458, - "error": 0.04579999999999984 - }, - { - "songno": "555", - "diff": "oni", - "actual": 11.3, - "predicted": 11.2547, - "error": 0.045300000000001006 - }, - { - "songno": "865", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5547, - "error": 0.04529999999999923 - }, - { - "songno": "1092", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7452, - "error": 0.04519999999999946 - }, - { - "songno": "783", - "diff": "oni", - "actual": 6, - "predicted": 5.955, - "error": 0.04499999999999993 - }, - { - "songno": "1312", - "diff": "ura", - "actual": 6.3, - "predicted": 6.345, - "error": 0.04499999999999993 - }, - { - "songno": "402", - "diff": "ura", - "actual": 9.6, - "predicted": 9.6448, - "error": 0.044800000000000395 - }, - { - "songno": "685", - "diff": "oni", - "actual": 10.4, - "predicted": 10.3552, - "error": 0.044800000000000395 - }, - { - "songno": "93", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9448, - "error": 0.04479999999999951 - }, - { - "songno": "116", - "diff": "oni", - "actual": 2.8, - "predicted": 2.7554, - "error": 0.04459999999999997 - }, - { - "songno": "1019", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4555, - "error": 0.044500000000000206 - }, - { - "songno": "1329", - "diff": "oni", - "actual": 7.4, - "predicted": 7.3557, - "error": 0.04430000000000067 - }, - { - "songno": "438", - "diff": "oni", - "actual": 7.7, - "predicted": 7.7443, - "error": 0.044299999999999784 - }, - { - "songno": "746", - "diff": "oni", - "actual": 8, - "predicted": 7.9557, - "error": 0.044299999999999784 - }, - { - "songno": "412", - "diff": "oni", - "actual": 7, - "predicted": 6.9559, - "error": 0.04410000000000025 - }, - { - "songno": "1360", - "diff": "oni", - "actual": 5.2, - "predicted": 5.1565, - "error": 0.04349999999999987 - }, - { - "songno": "1119", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2433, - "error": 0.04329999999999945 - }, - { - "songno": "1002", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8569, - "error": 0.043099999999999916 - }, - { - "songno": "135", - "diff": "ura", - "actual": 5.8, - "predicted": 5.7569, - "error": 0.043099999999999916 - }, - { - "songno": "662", - "diff": "oni", - "actual": 7.4, - "predicted": 7.3574, - "error": 0.04260000000000019 - }, - { - "songno": "881", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6575, - "error": 0.042500000000000426 - }, - { - "songno": "981", - "diff": "ura", - "actual": 7.1, - "predicted": 7.1424, - "error": 0.04240000000000066 - }, - { - "songno": "919", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5577, - "error": 0.042300000000000004 - }, - { - "songno": "561", - "diff": "oni", - "actual": 5.5, - "predicted": 5.5419, - "error": 0.04190000000000005 - }, - { - "songno": "164", - "diff": "ura", - "actual": 9.8, - "predicted": 9.7581, - "error": 0.04190000000000005 - }, - { - "songno": "321", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2581, - "error": 0.04190000000000005 - }, - { - "songno": "388", - "diff": "oni", - "actual": 9, - "predicted": 8.9583, - "error": 0.041700000000000514 - }, - { - "songno": "1039", - "diff": "oni", - "actual": 9.2, - "predicted": 9.1583, - "error": 0.04169999999999874 - }, - { - "songno": "1242", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7584, - "error": 0.04159999999999986 - }, - { - "songno": "159", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4584, - "error": 0.04159999999999986 - }, - { - "songno": "1198", - "diff": "oni", - "actual": 7, - "predicted": 6.9584, - "error": 0.04159999999999986 - }, - { - "songno": "211", - "diff": "oni", - "actual": 7.8, - "predicted": 7.8415, - "error": 0.04150000000000009 - }, - { - "songno": "307", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0585, - "error": 0.041499999999999204 - }, - { - "songno": "276", - "diff": "oni", - "actual": 3.7, - "predicted": 3.7414, - "error": 0.04139999999999988 - }, - { - "songno": "1178", - "diff": "oni", - "actual": 3.5, - "predicted": 3.5413, - "error": 0.041300000000000114 - }, - { - "songno": "1257", - "diff": "oni", - "actual": 9, - "predicted": 8.9587, - "error": 0.04129999999999967 - }, - { - "songno": "450", - "diff": "oni", - "actual": 9, - "predicted": 8.9587, - "error": 0.04129999999999967 - }, - { - "songno": "993", - "diff": "oni", - "actual": 10, - "predicted": 9.9589, - "error": 0.041100000000000136 - }, - { - "songno": "717", - "diff": "oni", - "actual": 5.6, - "predicted": 5.641, - "error": 0.04100000000000037 - }, - { - "songno": "1235", - "diff": "oni", - "actual": 7.8, - "predicted": 7.759, - "error": 0.04099999999999948 - }, - { - "songno": "716", - "diff": "ura", - "actual": 10.9, - "predicted": 10.8591, - "error": 0.0409000000000006 - }, - { - "songno": "1033", - "diff": "ura", - "actual": 8.6, - "predicted": 8.6409, - "error": 0.0409000000000006 - }, - { - "songno": "1191", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4408, - "error": 0.04079999999999995 - }, - { - "songno": "816", - "diff": "ura", - "actual": 11.2, - "predicted": 11.1597, - "error": 0.04029999999999845 - }, - { - "songno": "1121", - "diff": "oni", - "actual": 8.6, - "predicted": 8.6402, - "error": 0.04020000000000046 - }, - { - "songno": "82", - "diff": "oni", - "actual": 5.7, - "predicted": 5.6598, - "error": 0.04020000000000046 - }, - { - "songno": "13", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2402, - "error": 0.04019999999999957 - }, - { - "songno": "270", - "diff": "ura", - "actual": 6.9, - "predicted": 6.9402, - "error": 0.04019999999999957 - }, - { - "songno": "624", - "diff": "oni", - "actual": 5.6, - "predicted": 5.6401, - "error": 0.04010000000000069 - }, - { - "songno": "1082", - "diff": "oni", - "actual": 5, - "predicted": 5.04, - "error": 0.040000000000000036 - }, - { - "songno": "395", - "diff": "oni", - "actual": 7.7, - "predicted": 7.66, - "error": 0.040000000000000036 - }, - { - "songno": "1383", - "diff": "oni", - "actual": 9.3, - "predicted": 9.34, - "error": 0.03999999999999915 - }, - { - "songno": "981", - "diff": "oni", - "actual": 3.3, - "predicted": 3.3398, - "error": 0.03980000000000006 - }, - { - "songno": "49", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2603, - "error": 0.039699999999999847 - }, - { - "songno": "274", - "diff": "ura", - "actual": 5, - "predicted": 5.0395, - "error": 0.03950000000000031 - }, - { - "songno": "814", - "diff": "oni", - "actual": 10.2, - "predicted": 10.1606, - "error": 0.03939999999999877 - }, - { - "songno": "635", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4607, - "error": 0.03930000000000078 - }, - { - "songno": "1033", - "diff": "oni", - "actual": 4.3, - "predicted": 4.3392, - "error": 0.039200000000000124 - }, - { - "songno": "573", - "diff": "oni", - "actual": 8, - "predicted": 8.0389, - "error": 0.038899999999999935 - }, - { - "songno": "113", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7387, - "error": 0.03869999999999951 - }, - { - "songno": "472", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9385, - "error": 0.03849999999999998 - }, - { - "songno": "757", - "diff": "oni", - "actual": 10.5, - "predicted": 10.5384, - "error": 0.038399999999999324 - }, - { - "songno": "1146", - "diff": "ura", - "actual": 9.7, - "predicted": 9.7383, - "error": 0.03830000000000133 - }, - { - "songno": "1104", - "diff": "oni", - "actual": 9.7, - "predicted": 9.7383, - "error": 0.03830000000000133 - }, - { - "songno": "1264", - "diff": "ura", - "actual": 9.7, - "predicted": 9.7383, - "error": 0.03830000000000133 - }, - { - "songno": "548", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4619, - "error": 0.03810000000000002 - }, - { - "songno": "1369", - "diff": "oni", - "actual": 11.8, - "predicted": 11.762, - "error": 0.038000000000000256 - }, - { - "songno": "126", - "diff": "oni", - "actual": 4.6, - "predicted": 4.638, - "error": 0.038000000000000256 - }, - { - "songno": "889", - "diff": "oni", - "actual": 4.2, - "predicted": 4.238, - "error": 0.038000000000000256 - }, - { - "songno": "982", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9377, - "error": 0.03769999999999918 - }, - { - "songno": "1111", - "diff": "oni", - "actual": 4, - "predicted": 4.0376, - "error": 0.0376000000000003 - }, - { - "songno": "933", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0624, - "error": 0.03759999999999941 - }, - { - "songno": "453", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5373, - "error": 0.03730000000000011 - }, - { - "songno": "908", - "diff": "oni", - "actual": 6, - "predicted": 6.0372, - "error": 0.037200000000000344 - }, - { - "songno": "610", - "diff": "oni", - "actual": 6, - "predicted": 6.0372, - "error": 0.037200000000000344 - }, - { - "songno": "253", - "diff": "ura", - "actual": 7.9, - "predicted": 7.8629, - "error": 0.03710000000000058 - }, - { - "songno": "1226", - "diff": "oni", - "actual": 3.5, - "predicted": 3.5369, - "error": 0.036900000000000155 - }, - { - "songno": "1351", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2632, - "error": 0.036800000000001276 - }, - { - "songno": "809", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4365, - "error": 0.0365000000000002 - }, - { - "songno": "1084", - "diff": "ura", - "actual": 6.7, - "predicted": 6.7362, - "error": 0.03620000000000001 - }, - { - "songno": "1034", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9359, - "error": 0.03589999999999982 - }, - { - "songno": "1457", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4358, - "error": 0.035800000000000054 - }, - { - "songno": "843", - "diff": "oni", - "actual": 10, - "predicted": 10.0357, - "error": 0.03570000000000029 - }, - { - "songno": "139", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7645, - "error": 0.035499999999999865 - }, - { - "songno": "48", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5645, - "error": 0.035499999999999865 - }, - { - "songno": "390", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7646, - "error": 0.0354000000000001 - }, - { - "songno": "1320", - "diff": "ura", - "actual": 10.7, - "predicted": 10.7352, - "error": 0.03520000000000145 - }, - { - "songno": "1248", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5648, - "error": 0.035199999999999676 - }, - { - "songno": "479", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8652, - "error": 0.03480000000000061 - }, - { - "songno": "1193", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4346, - "error": 0.0345999999999993 - }, - { - "songno": "742", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8655, - "error": 0.03450000000000042 - }, - { - "songno": "1323", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7655, - "error": 0.03449999999999953 - }, - { - "songno": "1320", - "diff": "oni", - "actual": 8, - "predicted": 8.0344, - "error": 0.034399999999999764 - }, - { - "songno": "1120", - "diff": "ura", - "actual": 11.4, - "predicted": 11.4344, - "error": 0.034399999999999764 - }, - { - "songno": "248", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6658, - "error": 0.034199999999998454 - }, - { - "songno": "1032", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9341, - "error": 0.03410000000000002 - }, - { - "songno": "706", - "diff": "oni", - "actual": 3.3, - "predicted": 3.266, - "error": 0.03399999999999981 - }, - { - "songno": "1067", - "diff": "ura", - "actual": 8.2, - "predicted": 8.166, - "error": 0.03399999999999892 - }, - { - "songno": "1129", - "diff": "ura", - "actual": 11.8, - "predicted": 11.7662, - "error": 0.03380000000000116 - }, - { - "songno": "1155", - "diff": "oni", - "actual": 4.3, - "predicted": 4.2662, - "error": 0.033799999999999386 - }, - { - "songno": "493", - "diff": "oni", - "actual": 3.8, - "predicted": 3.7663, - "error": 0.03369999999999962 - }, - { - "songno": "835", - "diff": "oni", - "actual": 10.2, - "predicted": 10.1665, - "error": 0.033500000000000085 - }, - { - "songno": "1317", - "diff": "oni", - "actual": 11.2, - "predicted": 11.2335, - "error": 0.033500000000000085 - }, - { - "songno": "927", - "diff": "oni", - "actual": 8.9, - "predicted": 8.9331, - "error": 0.03309999999999924 - }, - { - "songno": "617", - "diff": "oni", - "actual": 5.6, - "predicted": 5.633, - "error": 0.03300000000000036 - }, - { - "songno": "278", - "diff": "ura", - "actual": 6.5, - "predicted": 6.467, - "error": 0.03300000000000036 - }, - { - "songno": "304", - "diff": "oni", - "actual": 5.6, - "predicted": 5.567, - "error": 0.032999999999999474 - }, - { - "songno": "700", - "diff": "ura", - "actual": 11, - "predicted": 11.0329, - "error": 0.03289999999999971 - }, - { - "songno": "1414", - "diff": "ura", - "actual": 7.8, - "predicted": 7.7671, - "error": 0.03289999999999971 - }, - { - "songno": "1321", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8328, - "error": 0.03279999999999994 - }, - { - "songno": "399", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6327, - "error": 0.03270000000000017 - }, - { - "songno": "400", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6327, - "error": 0.03270000000000017 - }, - { - "songno": "120", - "diff": "oni", - "actual": 11.9, - "predicted": 11.8674, - "error": 0.032600000000000406 - }, - { - "songno": "1", - "diff": "oni", - "actual": 9, - "predicted": 8.9675, - "error": 0.03250000000000064 - }, - { - "songno": "86", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7676, - "error": 0.032399999999999984 - }, - { - "songno": "1413", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5682, - "error": 0.031799999999999606 - }, - { - "songno": "336", - "diff": "oni", - "actual": 11.8, - "predicted": 11.7683, - "error": 0.03170000000000073 - }, - { - "songno": "1310", - "diff": "oni", - "actual": 6, - "predicted": 5.9683, - "error": 0.03169999999999984 - }, - { - "songno": "1413", - "diff": "ura", - "actual": 10.8, - "predicted": 10.7684, - "error": 0.03160000000000096 - }, - { - "songno": "1080", - "diff": "oni", - "actual": 8, - "predicted": 7.9684, - "error": 0.03160000000000007 - }, - { - "songno": "179", - "diff": "oni", - "actual": 10.2, - "predicted": 10.2315, - "error": 0.031500000000001194 - }, - { - "songno": "954", - "diff": "oni", - "actual": 9.7, - "predicted": 9.6685, - "error": 0.03149999999999942 - }, - { - "songno": "888", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1314, - "error": 0.03140000000000054 - }, - { - "songno": "730", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1314, - "error": 0.03140000000000054 - }, - { - "songno": "324", - "diff": "ura", - "actual": 8.9, - "predicted": 8.8688, - "error": 0.031200000000000117 - }, - { - "songno": "436", - "diff": "oni", - "actual": 3.7, - "predicted": 3.7311, - "error": 0.031099999999999905 - }, - { - "songno": "601", - "diff": "ura", - "actual": 7.4, - "predicted": 7.369, - "error": 0.031000000000000583 - }, - { - "songno": "867", - "diff": "oni", - "actual": 9, - "predicted": 9.031, - "error": 0.031000000000000583 - }, - { - "songno": "482", - "diff": "ura", - "actual": 5.2, - "predicted": 5.231, - "error": 0.030999999999999694 - }, - { - "songno": "1147", - "diff": "oni", - "actual": 9.1, - "predicted": 9.069, - "error": 0.030999999999998806 - }, - { - "songno": "451", - "diff": "ura", - "actual": 11.1, - "predicted": 11.0691, - "error": 0.03089999999999904 - }, - { - "songno": "45", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9307, - "error": 0.030699999999999505 - }, - { - "songno": "1302", - "diff": "oni", - "actual": 1.4, - "predicted": 1.4306, - "error": 0.030600000000000183 - }, - { - "songno": "1262", - "diff": "oni", - "actual": 4.3, - "predicted": 4.3306, - "error": 0.03059999999999974 - }, - { - "songno": "323", - "diff": "oni", - "actual": 4.3, - "predicted": 4.3306, - "error": 0.03059999999999974 - }, - { - "songno": "43", - "diff": "ura", - "actual": 10.1, - "predicted": 10.0695, - "error": 0.03049999999999997 - }, - { - "songno": "163", - "diff": "ura", - "actual": 7.2, - "predicted": 7.1697, - "error": 0.030300000000000438 - }, - { - "songno": "980", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7698, - "error": 0.03020000000000067 - }, - { - "songno": "763", - "diff": "oni", - "actual": 10.8, - "predicted": 10.7699, - "error": 0.030100000000000904 - }, - { - "songno": "100", - "diff": "ura", - "actual": 7, - "predicted": 7.0301, - "error": 0.030100000000000016 - }, - { - "songno": "163", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7699, - "error": 0.030100000000000016 - }, - { - "songno": "569", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2301, - "error": 0.030100000000000016 - }, - { - "songno": "347", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7301, - "error": 0.030100000000000016 - }, - { - "songno": "534", - "diff": "oni", - "actual": 4, - "predicted": 4.0301, - "error": 0.030100000000000016 - }, - { - "songno": "924", - "diff": "oni", - "actual": 2.8, - "predicted": 2.77, - "error": 0.029999999999999805 - }, - { - "songno": "1015", - "diff": "oni", - "actual": 8.7, - "predicted": 8.67, - "error": 0.02999999999999936 - }, - { - "songno": "1380", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8702, - "error": 0.029800000000000715 - }, - { - "songno": "1406", - "diff": "oni", - "actual": 11.4, - "predicted": 11.3702, - "error": 0.029799999999999827 - }, - { - "songno": "1169", - "diff": "oni", - "actual": 3.6, - "predicted": 3.5703, - "error": 0.02970000000000006 - }, - { - "songno": "218", - "diff": "ura", - "actual": 10.3, - "predicted": 10.2703, - "error": 0.02970000000000006 - }, - { - "songno": "803", - "diff": "oni", - "actual": 8.9, - "predicted": 8.9297, - "error": 0.02970000000000006 - }, - { - "songno": "154", - "diff": "ura", - "actual": 9.8, - "predicted": 9.7704, - "error": 0.029600000000000293 - }, - { - "songno": "22", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4705, - "error": 0.029499999999999638 - }, - { - "songno": "200", - "diff": "ura", - "actual": 6.7, - "predicted": 6.7294, - "error": 0.02939999999999987 - }, - { - "songno": "556", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4294, - "error": 0.02939999999999987 - }, - { - "songno": "756", - "diff": "oni", - "actual": 10.3, - "predicted": 10.3294, - "error": 0.029399999999998983 - }, - { - "songno": "360", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2293, - "error": 0.029300000000000992 - }, - { - "songno": "774", - "diff": "oni", - "actual": 9, - "predicted": 9.0292, - "error": 0.02919999999999945 - }, - { - "songno": "741", - "diff": "ura", - "actual": 7.4, - "predicted": 7.3709, - "error": 0.02910000000000057 - }, - { - "songno": "1353", - "diff": "ura", - "actual": 7.8, - "predicted": 7.7709, - "error": 0.02909999999999968 - }, - { - "songno": "1174", - "diff": "oni", - "actual": 6.2, - "predicted": 6.2285, - "error": 0.028500000000000192 - }, - { - "songno": "911", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7285, - "error": 0.028500000000000192 - }, - { - "songno": "994", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2716, - "error": 0.028400000000001313 - }, - { - "songno": "491", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2283, - "error": 0.028300000000001546 - }, - { - "songno": "1308", - "diff": "ura", - "actual": 10.6, - "predicted": 10.5717, - "error": 0.02829999999999977 - }, - { - "songno": "1309", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4717, - "error": 0.02829999999999977 - }, - { - "songno": "366", - "diff": "ura", - "actual": 4.9, - "predicted": 4.9283, - "error": 0.02829999999999977 - }, - { - "songno": "999", - "diff": "oni", - "actual": 10.8, - "predicted": 10.7718, - "error": 0.028200000000000003 - }, - { - "songno": "1080", - "diff": "ura", - "actual": 11.5, - "predicted": 11.4719, - "error": 0.028100000000000236 - }, - { - "songno": "518", - "diff": "oni", - "actual": 11.4, - "predicted": 11.4281, - "error": 0.028100000000000236 - }, - { - "songno": "349", - "diff": "oni", - "actual": 6.8, - "predicted": 6.772, - "error": 0.02799999999999958 - }, - { - "songno": "817", - "diff": "oni", - "actual": 8, - "predicted": 8.0279, - "error": 0.027900000000000702 - }, - { - "songno": "1179", - "diff": "oni", - "actual": 5, - "predicted": 5.0276, - "error": 0.027599999999999625 - }, - { - "songno": "864", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0724, - "error": 0.027599999999999625 - }, - { - "songno": "396", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7726, - "error": 0.02740000000000009 - }, - { - "songno": "1042", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5273, - "error": 0.027300000000000324 - }, - { - "songno": "507", - "diff": "oni", - "actual": 5.8, - "predicted": 5.827, - "error": 0.027000000000000135 - }, - { - "songno": "1345", - "diff": "oni", - "actual": 4.5, - "predicted": 4.527, - "error": 0.027000000000000135 - }, - { - "songno": "1418", - "diff": "oni", - "actual": 8, - "predicted": 8.0269, - "error": 0.02689999999999948 - }, - { - "songno": "397", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8732, - "error": 0.0268000000000006 - }, - { - "songno": "1050", - "diff": "oni", - "actual": 9.2, - "predicted": 9.1733, - "error": 0.026699999999999946 - }, - { - "songno": "1031", - "diff": "ura", - "actual": 10.5, - "predicted": 10.5267, - "error": 0.026699999999999946 - }, - { - "songno": "1255", - "diff": "oni", - "actual": 10.4, - "predicted": 10.4266, - "error": 0.02660000000000018 - }, - { - "songno": "920", - "diff": "oni", - "actual": 4.9, - "predicted": 4.9266, - "error": 0.02659999999999929 - }, - { - "songno": "1012", - "diff": "ura", - "actual": 11.1, - "predicted": 11.0735, - "error": 0.026500000000000412 - }, - { - "songno": "588", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2264, - "error": 0.026400000000000645 - }, - { - "songno": "301", - "diff": "oni", - "actual": 2.8, - "predicted": 2.8264, - "error": 0.0264000000000002 - }, - { - "songno": "754", - "diff": "oni", - "actual": 5, - "predicted": 4.9737, - "error": 0.02629999999999999 - }, - { - "songno": "1213", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3263, - "error": 0.02629999999999999 - }, - { - "songno": "1048", - "diff": "oni", - "actual": 9.4, - "predicted": 9.4261, - "error": 0.026099999999999568 - }, - { - "songno": "964", - "diff": "oni", - "actual": 2.4, - "predicted": 2.426, - "error": 0.026000000000000245 - }, - { - "songno": "1231", - "diff": "oni", - "actual": 5.7, - "predicted": 5.726, - "error": 0.0259999999999998 - }, - { - "songno": "1168", - "diff": "ura", - "actual": 8.4, - "predicted": 8.4259, - "error": 0.025900000000000034 - }, - { - "songno": "131", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2257, - "error": 0.0257000000000005 - }, - { - "songno": "1116", - "diff": "oni", - "actual": 4.2, - "predicted": 4.1743, - "error": 0.0257000000000005 - }, - { - "songno": "31", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0744, - "error": 0.025599999999998957 - }, - { - "songno": "429", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6745, - "error": 0.025500000000000078 - }, - { - "songno": "1354", - "diff": "oni", - "actual": 7, - "predicted": 7.0255, - "error": 0.025500000000000078 - }, - { - "songno": "917", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6745, - "error": 0.025500000000000078 - }, - { - "songno": "684", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4746, - "error": 0.02540000000000031 - }, - { - "songno": "451", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2252, - "error": 0.02519999999999989 - }, - { - "songno": "431", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5749, - "error": 0.025099999999999234 - }, - { - "songno": "918", - "diff": "oni", - "actual": 6.4, - "predicted": 6.375, - "error": 0.025000000000000355 - }, - { - "songno": "95", - "diff": "ura", - "actual": 9.6, - "predicted": 9.625, - "error": 0.025000000000000355 - }, - { - "songno": "859", - "diff": "oni", - "actual": 10.2, - "predicted": 10.175, - "error": 0.02499999999999858 - }, - { - "songno": "150", - "diff": "ura", - "actual": 9.4, - "predicted": 9.4249, - "error": 0.024899999999998812 - }, - { - "songno": "660", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6247, - "error": 0.024700000000000166 - }, - { - "songno": "510", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3247, - "error": 0.024700000000000166 - }, - { - "songno": "283", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4754, - "error": 0.02459999999999951 - }, - { - "songno": "1154", - "diff": "oni", - "actual": 8.9, - "predicted": 8.9243, - "error": 0.02430000000000021 - }, - { - "songno": "1067", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2241, - "error": 0.024100000000000676 - }, - { - "songno": "648", - "diff": "ura", - "actual": 7.1, - "predicted": 7.124, - "error": 0.02400000000000002 - }, - { - "songno": "71", - "diff": "oni", - "actual": 6, - "predicted": 6.024, - "error": 0.02400000000000002 - }, - { - "songno": "1256", - "diff": "ura", - "actual": 10.6, - "predicted": 10.5762, - "error": 0.0237999999999996 - }, - { - "songno": "554", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9237, - "error": 0.023699999999999832 - }, - { - "songno": "257", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3237, - "error": 0.023699999999999832 - }, - { - "songno": "114", - "diff": "oni", - "actual": 7, - "predicted": 6.9764, - "error": 0.023600000000000065 - }, - { - "songno": "605", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8765, - "error": 0.0235000000000003 - }, - { - "songno": "1345", - "diff": "ura", - "actual": 7.6, - "predicted": 7.5765, - "error": 0.02349999999999941 - }, - { - "songno": "688", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3234, - "error": 0.02340000000000053 - }, - { - "songno": "565", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6766, - "error": 0.02340000000000053 - }, - { - "songno": "1076", - "diff": "oni", - "actual": 2.1, - "predicted": 2.0766, - "error": 0.023400000000000087 - }, - { - "songno": "458", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2766, - "error": 0.023399999999999643 - }, - { - "songno": "882", - "diff": "ura", - "actual": 5.4, - "predicted": 5.3767, - "error": 0.023300000000000765 - }, - { - "songno": "177", - "diff": "oni", - "actual": 2, - "predicted": 2.0233, - "error": 0.023299999999999876 - }, - { - "songno": "1277", - "diff": "oni", - "actual": 5, - "predicted": 5.0233, - "error": 0.023299999999999876 - }, - { - "songno": "375", - "diff": "oni", - "actual": 8.7, - "predicted": 8.6767, - "error": 0.023299999999998988 - }, - { - "songno": "266", - "diff": "ura", - "actual": 9.1, - "predicted": 9.0769, - "error": 0.023099999999999454 - }, - { - "songno": "1433", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4771, - "error": 0.02289999999999992 - }, - { - "songno": "1427", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6229, - "error": 0.02289999999999992 - }, - { - "songno": "1455", - "diff": "ura", - "actual": 8.5, - "predicted": 8.5226, - "error": 0.02260000000000062 - }, - { - "songno": "1173", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2224, - "error": 0.022400000000001086 - }, - { - "songno": "776", - "diff": "oni", - "actual": 7.7, - "predicted": 7.7224, - "error": 0.022400000000000198 - }, - { - "songno": "1366", - "diff": "ura", - "actual": 8, - "predicted": 7.9776, - "error": 0.022400000000000198 - }, - { - "songno": "389", - "diff": "oni", - "actual": 6.2, - "predicted": 6.1777, - "error": 0.02230000000000043 - }, - { - "songno": "504", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0777, - "error": 0.022299999999999542 - }, - { - "songno": "834", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5223, - "error": 0.022299999999999542 - }, - { - "songno": "770", - "diff": "oni", - "actual": 6.9, - "predicted": 6.9222, - "error": 0.022199999999999775 - }, - { - "songno": "322", - "diff": "oni", - "actual": 7, - "predicted": 6.9778, - "error": 0.022199999999999775 - }, - { - "songno": "845", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5221, - "error": 0.02210000000000001 - }, - { - "songno": "454", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6779, - "error": 0.02210000000000001 - }, - { - "songno": "107", - "diff": "oni", - "actual": 4.6, - "predicted": 4.578, - "error": 0.021999999999999353 - }, - { - "songno": "184", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2219, - "error": 0.021899999999999586 - }, - { - "songno": "626", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3217, - "error": 0.021700000000000053 - }, - { - "songno": "689", - "diff": "ura", - "actual": 8.9, - "predicted": 8.9214, - "error": 0.021399999999999864 - }, - { - "songno": "1196", - "diff": "ura", - "actual": 11.7, - "predicted": 11.6787, - "error": 0.021300000000000097 - }, - { - "songno": "1106", - "diff": "oni", - "actual": 9.1, - "predicted": 9.0787, - "error": 0.021300000000000097 - }, - { - "songno": "1344", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6788, - "error": 0.02120000000000033 - }, - { - "songno": "583", - "diff": "oni", - "actual": 2.9, - "predicted": 2.8789, - "error": 0.02110000000000012 - }, - { - "songno": "155", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2211, - "error": 0.021099999999999675 - }, - { - "songno": "284", - "diff": "ura", - "actual": 6.2, - "predicted": 6.221, - "error": 0.020999999999999908 - }, - { - "songno": "929", - "diff": "oni", - "actual": 8.3, - "predicted": 8.321, - "error": 0.02099999999999902 - }, - { - "songno": "97", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5208, - "error": 0.020800000000000374 - }, - { - "songno": "764", - "diff": "oni", - "actual": 11.2, - "predicted": 11.1792, - "error": 0.020799999999999486 - }, - { - "songno": "880", - "diff": "oni", - "actual": 5, - "predicted": 4.9793, - "error": 0.02069999999999972 - }, - { - "songno": "856", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7794, - "error": 0.02059999999999995 - }, - { - "songno": "553", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7205, - "error": 0.020500000000000185 - }, - { - "songno": "1158", - "diff": "oni", - "actual": 8.6, - "predicted": 8.5796, - "error": 0.020400000000000418 - }, - { - "songno": "403", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2796, - "error": 0.02039999999999953 - }, - { - "songno": "1196", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6203, - "error": 0.02030000000000065 - }, - { - "songno": "288", - "diff": "oni", - "actual": 8.2, - "predicted": 8.18, - "error": 0.019999999999999574 - }, - { - "songno": "517", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2196, - "error": 0.019600000000000506 - }, - { - "songno": "1366", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6804, - "error": 0.019600000000000506 - }, - { - "songno": "940", - "diff": "oni", - "actual": 9.1, - "predicted": 9.1195, - "error": 0.01950000000000074 - }, - { - "songno": "350", - "diff": "oni", - "actual": 5.5, - "predicted": 5.5195, - "error": 0.01949999999999985 - }, - { - "songno": "677", - "diff": "oni", - "actual": 8.9, - "predicted": 8.9194, - "error": 0.019399999999999196 - }, - { - "songno": "645", - "diff": "ura", - "actual": 7.6, - "predicted": 7.6192, - "error": 0.01920000000000055 - }, - { - "songno": "266", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2808, - "error": 0.019199999999999662 - }, - { - "songno": "52", - "diff": "oni", - "actual": 5.2, - "predicted": 5.181, - "error": 0.019000000000000128 - }, - { - "songno": "286", - "diff": "oni", - "actual": 10, - "predicted": 9.981, - "error": 0.019000000000000128 - }, - { - "songno": "483", - "diff": "oni", - "actual": 7.1, - "predicted": 7.081, - "error": 0.01899999999999924 - }, - { - "songno": "628", - "diff": "oni", - "actual": 10.7, - "predicted": 10.7189, - "error": 0.01890000000000036 - }, - { - "songno": "998", - "diff": "oni", - "actual": 5, - "predicted": 4.9811, - "error": 0.01890000000000036 - }, - { - "songno": "875", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1188, - "error": 0.018800000000000594 - }, - { - "songno": "1043", - "diff": "oni", - "actual": 9.8, - "predicted": 9.7814, - "error": 0.01860000000000106 - }, - { - "songno": "895", - "diff": "oni", - "actual": 1, - "predicted": 1.0185, - "error": 0.01849999999999996 - }, - { - "songno": "736", - "diff": "oni", - "actual": 3.5, - "predicted": 3.4816, - "error": 0.018400000000000194 - }, - { - "songno": "269", - "diff": "oni", - "actual": 9.5, - "predicted": 9.4816, - "error": 0.01839999999999975 - }, - { - "songno": "1056", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7181, - "error": 0.01809999999999956 - }, - { - "songno": "1012", - "diff": "oni", - "actual": 9.7, - "predicted": 9.682, - "error": 0.017999999999998906 - }, - { - "songno": "920", - "diff": "ura", - "actual": 9.2, - "predicted": 9.2179, - "error": 0.017900000000000915 - }, - { - "songno": "1161", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6179, - "error": 0.017900000000000027 - }, - { - "songno": "1108", - "diff": "oni", - "actual": 10.4, - "predicted": 10.4178, - "error": 0.017799999999999372 - }, - { - "songno": "778", - "diff": "oni", - "actual": 11, - "predicted": 10.9822, - "error": 0.017799999999999372 - }, - { - "songno": "595", - "diff": "oni", - "actual": 9.5, - "predicted": 9.5177, - "error": 0.017699999999999605 - }, - { - "songno": "1312", - "diff": "oni", - "actual": 2.9, - "predicted": 2.9176, - "error": 0.017600000000000282 - }, - { - "songno": "700", - "diff": "oni", - "actual": 9.6, - "predicted": 9.6176, - "error": 0.017599999999999838 - }, - { - "songno": "1384", - "diff": "oni", - "actual": 9.3, - "predicted": 9.3176, - "error": 0.017599999999999838 - }, - { - "songno": "187", - "diff": "ura", - "actual": 7.4, - "predicted": 7.4176, - "error": 0.017599999999999838 - }, - { - "songno": "1249", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2824, - "error": 0.017599999999999838 - }, - { - "songno": "868", - "diff": "oni", - "actual": 9.5, - "predicted": 9.5175, - "error": 0.01750000000000007 - }, - { - "songno": "447", - "diff": "oni", - "actual": 4, - "predicted": 4.0175, - "error": 0.01750000000000007 - }, - { - "songno": "1357", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0828, - "error": 0.017199999999998994 - }, - { - "songno": "593", - "diff": "oni", - "actual": 10.6, - "predicted": 10.5828, - "error": 0.017199999999998994 - }, - { - "songno": "9", - "diff": "ura", - "actual": 5.4, - "predicted": 5.4171, - "error": 0.017099999999999227 - }, - { - "songno": "1218", - "diff": "ura", - "actual": 6.6, - "predicted": 6.617, - "error": 0.017000000000000348 - }, - { - "songno": "995", - "diff": "oni", - "actual": 6.4, - "predicted": 6.383, - "error": 0.017000000000000348 - }, - { - "songno": "248", - "diff": "oni", - "actual": 6.2, - "predicted": 6.217, - "error": 0.01699999999999946 - }, - { - "songno": "653", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6831, - "error": 0.01690000000000058 - }, - { - "songno": "421", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9169, - "error": 0.016899999999999693 - }, - { - "songno": "1280", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9168, - "error": 0.016799999999999926 - }, - { - "songno": "1387", - "diff": "oni", - "actual": 4, - "predicted": 4.0168, - "error": 0.016799999999999926 - }, - { - "songno": "537", - "diff": "oni", - "actual": 6.9, - "predicted": 6.9168, - "error": 0.016799999999999926 - }, - { - "songno": "1072", - "diff": "ura", - "actual": 11.7, - "predicted": 11.7168, - "error": 0.016799999999999926 - }, - { - "songno": "446", - "diff": "oni", - "actual": 6.8, - "predicted": 6.8167, - "error": 0.01670000000000016 - }, - { - "songno": "962", - "diff": "oni", - "actual": 2.6, - "predicted": 2.6167, - "error": 0.016699999999999715 - }, - { - "songno": "222", - "diff": "ura", - "actual": 9, - "predicted": 9.0166, - "error": 0.016600000000000392 - }, - { - "songno": "127", - "diff": "oni", - "actual": 5.9, - "predicted": 5.8834, - "error": 0.016600000000000392 - }, - { - "songno": "907", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8836, - "error": 0.01639999999999997 - }, - { - "songno": "1334", - "diff": "oni", - "actual": 4, - "predicted": 4.0163, - "error": 0.016300000000000203 - }, - { - "songno": "750", - "diff": "oni", - "actual": 8.8, - "predicted": 8.784, - "error": 0.016000000000000014 - }, - { - "songno": "1260", - "diff": "oni", - "actual": 8.8, - "predicted": 8.784, - "error": 0.016000000000000014 - }, - { - "songno": "1144", - "diff": "oni", - "actual": 2.7, - "predicted": 2.6841, - "error": 0.015900000000000247 - }, - { - "songno": "361", - "diff": "ura", - "actual": 8.6, - "predicted": 8.5842, - "error": 0.01580000000000048 - }, - { - "songno": "722", - "diff": "oni", - "actual": 9.4, - "predicted": 9.3843, - "error": 0.015700000000000713 - }, - { - "songno": "380", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6156, - "error": 0.015600000000000058 - }, - { - "songno": "860", - "diff": "oni", - "actual": 10.6, - "predicted": 10.5848, - "error": 0.015200000000000102 - }, - { - "songno": "324", - "diff": "oni", - "actual": 5.6, - "predicted": 5.6151, - "error": 0.015100000000000335 - }, - { - "songno": "779", - "diff": "oni", - "actual": 8.5, - "predicted": 8.515, - "error": 0.015000000000000568 - }, - { - "songno": "1337", - "diff": "oni", - "actual": 3.9, - "predicted": 3.915, - "error": 0.015000000000000124 - }, - { - "songno": "984", - "diff": "oni", - "actual": 4.2, - "predicted": 4.215, - "error": 0.01499999999999968 - }, - { - "songno": "1370", - "diff": "oni", - "actual": 8.6, - "predicted": 8.585, - "error": 0.014999999999998792 - }, - { - "songno": "348", - "diff": "oni", - "actual": 3.9, - "predicted": 3.8851, - "error": 0.014899999999999913 - }, - { - "songno": "1402", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8149, - "error": 0.014899999999999913 - }, - { - "songno": "187", - "diff": "oni", - "actual": 7.4, - "predicted": 7.3852, - "error": 0.014800000000000146 - }, - { - "songno": "1405", - "diff": "oni", - "actual": 10.3, - "predicted": 10.3146, - "error": 0.014599999999999724 - }, - { - "songno": "1165", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9146, - "error": 0.014599999999999724 - }, - { - "songno": "233", - "diff": "oni", - "actual": 3.1, - "predicted": 3.0856, - "error": 0.01440000000000019 - }, - { - "songno": "41", - "diff": "oni", - "actual": 6.2, - "predicted": 6.2144, - "error": 0.01440000000000019 - }, - { - "songno": "423", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9143, - "error": 0.014299999999999535 - }, - { - "songno": "596", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7857, - "error": 0.014299999999999535 - }, - { - "songno": "542", - "diff": "oni", - "actual": 4.2, - "predicted": 4.2142, - "error": 0.014199999999999768 - }, - { - "songno": "1275", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0858, - "error": 0.014199999999999768 - }, - { - "songno": "857", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6859, - "error": 0.014100000000000001 - }, - { - "songno": "1068", - "diff": "oni", - "actual": 9.2, - "predicted": 9.1861, - "error": 0.01389999999999958 - }, - { - "songno": "1449", - "diff": "oni", - "actual": 8.9, - "predicted": 8.8861, - "error": 0.01389999999999958 - }, - { - "songno": "771", - "diff": "ura", - "actual": 7.2, - "predicted": 7.1862, - "error": 0.013799999999999812 - }, - { - "songno": "428", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5137, - "error": 0.013700000000000045 - }, - { - "songno": "519", - "diff": "oni", - "actual": 7.3, - "predicted": 7.3137, - "error": 0.013700000000000045 - }, - { - "songno": "91", - "diff": "oni", - "actual": 3.8, - "predicted": 3.7863, - "error": 0.013699999999999601 - }, - { - "songno": "1357", - "diff": "ura", - "actual": 8.4, - "predicted": 8.4136, - "error": 0.013600000000000279 - }, - { - "songno": "160", - "diff": "ura", - "actual": 8.2, - "predicted": 8.2135, - "error": 0.013500000000000512 - }, - { - "songno": "958", - "diff": "ura", - "actual": 10.7, - "predicted": 10.7135, - "error": 0.013500000000000512 - }, - { - "songno": "671", - "diff": "ura", - "actual": 6.5, - "predicted": 6.5135, - "error": 0.013499999999999623 - }, - { - "songno": "1455", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6134, - "error": 0.013400000000000745 - }, - { - "songno": "822", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2133, - "error": 0.01330000000000009 - }, - { - "songno": "609", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8133, - "error": 0.01330000000000009 - }, - { - "songno": "1180", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5132, - "error": 0.013200000000000323 - }, - { - "songno": "567", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0869, - "error": 0.013099999999999667 - }, - { - "songno": "866", - "diff": "ura", - "actual": 11, - "predicted": 11.0131, - "error": 0.013099999999999667 - }, - { - "songno": "1311", - "diff": "oni", - "actual": 6.7, - "predicted": 6.713, - "error": 0.0129999999999999 - }, - { - "songno": "406", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6873, - "error": 0.0127000000000006 - }, - { - "songno": "1364", - "diff": "ura", - "actual": 9.2, - "predicted": 9.1873, - "error": 0.012699999999998823 - }, - { - "songno": "309", - "diff": "ura", - "actual": 10.3, - "predicted": 10.2875, - "error": 0.012500000000001066 - }, - { - "songno": "1339", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5124, - "error": 0.01240000000000041 - }, - { - "songno": "1436", - "diff": "oni", - "actual": 6, - "predicted": 6.0123, - "error": 0.012299999999999756 - }, - { - "songno": "302", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0878, - "error": 0.012199999999999989 - }, - { - "songno": "422", - "diff": "ura", - "actual": 6.2, - "predicted": 6.2122, - "error": 0.012199999999999989 - }, - { - "songno": "80", - "diff": "ura", - "actual": 9.5, - "predicted": 9.4879, - "error": 0.012100000000000222 - }, - { - "songno": "399", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6879, - "error": 0.012099999999998445 - }, - { - "songno": "400", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6879, - "error": 0.012099999999998445 - }, - { - "songno": "1279", - "diff": "oni", - "actual": 8.4, - "predicted": 8.4119, - "error": 0.011899999999998911 - }, - { - "songno": "1217", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6882, - "error": 0.011800000000000033 - }, - { - "songno": "137", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1118, - "error": 0.011800000000000033 - }, - { - "songno": "1259", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1118, - "error": 0.011800000000000033 - }, - { - "songno": "1032", - "diff": "ura", - "actual": 11.6, - "predicted": 11.5883, - "error": 0.011699999999999378 - }, - { - "songno": "577", - "diff": "oni", - "actual": 9.8, - "predicted": 9.7886, - "error": 0.011400000000000077 - }, - { - "songno": "15", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4113, - "error": 0.011299999999999422 - }, - { - "songno": "1133", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7111, - "error": 0.011099999999999888 - }, - { - "songno": "417", - "diff": "ura", - "actual": 6.9, - "predicted": 6.9111, - "error": 0.011099999999999888 - }, - { - "songno": "1166", - "diff": "oni", - "actual": 7.8, - "predicted": 7.7891, - "error": 0.010899999999999466 - }, - { - "songno": "723", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9109, - "error": 0.010899999999999466 - }, - { - "songno": "1229", - "diff": "oni", - "actual": 9.7, - "predicted": 9.7108, - "error": 0.010800000000001475 - }, - { - "songno": "484", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3108, - "error": 0.010800000000000587 - }, - { - "songno": "1330", - "diff": "oni", - "actual": 1.6, - "predicted": 1.5892, - "error": 0.010800000000000143 - }, - { - "songno": "1236", - "diff": "oni", - "actual": 11.2, - "predicted": 11.1892, - "error": 0.010799999999999699 - }, - { - "songno": "726", - "diff": "oni", - "actual": 4.6, - "predicted": 4.5892, - "error": 0.010799999999999699 - }, - { - "songno": "1109", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7893, - "error": 0.010699999999999932 - }, - { - "songno": "261", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4107, - "error": 0.010699999999999932 - }, - { - "songno": "340", - "diff": "oni", - "actual": 5.2, - "predicted": 5.1894, - "error": 0.010600000000000165 - }, - { - "songno": "1176", - "diff": "oni", - "actual": 4, - "predicted": 4.0105, - "error": 0.010500000000000398 - }, - { - "songno": "1371", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4895, - "error": 0.010500000000000398 - }, - { - "songno": "1018", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8896, - "error": 0.010400000000000631 - }, - { - "songno": "541", - "diff": "oni", - "actual": 5.6, - "predicted": 5.6101, - "error": 0.010100000000000442 - }, - { - "songno": "1237", - "diff": "oni", - "actual": 4.5, - "predicted": 4.51, - "error": 0.009999999999999787 - }, - { - "songno": "553", - "diff": "ura", - "actual": 10.5, - "predicted": 10.51, - "error": 0.009999999999999787 - }, - { - "songno": "819", - "diff": "oni", - "actual": 8.6, - "predicted": 8.5901, - "error": 0.00990000000000002 - }, - { - "songno": "410", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5901, - "error": 0.00990000000000002 - }, - { - "songno": "226", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7098, - "error": 0.009800000000000253 - }, - { - "songno": "1347", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8906, - "error": 0.009400000000000297 - }, - { - "songno": "1388", - "diff": "ura", - "actual": 6.9, - "predicted": 6.8906, - "error": 0.009400000000000297 - }, - { - "songno": "717", - "diff": "ura", - "actual": 7.4, - "predicted": 7.3907, - "error": 0.00930000000000053 - }, - { - "songno": "440", - "diff": "oni", - "actual": 6.8, - "predicted": 6.8092, - "error": 0.009199999999999875 - }, - { - "songno": "251", - "diff": "oni", - "actual": 8.1, - "predicted": 8.1092, - "error": 0.009199999999999875 - }, - { - "songno": "118", - "diff": "ura", - "actual": 8.4, - "predicted": 8.3909, - "error": 0.009100000000000108 - }, - { - "songno": "213", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0909, - "error": 0.00909999999999922 - }, - { - "songno": "890", - "diff": "oni", - "actual": 11, - "predicted": 11.009, - "error": 0.009000000000000341 - }, - { - "songno": "463", - "diff": "oni", - "actual": 11.7, - "predicted": 11.709, - "error": 0.009000000000000341 - }, - { - "songno": "1365", - "diff": "oni", - "actual": 7.3, - "predicted": 7.291, - "error": 0.008999999999999453 - }, - { - "songno": "1424", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3911, - "error": 0.008900000000000574 - }, - { - "songno": "112", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4911, - "error": 0.008899999999999686 - }, - { - "songno": "1201", - "diff": "ura", - "actual": 9.9, - "predicted": 9.9086, - "error": 0.008599999999999497 - }, - { - "songno": "1194", - "diff": "oni", - "actual": 4.2, - "predicted": 4.2085, - "error": 0.00849999999999973 - }, - { - "songno": "63", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0915, - "error": 0.00849999999999973 - }, - { - "songno": "140", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2915, - "error": 0.00849999999999973 - }, - { - "songno": "166", - "diff": "oni", - "actual": 6, - "predicted": 5.9916, - "error": 0.008399999999999963 - }, - { - "songno": "983", - "diff": "oni", - "actual": 8.9, - "predicted": 8.9083, - "error": 0.008300000000000196 - }, - { - "songno": "403", - "diff": "ura", - "actual": 6.4, - "predicted": 6.4083, - "error": 0.008299999999999308 - }, - { - "songno": "737", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9082, - "error": 0.00820000000000043 - }, - { - "songno": "795", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2918, - "error": 0.008199999999999541 - }, - { - "songno": "236", - "diff": "oni", - "actual": 2.2, - "predicted": 2.1919, - "error": 0.008100000000000218 - }, - { - "songno": "1030", - "diff": "oni", - "actual": 4.9, - "predicted": 4.9081, - "error": 0.008099999999999774 - }, - { - "songno": "487", - "diff": "ura", - "actual": 6.6, - "predicted": 6.5919, - "error": 0.008099999999999774 - }, - { - "songno": "306", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2921, - "error": 0.00790000000000024 - }, - { - "songno": "1219", - "diff": "oni", - "actual": 4.4, - "predicted": 4.3921, - "error": 0.00790000000000024 - }, - { - "songno": "141", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6079, - "error": 0.00790000000000024 - }, - { - "songno": "1258", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6079, - "error": 0.00790000000000024 - }, - { - "songno": "960", - "diff": "oni", - "actual": 10.1, - "predicted": 10.0923, - "error": 0.007699999999999818 - }, - { - "songno": "1219", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2926, - "error": 0.007399999999999629 - }, - { - "songno": "639", - "diff": "oni", - "actual": 7, - "predicted": 6.9927, - "error": 0.007299999999999862 - }, - { - "songno": "513", - "diff": "oni", - "actual": 8.4, - "predicted": 8.4073, - "error": 0.007299999999998974 - }, - { - "songno": "1013", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2928, - "error": 0.007200000000000983 - }, - { - "songno": "977", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7928, - "error": 0.007200000000000983 - }, - { - "songno": "1044", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2928, - "error": 0.007200000000000095 - }, - { - "songno": "1103", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7929, - "error": 0.00709999999999944 - }, - { - "songno": "296", - "diff": "oni", - "actual": 6.2, - "predicted": 6.193, - "error": 0.007000000000000561 - }, - { - "songno": "445", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0932, - "error": 0.006799999999999251 - }, - { - "songno": "447", - "diff": "ura", - "actual": 6.2, - "predicted": 6.1933, - "error": 0.006700000000000372 - }, - { - "songno": "264", - "diff": "ura", - "actual": 9.9, - "predicted": 9.8934, - "error": 0.006600000000000605 - }, - { - "songno": "646", - "diff": "oni", - "actual": 2.3, - "predicted": 2.3066, - "error": 0.006600000000000161 - }, - { - "songno": "698", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9066, - "error": 0.006599999999998829 - }, - { - "songno": "275", - "diff": "ura", - "actual": 5.2, - "predicted": 5.1935, - "error": 0.00649999999999995 - }, - { - "songno": "173", - "diff": "oni", - "actual": 6, - "predicted": 6.0065, - "error": 0.00649999999999995 - }, - { - "songno": "1177", - "diff": "oni", - "actual": 3.4, - "predicted": 3.3935, - "error": 0.00649999999999995 - }, - { - "songno": "793", - "diff": "oni", - "actual": 3.1, - "predicted": 3.0936, - "error": 0.006400000000000183 - }, - { - "songno": "759", - "diff": "oni", - "actual": 9, - "predicted": 9.0064, - "error": 0.006399999999999295 - }, - { - "songno": "943", - "diff": "oni", - "actual": 9.6, - "predicted": 9.5936, - "error": 0.006399999999999295 - }, - { - "songno": "255", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4937, - "error": 0.006300000000000416 - }, - { - "songno": "95", - "diff": "oni", - "actual": 7.3, - "predicted": 7.2937, - "error": 0.006299999999999528 - }, - { - "songno": "502", - "diff": "oni", - "actual": 8.8, - "predicted": 8.8062, - "error": 0.006199999999999761 - }, - { - "songno": "277", - "diff": "ura", - "actual": 4.9, - "predicted": 4.9062, - "error": 0.006199999999999761 - }, - { - "songno": "520", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7062, - "error": 0.006199999999999761 - }, - { - "songno": "1170", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8939, - "error": 0.006099999999999994 - }, - { - "songno": "1215", - "diff": "oni", - "actual": 8.3, - "predicted": 8.294, - "error": 0.006000000000000227 - }, - { - "songno": "167", - "diff": "oni", - "actual": 7.1, - "predicted": 7.094, - "error": 0.005999999999999339 - }, - { - "songno": "721", - "diff": "oni", - "actual": 9.3, - "predicted": 9.306, - "error": 0.005999999999998451 - }, - { - "songno": "1267", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6941, - "error": 0.00590000000000046 - }, - { - "songno": "1322", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9058, - "error": 0.005799999999999805 - }, - { - "songno": "1273", - "diff": "oni", - "actual": 6.9, - "predicted": 6.9058, - "error": 0.005799999999999805 - }, - { - "songno": "297", - "diff": "oni", - "actual": 6, - "predicted": 5.9943, - "error": 0.005700000000000038 - }, - { - "songno": "191", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8946, - "error": 0.0054000000000007375 - }, - { - "songno": "1266", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8946, - "error": 0.0054000000000007375 - }, - { - "songno": "148", - "diff": "oni", - "actual": 9.7, - "predicted": 9.6946, - "error": 0.005399999999999849 - }, - { - "songno": "342", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7946, - "error": 0.005399999999999849 - }, - { - "songno": "552", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5054, - "error": 0.005399999999999849 - }, - { - "songno": "1251", - "diff": "ura", - "actual": 7, - "predicted": 7.0053, - "error": 0.005300000000000082 - }, - { - "songno": "1081", - "diff": "ura", - "actual": 10.2, - "predicted": 10.2051, - "error": 0.0051000000000005485 - }, - { - "songno": "414", - "diff": "ura", - "actual": 8.4, - "predicted": 8.395, - "error": 0.005000000000000782 - }, - { - "songno": "1071", - "diff": "oni", - "actual": 9.6, - "predicted": 9.6049, - "error": 0.004900000000001015 - }, - { - "songno": "614", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3951, - "error": 0.0049000000000001265 - }, - { - "songno": "1035", - "diff": "oni", - "actual": 5.4, - "predicted": 5.3951, - "error": 0.0049000000000001265 - }, - { - "songno": "237", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2951, - "error": 0.0049000000000001265 - }, - { - "songno": "1120", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1951, - "error": 0.004899999999999238 - }, - { - "songno": "1276", - "diff": "ura", - "actual": 11.4, - "predicted": 11.4049, - "error": 0.004899999999999238 - }, - { - "songno": "1311", - "diff": "ura", - "actual": 10.3, - "predicted": 10.2952, - "error": 0.004800000000001248 - }, - { - "songno": "1115", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8047, - "error": 0.0047000000000001485 - }, - { - "songno": "1216", - "diff": "oni", - "actual": 10, - "predicted": 10.0047, - "error": 0.004699999999999704 - }, - { - "songno": "443", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4047, - "error": 0.004699999999999704 - }, - { - "songno": "1431", - "diff": "oni", - "actual": 7.8, - "predicted": 7.8046, - "error": 0.0045999999999999375 - }, - { - "songno": "585", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7045, - "error": 0.0045000000000001705 - }, - { - "songno": "1200", - "diff": "oni", - "actual": 2.4, - "predicted": 2.3955, - "error": 0.0044999999999997264 - }, - { - "songno": "1240", - "diff": "ura", - "actual": 7.8, - "predicted": 7.7956, - "error": 0.004399999999999515 - }, - { - "songno": "214", - "diff": "oni", - "actual": 7.8, - "predicted": 7.7957, - "error": 0.0042999999999997485 - }, - { - "songno": "68", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2042, - "error": 0.00420000000000087 - }, - { - "songno": "105", - "diff": "oni", - "actual": 2.9, - "predicted": 2.8958, - "error": 0.0041999999999999815 - }, - { - "songno": "1131", - "diff": "ura", - "actual": 5.8, - "predicted": 5.8042, - "error": 0.0041999999999999815 - }, - { - "songno": "420", - "diff": "oni", - "actual": 4.3, - "predicted": 4.3039, - "error": 0.0038999999999997925 - }, - { - "songno": "800", - "diff": "oni", - "actual": 7.3, - "predicted": 7.3039, - "error": 0.0038999999999997925 - }, - { - "songno": "1409", - "diff": "oni", - "actual": 2.1, - "predicted": 2.0964, - "error": 0.0036000000000000476 - }, - { - "songno": "103", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2034, - "error": 0.003400000000000958 - }, - { - "songno": "363", - "diff": "oni", - "actual": 8.1, - "predicted": 8.1034, - "error": 0.003400000000000958 - }, - { - "songno": "20", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3033, - "error": 0.0032999999999994145 - }, - { - "songno": "914", - "diff": "oni", - "actual": 8.7, - "predicted": 8.7032, - "error": 0.003200000000001424 - }, - { - "songno": "178", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7968, - "error": 0.0031999999999996476 - }, - { - "songno": "1053", - "diff": "oni", - "actual": 4.6, - "predicted": 4.5969, - "error": 0.0030999999999998806 - }, - { - "songno": "424", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3031, - "error": 0.0030999999999998806 - }, - { - "songno": "1020", - "diff": "oni", - "actual": 5, - "predicted": 5.003, - "error": 0.0030000000000001137 - }, - { - "songno": "1268", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3029, - "error": 0.0029000000000003467 - }, - { - "songno": "1148", - "diff": "ura", - "actual": 6.1, - "predicted": 6.1029, - "error": 0.0029000000000003467 - }, - { - "songno": "1377", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8972, - "error": 0.00280000000000058 - }, - { - "songno": "1367", - "diff": "oni", - "actual": 11.6, - "predicted": 11.6026, - "error": 0.002600000000001046 - }, - { - "songno": "202", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9025, - "error": 0.0024999999999995026 - }, - { - "songno": "748", - "diff": "oni", - "actual": 10.8, - "predicted": 10.7976, - "error": 0.002400000000001512 - }, - { - "songno": "705", - "diff": "oni", - "actual": 5.4, - "predicted": 5.3977, - "error": 0.0022999999999999687 - }, - { - "songno": "364", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2023, - "error": 0.0022999999999999687 - }, - { - "songno": "626", - "diff": "ura", - "actual": 10.4, - "predicted": 10.3977, - "error": 0.0022999999999999687 - }, - { - "songno": "1261", - "diff": "oni", - "actual": 7.3, - "predicted": 7.2977, - "error": 0.0022999999999999687 - }, - { - "songno": "527", - "diff": "oni", - "actual": 7.3, - "predicted": 7.2977, - "error": 0.0022999999999999687 - }, - { - "songno": "874", - "diff": "oni", - "actual": 7, - "predicted": 7.0022, - "error": 0.002200000000000202 - }, - { - "songno": "1146", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5021, - "error": 0.002100000000000435 - }, - { - "songno": "1264", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5021, - "error": 0.002100000000000435 - }, - { - "songno": "511", - "diff": "ura", - "actual": 6.6, - "predicted": 6.598, - "error": 0.0019999999999997797 - }, - { - "songno": "1293", - "diff": "oni", - "actual": 3.8, - "predicted": 3.798, - "error": 0.0019999999999997797 - }, - { - "songno": "184", - "diff": "ura", - "actual": 7.2, - "predicted": 7.202, - "error": 0.0019999999999997797 - }, - { - "songno": "560", - "diff": "oni", - "actual": 6, - "predicted": 6.0019, - "error": 0.0019000000000000128 - }, - { - "songno": "56", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5981, - "error": 0.0019000000000000128 - }, - { - "songno": "1059", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5981, - "error": 0.0019000000000000128 - }, - { - "songno": "481", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2017, - "error": 0.0016999999999995907 - }, - { - "songno": "535", - "diff": "oni", - "actual": 3.7, - "predicted": 3.6984, - "error": 0.0016000000000002679 - }, - { - "songno": "1335", - "diff": "oni", - "actual": 4, - "predicted": 4.0016, - "error": 0.0015999999999998238 - }, - { - "songno": "697", - "diff": "oni", - "actual": 9.9, - "predicted": 9.8984, - "error": 0.0015999999999998238 - }, - { - "songno": "1139", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9016, - "error": 0.0015999999999998238 - }, - { - "songno": "931", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6986, - "error": 0.00140000000000029 - }, - { - "songno": "1175", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5014, - "error": 0.00140000000000029 - }, - { - "songno": "1157", - "diff": "ura", - "actual": 6.6, - "predicted": 6.6012, - "error": 0.001200000000000756 - }, - { - "songno": "310", - "diff": "ura", - "actual": 9.2, - "predicted": 9.2011, - "error": 0.001100000000000989 - }, - { - "songno": "1370", - "diff": "ura", - "actual": 11.3, - "predicted": 11.2989, - "error": 0.001100000000000989 - }, - { - "songno": "1159", - "diff": "oni", - "actual": 7.1, - "predicted": 7.1011, - "error": 0.001100000000000101 - }, - { - "songno": "877", - "diff": "oni", - "actual": 1.3, - "predicted": 1.299, - "error": 0.001000000000000112 - }, - { - "songno": "948", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2991, - "error": 0.0009000000000014552 - }, - { - "songno": "1411", - "diff": "ura", - "actual": 11.2, - "predicted": 11.1991, - "error": 0.0008999999999996788 - }, - { - "songno": "499", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7992, - "error": 0.0007999999999999119 - }, - { - "songno": "937", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1007, - "error": 0.000700000000000145 - }, - { - "songno": "1425", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8993, - "error": 0.000700000000000145 - }, - { - "songno": "970", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2006, - "error": 0.0005999999999994898 - }, - { - "songno": "934", - "diff": "oni", - "actual": 9.5, - "predicted": 9.4995, - "error": 0.0005000000000006111 - }, - { - "songno": "1247", - "diff": "oni", - "actual": 10, - "predicted": 10.0004, - "error": 0.0004000000000008441 - }, - { - "songno": "74", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4996, - "error": 0.00039999999999995595 - }, - { - "songno": "1307", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8996, - "error": 0.00039999999999995595 - }, - { - "songno": "526", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8996, - "error": 0.00039999999999995595 - }, - { - "songno": "500", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5003, - "error": 0.000300000000000189 - }, - { - "songno": "707", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3997, - "error": 0.000300000000000189 - }, - { - "songno": "149", - "diff": "ura", - "actual": 6.8, - "predicted": 6.8003, - "error": 0.000300000000000189 - }, - { - "songno": "826", - "diff": "oni", - "actual": 10.5, - "predicted": 10.4997, - "error": 0.0002999999999993008 - }, - { - "songno": "96", - "diff": "oni", - "actual": 8.8, - "predicted": 8.8003, - "error": 0.0002999999999993008 - } - ] -} \ No newline at end of file diff --git a/output/lightgbm/model_lgbm.pkl b/output/lightgbm/model_lgbm.pkl index c75e8a9..6be9302 100644 Binary files a/output/lightgbm/model_lgbm.pkl and b/output/lightgbm/model_lgbm.pkl differ diff --git a/output/lightgbm/scaler_lgbm.pkl b/output/lightgbm/scaler_lgbm.pkl index 04d9232..830ceb6 100644 Binary files a/output/lightgbm/scaler_lgbm.pkl and b/output/lightgbm/scaler_lgbm.pkl differ diff --git a/output/lightgbm2/compare.json b/output/lightgbm2/compare.json deleted file mode 100644 index d4ca94c..0000000 --- a/output/lightgbm2/compare.json +++ /dev/null @@ -1,9824 +0,0 @@ -{ - "summary": { - "total_compared": 1402, - "average_absolute_error": 0.3575333095577746, - "timestamp": "2026-04-25T05:38:27.953Z", - "script_used": "predict/predict_lightgbm.py" - }, - "details": [ - { - "songno": "506", - "diff": "ura", - "actual": 7.5, - "predicted": 4.469, - "error": 3.0309999999999997 - }, - { - "songno": "43", - "diff": "oni", - "actual": 8.1, - "predicted": 5.1762, - "error": 2.9238 - }, - { - "songno": "831", - "diff": "ura", - "actual": 9.5, - "predicted": 6.8609, - "error": 2.6391 - }, - { - "songno": "1214", - "diff": "oni", - "actual": 6, - "predicted": 8.4096, - "error": 2.4095999999999993 - }, - { - "songno": "1382", - "diff": "ura", - "actual": 7.6, - "predicted": 5.2236, - "error": 2.3763999999999994 - }, - { - "songno": "719", - "diff": "oni", - "actual": 9.9, - "predicted": 7.6062, - "error": 2.2938 - }, - { - "songno": "1185", - "diff": "oni", - "actual": 10.5, - "predicted": 8.3807, - "error": 2.119300000000001 - }, - { - "songno": "144", - "diff": "oni", - "actual": 2.5, - "predicted": 4.5903, - "error": 2.0903 - }, - { - "songno": "42", - "diff": "oni", - "actual": 1.1, - "predicted": 3.1668, - "error": 2.0667999999999997 - }, - { - "songno": "1090", - "diff": "oni", - "actual": 4.2, - "predicted": 2.2429, - "error": 1.9571 - }, - { - "songno": "935", - "diff": "oni", - "actual": 9.5, - "predicted": 7.5655, - "error": 1.9344999999999999 - }, - { - "songno": "1394", - "diff": "oni", - "actual": 10.3, - "predicted": 8.3727, - "error": 1.9273000000000007 - }, - { - "songno": "48", - "diff": "ura", - "actual": 9.2, - "predicted": 7.2922, - "error": 1.907799999999999 - }, - { - "songno": "762", - "diff": "oni", - "actual": 10.3, - "predicted": 8.4457, - "error": 1.8543000000000003 - }, - { - "songno": "1199", - "diff": "oni", - "actual": 4.3, - "predicted": 2.4895, - "error": 1.8104999999999998 - }, - { - "songno": "1375", - "diff": "oni", - "actual": 1.1, - "predicted": 2.8799, - "error": 1.7799 - }, - { - "songno": "1138", - "diff": "oni", - "actual": 4.1, - "predicted": 5.8731, - "error": 1.7731000000000003 - }, - { - "songno": "117", - "diff": "oni", - "actual": 8, - "predicted": 6.3211, - "error": 1.6788999999999996 - }, - { - "songno": "1349", - "diff": "oni", - "actual": 6.3, - "predicted": 4.6413, - "error": 1.6586999999999996 - }, - { - "songno": "1397", - "diff": "oni", - "actual": 3.3, - "predicted": 4.9338, - "error": 1.6338 - }, - { - "songno": "1282", - "diff": "oni", - "actual": 3.8, - "predicted": 2.1681, - "error": 1.6319 - }, - { - "songno": "976", - "diff": "oni", - "actual": 8.7, - "predicted": 7.0765, - "error": 1.623499999999999 - }, - { - "songno": "1303", - "diff": "oni", - "actual": 4.3, - "predicted": 2.683, - "error": 1.617 - }, - { - "songno": "967", - "diff": "oni", - "actual": 8.8, - "predicted": 7.2234, - "error": 1.576600000000001 - }, - { - "songno": "101", - "diff": "oni", - "actual": 1.4, - "predicted": 2.9345, - "error": 1.5345 - }, - { - "songno": "405", - "diff": "oni", - "actual": 3.1, - "predicted": 4.6335, - "error": 1.5334999999999996 - }, - { - "songno": "1254", - "diff": "oni", - "actual": 5.9, - "predicted": 4.374, - "error": 1.5260000000000007 - }, - { - "songno": "503", - "diff": "oni", - "actual": 11.3, - "predicted": 9.8227, - "error": 1.4773000000000014 - }, - { - "songno": "205", - "diff": "oni", - "actual": 3, - "predicted": 4.4272, - "error": 1.4272 - }, - { - "songno": "197", - "diff": "oni", - "actual": 1.7, - "predicted": 3.1255, - "error": 1.4255000000000002 - }, - { - "songno": "1163", - "diff": "oni", - "actual": 8.3, - "predicted": 6.8876, - "error": 1.4124000000000008 - }, - { - "songno": "1134", - "diff": "oni", - "actual": 9.6, - "predicted": 8.201, - "error": 1.3989999999999991 - }, - { - "songno": "1382", - "diff": "oni", - "actual": 3.2, - "predicted": 1.8155, - "error": 1.3845000000000003 - }, - { - "songno": "365", - "diff": "oni", - "actual": 10, - "predicted": 8.6553, - "error": 1.3446999999999996 - }, - { - "songno": "1010", - "diff": "oni", - "actual": 4.8, - "predicted": 6.1318, - "error": 1.3318000000000003 - }, - { - "songno": "121", - "diff": "oni", - "actual": 9.3, - "predicted": 7.9751, - "error": 1.3249000000000004 - }, - { - "songno": "88", - "diff": "oni", - "actual": 8.1, - "predicted": 6.7771, - "error": 1.3228999999999997 - }, - { - "songno": "415", - "diff": "oni", - "actual": 1.8, - "predicted": 3.1084, - "error": 1.3084 - }, - { - "songno": "739", - "diff": "oni", - "actual": 7.1, - "predicted": 8.4068, - "error": 1.3068000000000008 - }, - { - "songno": "465", - "diff": "oni", - "actual": 6.9, - "predicted": 8.1887, - "error": 1.2887000000000004 - }, - { - "songno": "316", - "diff": "oni", - "actual": 7.1, - "predicted": 5.8188, - "error": 1.2811999999999992 - }, - { - "songno": "506", - "diff": "oni", - "actual": 5.6, - "predicted": 4.3219, - "error": 1.2780999999999993 - }, - { - "songno": "487", - "diff": "oni", - "actual": 3.5, - "predicted": 4.773, - "error": 1.2729999999999997 - }, - { - "songno": "1118", - "diff": "oni", - "actual": 1.2, - "predicted": 2.4699, - "error": 1.2699 - }, - { - "songno": "92", - "diff": "oni", - "actual": 2.4, - "predicted": 3.6673, - "error": 1.2673 - }, - { - "songno": "654", - "diff": "oni", - "actual": 4.5, - "predicted": 5.7578, - "error": 1.2577999999999996 - }, - { - "songno": "1096", - "diff": "oni", - "actual": 5.1, - "predicted": 3.854, - "error": 1.2459999999999996 - }, - { - "songno": "1245", - "diff": "oni", - "actual": 8.4, - "predicted": 7.159, - "error": 1.2410000000000005 - }, - { - "songno": "259", - "diff": "oni", - "actual": 6.6, - "predicted": 7.8338, - "error": 1.2338000000000005 - }, - { - "songno": "1190", - "diff": "oni", - "actual": 5.5, - "predicted": 6.7262, - "error": 1.2262000000000004 - }, - { - "songno": "435", - "diff": "oni", - "actual": 5.7, - "predicted": 4.477, - "error": 1.2229999999999999 - }, - { - "songno": "543", - "diff": "oni", - "actual": 5.5, - "predicted": 4.2897, - "error": 1.2103000000000002 - }, - { - "songno": "1187", - "diff": "oni", - "actual": 1.8, - "predicted": 3.0048, - "error": 1.2047999999999999 - }, - { - "songno": "79", - "diff": "oni", - "actual": 3.2, - "predicted": 4.401, - "error": 1.2009999999999996 - }, - { - "songno": "1083", - "diff": "oni", - "actual": 7.5, - "predicted": 6.2999, - "error": 1.2001 - }, - { - "songno": "9", - "diff": "oni", - "actual": 2, - "predicted": 3.1815, - "error": 1.1815000000000002 - }, - { - "songno": "915", - "diff": "oni", - "actual": 5.7, - "predicted": 4.5329, - "error": 1.1671000000000005 - }, - { - "songno": "1051", - "diff": "oni", - "actual": 8.7, - "predicted": 9.8668, - "error": 1.1668000000000003 - }, - { - "songno": "663", - "diff": "oni", - "actual": 4.1, - "predicted": 5.2601, - "error": 1.1601000000000008 - }, - { - "songno": "1095", - "diff": "oni", - "actual": 6.2, - "predicted": 5.0523, - "error": 1.1477000000000004 - }, - { - "songno": "673", - "diff": "oni", - "actual": 8.9, - "predicted": 7.7626, - "error": 1.1374000000000004 - }, - { - "songno": "1391", - "diff": "ura", - "actual": 10.2, - "predicted": 11.3344, - "error": 1.1344000000000012 - }, - { - "songno": "222", - "diff": "oni", - "actual": 4.4, - "predicted": 5.5339, - "error": 1.1338999999999997 - }, - { - "songno": "1412", - "diff": "oni", - "actual": 6.2, - "predicted": 7.3304, - "error": 1.1303999999999998 - }, - { - "songno": "122", - "diff": "oni", - "actual": 1.9, - "predicted": 3.0209, - "error": 1.1209000000000002 - }, - { - "songno": "607", - "diff": "oni", - "actual": 4.8, - "predicted": 3.699, - "error": 1.101 - }, - { - "songno": "405", - "diff": "ura", - "actual": 6.9, - "predicted": 7.9884, - "error": 1.0884 - }, - { - "songno": "111", - "diff": "oni", - "actual": 4.7, - "predicted": 5.7869, - "error": 1.0869 - }, - { - "songno": "524", - "diff": "oni", - "actual": 8.9, - "predicted": 7.816, - "error": 1.0840000000000005 - }, - { - "songno": "100", - "diff": "oni", - "actual": 5.3, - "predicted": 6.3788, - "error": 1.0788000000000002 - }, - { - "songno": "1105", - "diff": "oni", - "actual": 5.5, - "predicted": 4.4357, - "error": 1.0643000000000002 - }, - { - "songno": "407", - "diff": "oni", - "actual": 7.4, - "predicted": 8.4642, - "error": 1.0641999999999996 - }, - { - "songno": "1069", - "diff": "oni", - "actual": 8, - "predicted": 6.943, - "error": 1.0570000000000004 - }, - { - "songno": "377", - "diff": "oni", - "actual": 4.3, - "predicted": 3.2468, - "error": 1.0532 - }, - { - "songno": "676", - "diff": "ura", - "actual": 7.4, - "predicted": 6.3583, - "error": 1.0417000000000005 - }, - { - "songno": "1072", - "diff": "oni", - "actual": 9.8, - "predicted": 8.7606, - "error": 1.0394000000000005 - }, - { - "songno": "1047", - "diff": "oni", - "actual": 8.7, - "predicted": 7.6623, - "error": 1.0376999999999992 - }, - { - "songno": "401", - "diff": "oni", - "actual": 11.3, - "predicted": 10.2647, - "error": 1.0353000000000012 - }, - { - "songno": "519", - "diff": "ura", - "actual": 9.4, - "predicted": 10.4338, - "error": 1.0337999999999994 - }, - { - "songno": "749", - "diff": "oni", - "actual": 7.9, - "predicted": 8.9251, - "error": 1.0251000000000001 - }, - { - "songno": "747", - "diff": "oni", - "actual": 7.3, - "predicted": 8.3208, - "error": 1.0208000000000004 - }, - { - "songno": "507", - "diff": "ura", - "actual": 8, - "predicted": 9.0205, - "error": 1.0205000000000002 - }, - { - "songno": "824", - "diff": "oni", - "actual": 1.3, - "predicted": 2.3143, - "error": 1.0142999999999998 - }, - { - "songno": "1446", - "diff": "oni", - "actual": 8, - "predicted": 6.9945, - "error": 1.0054999999999996 - }, - { - "songno": "578", - "diff": "oni", - "actual": 6.5, - "predicted": 5.4962, - "error": 1.0038 - }, - { - "songno": "156", - "diff": "oni", - "actual": 5.8, - "predicted": 6.8009, - "error": 1.0009000000000006 - }, - { - "songno": "374", - "diff": "oni", - "actual": 5.4, - "predicted": 6.391, - "error": 0.9909999999999997 - }, - { - "songno": "586", - "diff": "oni", - "actual": 3.3, - "predicted": 4.2781, - "error": 0.9781000000000004 - }, - { - "songno": "193", - "diff": "oni", - "actual": 4.4, - "predicted": 5.3715, - "error": 0.9714999999999998 - }, - { - "songno": "1305", - "diff": "oni", - "actual": 7.8, - "predicted": 6.8316, - "error": 0.9683999999999999 - }, - { - "songno": "252", - "diff": "oni", - "actual": 7.5, - "predicted": 6.535, - "error": 0.9649999999999999 - }, - { - "songno": "36", - "diff": "oni", - "actual": 1.6, - "predicted": 2.5569, - "error": 0.9569000000000001 - }, - { - "songno": "339", - "diff": "oni", - "actual": 6.8, - "predicted": 5.8497, - "error": 0.9502999999999995 - }, - { - "songno": "425", - "diff": "ura", - "actual": 8.6, - "predicted": 7.6514, - "error": 0.9485999999999999 - }, - { - "songno": "1070", - "diff": "oni", - "actual": 3.5, - "predicted": 4.4471, - "error": 0.9470999999999998 - }, - { - "songno": "260", - "diff": "oni", - "actual": 8.8, - "predicted": 7.8693, - "error": 0.9307000000000007 - }, - { - "songno": "1390", - "diff": "oni", - "actual": 5.7, - "predicted": 4.7787, - "error": 0.9213000000000005 - }, - { - "songno": "1392", - "diff": "oni", - "actual": 5.4, - "predicted": 6.3183, - "error": 0.9182999999999995 - }, - { - "songno": "926", - "diff": "ura", - "actual": 5.4, - "predicted": 6.3176, - "error": 0.9175999999999993 - }, - { - "songno": "1135", - "diff": "oni", - "actual": 3, - "predicted": 3.9149, - "error": 0.9148999999999998 - }, - { - "songno": "575", - "diff": "oni", - "actual": 9.8, - "predicted": 8.8856, - "error": 0.9144000000000005 - }, - { - "songno": "1393", - "diff": "oni", - "actual": 5.2, - "predicted": 4.2878, - "error": 0.9122000000000003 - }, - { - "songno": "1313", - "diff": "oni", - "actual": 5.3, - "predicted": 6.2109, - "error": 0.9108999999999998 - }, - { - "songno": "281", - "diff": "oni", - "actual": 4.2, - "predicted": 5.1109, - "error": 0.9108999999999998 - }, - { - "songno": "67", - "diff": "oni", - "actual": 7.6, - "predicted": 6.6934, - "error": 0.9066000000000001 - }, - { - "songno": "1278", - "diff": "oni", - "actual": 11.7, - "predicted": 10.7937, - "error": 0.9062999999999999 - }, - { - "songno": "625", - "diff": "oni", - "actual": 5.5, - "predicted": 6.4053, - "error": 0.9053000000000004 - }, - { - "songno": "17", - "diff": "oni", - "actual": 7.3, - "predicted": 6.4062, - "error": 0.8937999999999997 - }, - { - "songno": "61", - "diff": "oni", - "actual": 4.6, - "predicted": 5.4912, - "error": 0.8912000000000004 - }, - { - "songno": "44", - "diff": "oni", - "actual": 3.4, - "predicted": 4.2822, - "error": 0.8821999999999997 - }, - { - "songno": "952", - "diff": "oni", - "actual": 10, - "predicted": 9.1179, - "error": 0.8820999999999994 - }, - { - "songno": "928", - "diff": "oni", - "actual": 10.3, - "predicted": 9.43, - "error": 0.870000000000001 - }, - { - "songno": "1314", - "diff": "oni", - "actual": 4.4, - "predicted": 3.5313, - "error": 0.8687000000000005 - }, - { - "songno": "641", - "diff": "oni", - "actual": 8.4, - "predicted": 7.5368, - "error": 0.8632 - }, - { - "songno": "1361", - "diff": "oni", - "actual": 1.5, - "predicted": 2.3578, - "error": 0.8578000000000001 - }, - { - "songno": "1000", - "diff": "oni", - "actual": 8, - "predicted": 7.1463, - "error": 0.8536999999999999 - }, - { - "songno": "1421", - "diff": "oni", - "actual": 8.1, - "predicted": 8.9495, - "error": 0.8495000000000008 - }, - { - "songno": "1183", - "diff": "oni", - "actual": 6.5, - "predicted": 5.6538, - "error": 0.8461999999999996 - }, - { - "songno": "49", - "diff": "oni", - "actual": 4.4, - "predicted": 5.2448, - "error": 0.8447999999999993 - }, - { - "songno": "223", - "diff": "oni", - "actual": 8.1, - "predicted": 7.2553, - "error": 0.8446999999999996 - }, - { - "songno": "366", - "diff": "oni", - "actual": 1.5, - "predicted": 2.3446, - "error": 0.8445999999999998 - }, - { - "songno": "1450", - "diff": "oni", - "actual": 2.9, - "predicted": 3.7412, - "error": 0.8412000000000002 - }, - { - "songno": "239", - "diff": "oni", - "actual": 7.6, - "predicted": 8.4372, - "error": 0.837200000000001 - }, - { - "songno": "273", - "diff": "ura", - "actual": 4.9, - "predicted": 5.7365, - "error": 0.8365 - }, - { - "songno": "76", - "diff": "oni", - "actual": 3.5, - "predicted": 4.3358, - "error": 0.8357999999999999 - }, - { - "songno": "1150", - "diff": "oni", - "actual": 4.1, - "predicted": 3.2656, - "error": 0.8343999999999996 - }, - { - "songno": "1099", - "diff": "oni", - "actual": 11, - "predicted": 10.1665, - "error": 0.8335000000000008 - }, - { - "songno": "1404", - "diff": "oni", - "actual": 9.5, - "predicted": 8.6693, - "error": 0.8307000000000002 - }, - { - "songno": "456", - "diff": "oni", - "actual": 8.2, - "predicted": 9.0256, - "error": 0.8256000000000014 - }, - { - "songno": "273", - "diff": "oni", - "actual": 3.3, - "predicted": 2.4745, - "error": 0.8254999999999999 - }, - { - "songno": "3", - "diff": "oni", - "actual": 3.6, - "predicted": 2.7821, - "error": 0.8179000000000003 - }, - { - "songno": "11", - "diff": "oni", - "actual": 1.5, - "predicted": 2.3179, - "error": 0.8178999999999998 - }, - { - "songno": "1037", - "diff": "oni", - "actual": 9.2, - "predicted": 10.012, - "error": 0.8120000000000012 - }, - { - "songno": "1352", - "diff": "oni", - "actual": 8, - "predicted": 8.8069, - "error": 0.8069000000000006 - }, - { - "songno": "81", - "diff": "oni", - "actual": 4.4, - "predicted": 5.2015, - "error": 0.8014999999999999 - }, - { - "songno": "755", - "diff": "oni", - "actual": 6.9, - "predicted": 7.7001, - "error": 0.8000999999999996 - }, - { - "songno": "1032", - "diff": "oni", - "actual": 3.9, - "predicted": 4.6943, - "error": 0.7943000000000002 - }, - { - "songno": "699", - "diff": "oni", - "actual": 9.7, - "predicted": 10.4929, - "error": 0.7929000000000013 - }, - { - "songno": "721", - "diff": "ura", - "actual": 11.7, - "predicted": 10.9079, - "error": 0.7920999999999996 - }, - { - "songno": "615", - "diff": "oni", - "actual": 9, - "predicted": 8.2124, - "error": 0.7875999999999994 - }, - { - "songno": "1297", - "diff": "oni", - "actual": 9.4, - "predicted": 10.1846, - "error": 0.7845999999999993 - }, - { - "songno": "1456", - "diff": "oni", - "actual": 6.1, - "predicted": 5.3173, - "error": 0.7826999999999993 - }, - { - "songno": "1098", - "diff": "oni", - "actual": 5.9, - "predicted": 5.1194, - "error": 0.7806000000000006 - }, - { - "songno": "35", - "diff": "oni", - "actual": 3.1, - "predicted": 2.3276, - "error": 0.7724000000000002 - }, - { - "songno": "1157", - "diff": "oni", - "actual": 4.6, - "predicted": 3.8278, - "error": 0.7721999999999998 - }, - { - "songno": "154", - "diff": "oni", - "actual": 7.7, - "predicted": 8.4713, - "error": 0.7712999999999992 - }, - { - "songno": "462", - "diff": "oni", - "actual": 7.3, - "predicted": 6.5288, - "error": 0.7711999999999994 - }, - { - "songno": "1084", - "diff": "oni", - "actual": 2.6, - "predicted": 3.3665, - "error": 0.7664999999999997 - }, - { - "songno": "1417", - "diff": "oni", - "actual": 4.2, - "predicted": 3.4391, - "error": 0.7609000000000004 - }, - { - "songno": "1378", - "diff": "oni", - "actual": 7.1, - "predicted": 7.8592, - "error": 0.7592000000000008 - }, - { - "songno": "262", - "diff": "oni", - "actual": 6.8, - "predicted": 6.0432, - "error": 0.7568000000000001 - }, - { - "songno": "1011", - "diff": "oni", - "actual": 5.8, - "predicted": 6.5567, - "error": 0.7567000000000004 - }, - { - "songno": "811", - "diff": "ura", - "actual": 8.2, - "predicted": 7.4438, - "error": 0.7561999999999989 - }, - { - "songno": "1085", - "diff": "oni", - "actual": 10, - "predicted": 9.2464, - "error": 0.7536000000000005 - }, - { - "songno": "1122", - "diff": "oni", - "actual": 7.8, - "predicted": 8.5529, - "error": 0.7528999999999995 - }, - { - "songno": "1201", - "diff": "oni", - "actual": 1.9, - "predicted": 2.6451, - "error": 0.7450999999999999 - }, - { - "songno": "974", - "diff": "oni", - "actual": 1.5, - "predicted": 2.2429, - "error": 0.7429000000000001 - }, - { - "songno": "514", - "diff": "oni", - "actual": 7.7, - "predicted": 8.4425, - "error": 0.7425000000000006 - }, - { - "songno": "579", - "diff": "ura", - "actual": 7.2, - "predicted": 6.4586, - "error": 0.7414000000000005 - }, - { - "songno": "115", - "diff": "oni", - "actual": 2.3, - "predicted": 3.0392, - "error": 0.7392000000000003 - }, - { - "songno": "1082", - "diff": "ura", - "actual": 6.5, - "predicted": 5.7625, - "error": 0.7374999999999998 - }, - { - "songno": "666", - "diff": "oni", - "actual": 6.7, - "predicted": 7.4368, - "error": 0.7367999999999997 - }, - { - "songno": "738", - "diff": "oni", - "actual": 7.9, - "predicted": 7.1635, - "error": 0.7365000000000004 - }, - { - "songno": "818", - "diff": "oni", - "actual": 10.4, - "predicted": 9.6669, - "error": 0.7331000000000003 - }, - { - "songno": "1357", - "diff": "oni", - "actual": 8.1, - "predicted": 7.373, - "error": 0.7269999999999994 - }, - { - "songno": "1252", - "diff": "oni", - "actual": 4.9, - "predicted": 4.1737, - "error": 0.7263000000000002 - }, - { - "songno": "512", - "diff": "oni", - "actual": 3.4, - "predicted": 4.1245, - "error": 0.7245000000000004 - }, - { - "songno": "287", - "diff": "oni", - "actual": 2.8, - "predicted": 3.5217, - "error": 0.7217000000000002 - }, - { - "songno": "25", - "diff": "oni", - "actual": 1.6, - "predicted": 2.3204, - "error": 0.7203999999999997 - }, - { - "songno": "402", - "diff": "oni", - "actual": 6.5, - "predicted": 7.219, - "error": 0.7190000000000003 - }, - { - "songno": "1447", - "diff": "oni", - "actual": 10.4, - "predicted": 9.6841, - "error": 0.7158999999999995 - }, - { - "songno": "505", - "diff": "oni", - "actual": 3, - "predicted": 3.715, - "error": 0.7149999999999999 - }, - { - "songno": "713", - "diff": "oni", - "actual": 8.3, - "predicted": 7.5851, - "error": 0.714900000000001 - }, - { - "songno": "366", - "diff": "ura", - "actual": 4.9, - "predicted": 5.6135, - "error": 0.7134999999999998 - }, - { - "songno": "270", - "diff": "oni", - "actual": 6.9, - "predicted": 6.1874, - "error": 0.7126000000000001 - }, - { - "songno": "613", - "diff": "oni", - "actual": 3, - "predicted": 3.7126, - "error": 0.7126000000000001 - }, - { - "songno": "711", - "diff": "oni", - "actual": 2, - "predicted": 2.709, - "error": 0.7090000000000001 - }, - { - "songno": "1100", - "diff": "oni", - "actual": 3.9, - "predicted": 4.5994, - "error": 0.6994000000000002 - }, - { - "songno": "1184", - "diff": "oni", - "actual": 6.4, - "predicted": 7.0988, - "error": 0.6987999999999994 - }, - { - "songno": "866", - "diff": "oni", - "actual": 7.9, - "predicted": 8.598, - "error": 0.6980000000000004 - }, - { - "songno": "1309", - "diff": "ura", - "actual": 10.5, - "predicted": 9.8034, - "error": 0.6966000000000001 - }, - { - "songno": "1450", - "diff": "ura", - "actual": 7, - "predicted": 7.6932, - "error": 0.6932 - }, - { - "songno": "545", - "diff": "oni", - "actual": 4.8, - "predicted": 5.4915, - "error": 0.6915000000000004 - }, - { - "songno": "51", - "diff": "oni", - "actual": 3.2, - "predicted": 3.8899, - "error": 0.6898999999999997 - }, - { - "songno": "1237", - "diff": "ura", - "actual": 10.3, - "predicted": 9.6107, - "error": 0.6893000000000011 - }, - { - "songno": "312", - "diff": "oni", - "actual": 1.1, - "predicted": 1.7878, - "error": 0.6878 - }, - { - "songno": "740", - "diff": "oni", - "actual": 8.8, - "predicted": 8.1139, - "error": 0.6861000000000015 - }, - { - "songno": "109", - "diff": "oni", - "actual": 4.6, - "predicted": 5.2846, - "error": 0.6846000000000005 - }, - { - "songno": "1371", - "diff": "ura", - "actual": 9.8, - "predicted": 9.1171, - "error": 0.6829000000000001 - }, - { - "songno": "455", - "diff": "oni", - "actual": 5.7, - "predicted": 6.3788, - "error": 0.6787999999999998 - }, - { - "songno": "230", - "diff": "oni", - "actual": 7.4, - "predicted": 6.7234, - "error": 0.6766000000000005 - }, - { - "songno": "1364", - "diff": "oni", - "actual": 7.7, - "predicted": 7.0236, - "error": 0.6764000000000001 - }, - { - "songno": "1336", - "diff": "oni", - "actual": 2.9, - "predicted": 3.574, - "error": 0.6739999999999999 - }, - { - "songno": "714", - "diff": "oni", - "actual": 9.4, - "predicted": 8.7265, - "error": 0.6735000000000007 - }, - { - "songno": "1411", - "diff": "oni", - "actual": 9.1, - "predicted": 9.7711, - "error": 0.6711000000000009 - }, - { - "songno": "1130", - "diff": "oni", - "actual": 5.9, - "predicted": 6.5662, - "error": 0.6661999999999999 - }, - { - "songno": "959", - "diff": "ura", - "actual": 10.7, - "predicted": 10.0349, - "error": 0.6650999999999989 - }, - { - "songno": "544", - "diff": "oni", - "actual": 5.9, - "predicted": 6.565, - "error": 0.665 - }, - { - "songno": "93", - "diff": "oni", - "actual": 5.9, - "predicted": 6.5636, - "error": 0.6635999999999997 - }, - { - "songno": "1304", - "diff": "oni", - "actual": 4.7, - "predicted": 4.0369, - "error": 0.6631 - }, - { - "songno": "394", - "diff": "oni", - "actual": 5.9, - "predicted": 6.5589, - "error": 0.6589 - }, - { - "songno": "961", - "diff": "oni", - "actual": 10.2, - "predicted": 9.5449, - "error": 0.6550999999999991 - }, - { - "songno": "134", - "diff": "oni", - "actual": 6.4, - "predicted": 7.0549, - "error": 0.6548999999999996 - }, - { - "songno": "843", - "diff": "oni", - "actual": 10, - "predicted": 9.3464, - "error": 0.6536000000000008 - }, - { - "songno": "1244", - "diff": "oni", - "actual": 1.6, - "predicted": 2.2534, - "error": 0.6534 - }, - { - "songno": "1192", - "diff": "oni", - "actual": 5.7, - "predicted": 6.3517, - "error": 0.6517 - }, - { - "songno": "367", - "diff": "oni", - "actual": 5.8, - "predicted": 6.4472, - "error": 0.6471999999999998 - }, - { - "songno": "457", - "diff": "oni", - "actual": 6.5, - "predicted": 5.8545, - "error": 0.6455000000000002 - }, - { - "songno": "611", - "diff": "oni", - "actual": 3.8, - "predicted": 4.4454, - "error": 0.6454000000000004 - }, - { - "songno": "794", - "diff": "oni", - "actual": 7.6, - "predicted": 6.9547, - "error": 0.6452999999999998 - }, - { - "songno": "280", - "diff": "oni", - "actual": 2.5, - "predicted": 3.1435, - "error": 0.6435 - }, - { - "songno": "343", - "diff": "oni", - "actual": 6.4, - "predicted": 5.7587, - "error": 0.6413000000000002 - }, - { - "songno": "466", - "diff": "oni", - "actual": 3, - "predicted": 3.6405, - "error": 0.6404999999999998 - }, - { - "songno": "651", - "diff": "oni", - "actual": 7.1, - "predicted": 6.4603, - "error": 0.6396999999999995 - }, - { - "songno": "601", - "diff": "oni", - "actual": 3.5, - "predicted": 4.1394, - "error": 0.6394000000000002 - }, - { - "songno": "404", - "diff": "oni", - "actual": 8.5, - "predicted": 7.8635, - "error": 0.6364999999999998 - }, - { - "songno": "909", - "diff": "oni", - "actual": 4.8, - "predicted": 4.1728, - "error": 0.6272000000000002 - }, - { - "songno": "337", - "diff": "oni", - "actual": 7.2, - "predicted": 7.8267, - "error": 0.6266999999999996 - }, - { - "songno": "256", - "diff": "ura", - "actual": 6.2, - "predicted": 5.5738, - "error": 0.6261999999999999 - }, - { - "songno": "478", - "diff": "oni", - "actual": 5.8, - "predicted": 5.1739, - "error": 0.6261000000000001 - }, - { - "songno": "442", - "diff": "oni", - "actual": 10.3, - "predicted": 9.6764, - "error": 0.6236000000000015 - }, - { - "songno": "333", - "diff": "oni", - "actual": 1.1, - "predicted": 1.7183, - "error": 0.6182999999999998 - }, - { - "songno": "1276", - "diff": "oni", - "actual": 9.2, - "predicted": 8.5824, - "error": 0.6175999999999995 - }, - { - "songno": "969", - "diff": "oni", - "actual": 5.6, - "predicted": 4.9855, - "error": 0.6144999999999996 - }, - { - "songno": "550", - "diff": "oni", - "actual": 7.8, - "predicted": 8.4118, - "error": 0.6117999999999997 - }, - { - "songno": "981", - "diff": "oni", - "actual": 3.3, - "predicted": 3.9091, - "error": 0.6091000000000002 - }, - { - "songno": "1092", - "diff": "oni", - "actual": 4.7, - "predicted": 5.3088, - "error": 0.6087999999999996 - }, - { - "songno": "449", - "diff": "oni", - "actual": 8.1, - "predicted": 8.7076, - "error": 0.6075999999999997 - }, - { - "songno": "60", - "diff": "ura", - "actual": 8.8, - "predicted": 8.1944, - "error": 0.6056000000000008 - }, - { - "songno": "1362", - "diff": "oni", - "actual": 6.1, - "predicted": 6.7049, - "error": 0.6049000000000007 - }, - { - "songno": "196", - "diff": "oni", - "actual": 5.3, - "predicted": 5.9038, - "error": 0.6038000000000006 - }, - { - "songno": "558", - "diff": "oni", - "actual": 8.5, - "predicted": 7.8967, - "error": 0.6033 - }, - { - "songno": "604", - "diff": "oni", - "actual": 1, - "predicted": 1.6021, - "error": 0.6021000000000001 - }, - { - "songno": "164", - "diff": "oni", - "actual": 8, - "predicted": 7.3986, - "error": 0.6013999999999999 - }, - { - "songno": "1196", - "diff": "ura", - "actual": 11.7, - "predicted": 11.0996, - "error": 0.6003999999999987 - }, - { - "songno": "687", - "diff": "oni", - "actual": 4.3, - "predicted": 4.9003, - "error": 0.6002999999999998 - }, - { - "songno": "1243", - "diff": "oni", - "actual": 1.1, - "predicted": 1.6968, - "error": 0.5968 - }, - { - "songno": "1412", - "diff": "ura", - "actual": 10, - "predicted": 10.5964, - "error": 0.5963999999999992 - }, - { - "songno": "1133", - "diff": "ura", - "actual": 8.6, - "predicted": 8.0063, - "error": 0.5937000000000001 - }, - { - "songno": "993", - "diff": "ura", - "actual": 12, - "predicted": 11.4085, - "error": 0.5914999999999999 - }, - { - "songno": "221", - "diff": "ura", - "actual": 9.3, - "predicted": 8.7089, - "error": 0.5911000000000008 - }, - { - "songno": "110", - "diff": "oni", - "actual": 10.9, - "predicted": 10.3098, - "error": 0.5902000000000012 - }, - { - "songno": "212", - "diff": "oni", - "actual": 5.7, - "predicted": 5.1114, - "error": 0.5886000000000005 - }, - { - "songno": "120", - "diff": "oni", - "actual": 11.9, - "predicted": 11.3121, - "error": 0.5879000000000012 - }, - { - "songno": "530", - "diff": "oni", - "actual": 4.7, - "predicted": 4.1138, - "error": 0.5861999999999998 - }, - { - "songno": "790", - "diff": "oni", - "actual": 2.5, - "predicted": 3.0855, - "error": 0.5855000000000001 - }, - { - "songno": "368", - "diff": "oni", - "actual": 1.8, - "predicted": 2.3855, - "error": 0.5854999999999999 - }, - { - "songno": "1338", - "diff": "oni", - "actual": 10, - "predicted": 9.4152, - "error": 0.5847999999999995 - }, - { - "songno": "118", - "diff": "oni", - "actual": 3, - "predicted": 2.4161, - "error": 0.5838999999999999 - }, - { - "songno": "686", - "diff": "oni", - "actual": 8.7, - "predicted": 8.1162, - "error": 0.5838000000000001 - }, - { - "songno": "1003", - "diff": "oni", - "actual": 5.1, - "predicted": 4.5171, - "error": 0.5828999999999995 - }, - { - "songno": "182", - "diff": "oni", - "actual": 6.4, - "predicted": 5.8191, - "error": 0.5809000000000006 - }, - { - "songno": "921", - "diff": "oni", - "actual": 2.8, - "predicted": 2.2198, - "error": 0.5801999999999996 - }, - { - "songno": "1211", - "diff": "oni", - "actual": 6, - "predicted": 5.4216, - "error": 0.5784000000000002 - }, - { - "songno": "993", - "diff": "oni", - "actual": 10, - "predicted": 9.4222, - "error": 0.5777999999999999 - }, - { - "songno": "459", - "diff": "oni", - "actual": 5.6, - "predicted": 5.0236, - "error": 0.5763999999999996 - }, - { - "songno": "988", - "diff": "oni", - "actual": 5.3, - "predicted": 5.8758, - "error": 0.5758000000000001 - }, - { - "songno": "445", - "diff": "oni", - "actual": 7.1, - "predicted": 6.5271, - "error": 0.5728999999999997 - }, - { - "songno": "331", - "diff": "oni", - "actual": 9.4, - "predicted": 9.9714, - "error": 0.5713999999999988 - }, - { - "songno": "15", - "diff": "oni", - "actual": 5.4, - "predicted": 5.9683, - "error": 0.5682999999999998 - }, - { - "songno": "612", - "diff": "oni", - "actual": 6.7, - "predicted": 6.132, - "error": 0.5680000000000005 - }, - { - "songno": "989", - "diff": "oni", - "actual": 6.4, - "predicted": 6.966, - "error": 0.5659999999999998 - }, - { - "songno": "1304", - "diff": "ura", - "actual": 8.1, - "predicted": 8.6649, - "error": 0.5648999999999997 - }, - { - "songno": "19", - "diff": "oni", - "actual": 7.5, - "predicted": 6.9354, - "error": 0.5646000000000004 - }, - { - "songno": "968", - "diff": "oni", - "actual": 7, - "predicted": 7.5642, - "error": 0.5641999999999996 - }, - { - "songno": "1232", - "diff": "oni", - "actual": 7.2, - "predicted": 6.6363, - "error": 0.5636999999999999 - }, - { - "songno": "891", - "diff": "oni", - "actual": 6.8, - "predicted": 7.3635, - "error": 0.5635000000000003 - }, - { - "songno": "250", - "diff": "oni", - "actual": 3, - "predicted": 3.5624, - "error": 0.5623999999999998 - }, - { - "songno": "291", - "diff": "oni", - "actual": 5.9, - "predicted": 6.4617, - "error": 0.5617000000000001 - }, - { - "songno": "1097", - "diff": "ura", - "actual": 10.1, - "predicted": 9.539, - "error": 0.5609999999999999 - }, - { - "songno": "1213", - "diff": "oni", - "actual": 5.3, - "predicted": 5.8605, - "error": 0.5605000000000002 - }, - { - "songno": "1381", - "diff": "oni", - "actual": 7.3, - "predicted": 7.8594, - "error": 0.5594000000000001 - }, - { - "songno": "804", - "diff": "oni", - "actual": 5.7, - "predicted": 5.1441, - "error": 0.5559000000000003 - }, - { - "songno": "775", - "diff": "ura", - "actual": 10.6, - "predicted": 10.0443, - "error": 0.5556999999999999 - }, - { - "songno": "1393", - "diff": "ura", - "actual": 8.6, - "predicted": 8.0456, - "error": 0.5543999999999993 - }, - { - "songno": "523", - "diff": "oni", - "actual": 5.1, - "predicted": 4.5468, - "error": 0.5531999999999995 - }, - { - "songno": "932", - "diff": "oni", - "actual": 7.5, - "predicted": 6.9507, - "error": 0.5492999999999997 - }, - { - "songno": "448", - "diff": "ura", - "actual": 9.6, - "predicted": 9.051, - "error": 0.5489999999999995 - }, - { - "songno": "16", - "diff": "oni", - "actual": 8.3, - "predicted": 8.8477, - "error": 0.547699999999999 - }, - { - "songno": "878", - "diff": "oni", - "actual": 9.7, - "predicted": 10.2466, - "error": 0.5466000000000015 - }, - { - "songno": "202", - "diff": "ura", - "actual": 9.6, - "predicted": 9.0545, - "error": 0.5454999999999988 - }, - { - "songno": "828", - "diff": "oni", - "actual": 4.1, - "predicted": 4.6454, - "error": 0.5454000000000008 - }, - { - "songno": "661", - "diff": "oni", - "actual": 2.9, - "predicted": 3.4441, - "error": 0.5441000000000003 - }, - { - "songno": "1273", - "diff": "oni", - "actual": 6.9, - "predicted": 6.3559, - "error": 0.5441000000000003 - }, - { - "songno": "1061", - "diff": "oni", - "actual": 3.9, - "predicted": 3.357, - "error": 0.5429999999999997 - }, - { - "songno": "1333", - "diff": "oni", - "actual": 1.7, - "predicted": 2.2429, - "error": 0.5429000000000002 - }, - { - "songno": "652", - "diff": "oni", - "actual": 3.7, - "predicted": 4.2422, - "error": 0.5422000000000002 - }, - { - "songno": "151", - "diff": "oni", - "actual": 4.8, - "predicted": 5.3384, - "error": 0.5384000000000002 - }, - { - "songno": "559", - "diff": "oni", - "actual": 5.4, - "predicted": 5.9373, - "error": 0.5372999999999992 - }, - { - "songno": "1389", - "diff": "oni", - "actual": 1.2, - "predicted": 1.736, - "error": 0.536 - }, - { - "songno": "1327", - "diff": "oni", - "actual": 3.7, - "predicted": 3.1665, - "error": 0.5335000000000001 - }, - { - "songno": "538", - "diff": "oni", - "actual": 8.6, - "predicted": 9.1333, - "error": 0.5333000000000006 - }, - { - "songno": "1230", - "diff": "oni", - "actual": 3.4, - "predicted": 2.8679, - "error": 0.5320999999999998 - }, - { - "songno": "629", - "diff": "oni", - "actual": 7.3, - "predicted": 6.7691, - "error": 0.5308999999999999 - }, - { - "songno": "1152", - "diff": "oni", - "actual": 4.2, - "predicted": 4.7304, - "error": 0.5304000000000002 - }, - { - "songno": "842", - "diff": "oni", - "actual": 2.1, - "predicted": 2.6295, - "error": 0.5295000000000001 - }, - { - "songno": "142", - "diff": "oni", - "actual": 3, - "predicted": 2.4722, - "error": 0.5278 - }, - { - "songno": "460", - "diff": "oni", - "actual": 2.7, - "predicted": 3.2276, - "error": 0.5275999999999996 - }, - { - "songno": "793", - "diff": "ura", - "actual": 6.2, - "predicted": 5.6725, - "error": 0.5274999999999999 - }, - { - "songno": "702", - "diff": "oni", - "actual": 10.6, - "predicted": 10.0729, - "error": 0.527099999999999 - }, - { - "songno": "898", - "diff": "ura", - "actual": 7.5, - "predicted": 8.0258, - "error": 0.5258000000000003 - }, - { - "songno": "648", - "diff": "oni", - "actual": 4.2, - "predicted": 4.724, - "error": 0.524 - }, - { - "songno": "990", - "diff": "oni", - "actual": 10.9, - "predicted": 10.3763, - "error": 0.5236999999999998 - }, - { - "songno": "1234", - "diff": "oni", - "actual": 6.6, - "predicted": 6.0773, - "error": 0.5226999999999995 - }, - { - "songno": "930", - "diff": "oni", - "actual": 7.1, - "predicted": 7.622, - "error": 0.5220000000000002 - }, - { - "songno": "1356", - "diff": "oni", - "actual": 9.4, - "predicted": 8.878, - "error": 0.5220000000000002 - }, - { - "songno": "146", - "diff": "oni", - "actual": 4.1, - "predicted": 4.622, - "error": 0.5220000000000002 - }, - { - "songno": "797", - "diff": "oni", - "actual": 8.8, - "predicted": 8.2791, - "error": 0.520900000000001 - }, - { - "songno": "1074", - "diff": "oni", - "actual": 3.1, - "predicted": 2.5796, - "error": 0.5204 - }, - { - "songno": "811", - "diff": "oni", - "actual": 1, - "predicted": 1.5201, - "error": 0.5201 - }, - { - "songno": "745", - "diff": "oni", - "actual": 10.4, - "predicted": 10.9189, - "error": 0.5189000000000004 - }, - { - "songno": "39", - "diff": "oni", - "actual": 5.6, - "predicted": 6.1185, - "error": 0.5185000000000004 - }, - { - "songno": "1139", - "diff": "oni", - "actual": 5.9, - "predicted": 6.4174, - "error": 0.5173999999999994 - }, - { - "songno": "1271", - "diff": "ura", - "actual": 9.3, - "predicted": 8.7844, - "error": 0.515600000000001 - }, - { - "songno": "53", - "diff": "oni", - "actual": 6.4, - "predicted": 6.9144, - "error": 0.5143999999999993 - }, - { - "songno": "801", - "diff": "oni", - "actual": 4.6, - "predicted": 4.0863, - "error": 0.5137 - }, - { - "songno": "1178", - "diff": "oni", - "actual": 3.5, - "predicted": 4.0135, - "error": 0.5134999999999996 - }, - { - "songno": "991", - "diff": "oni", - "actual": 6.3, - "predicted": 6.8124, - "error": 0.5124000000000004 - }, - { - "songno": "1171", - "diff": "oni", - "actual": 6.1, - "predicted": 5.5881, - "error": 0.5118999999999998 - }, - { - "songno": "221", - "diff": "oni", - "actual": 6.7, - "predicted": 6.1897, - "error": 0.5103 - }, - { - "songno": "1344", - "diff": "oni", - "actual": 4.7, - "predicted": 4.1907, - "error": 0.5093000000000005 - }, - { - "songno": "751", - "diff": "oni", - "actual": 7.7, - "predicted": 7.1925, - "error": 0.5075000000000003 - }, - { - "songno": "105", - "diff": "oni", - "actual": 2.9, - "predicted": 3.4051, - "error": 0.5051000000000001 - }, - { - "songno": "1164", - "diff": "oni", - "actual": 5.4, - "predicted": 5.9011, - "error": 0.5010999999999992 - }, - { - "songno": "90", - "diff": "oni", - "actual": 5.6, - "predicted": 6.1009, - "error": 0.5009000000000006 - }, - { - "songno": "40", - "diff": "oni", - "actual": 4.6, - "predicted": 5.0988, - "error": 0.49880000000000013 - }, - { - "songno": "1040", - "diff": "oni", - "actual": 11.6, - "predicted": 11.1016, - "error": 0.4984000000000002 - }, - { - "songno": "680", - "diff": "oni", - "actual": 7.9, - "predicted": 8.3973, - "error": 0.4972999999999992 - }, - { - "songno": "1140", - "diff": "ura", - "actual": 8.6, - "predicted": 9.0961, - "error": 0.4961000000000002 - }, - { - "songno": "709", - "diff": "oni", - "actual": 2.5, - "predicted": 2.9951, - "error": 0.4950999999999999 - }, - { - "songno": "473", - "diff": "oni", - "actual": 5.4, - "predicted": 5.8947, - "error": 0.4946999999999999 - }, - { - "songno": "152", - "diff": "oni", - "actual": 7.9, - "predicted": 7.407, - "error": 0.4930000000000003 - }, - { - "songno": "434", - "diff": "oni", - "actual": 4.1, - "predicted": 4.5926, - "error": 0.49260000000000037 - }, - { - "songno": "887", - "diff": "oni", - "actual": 7.2, - "predicted": 6.7077, - "error": 0.4923000000000002 - }, - { - "songno": "647", - "diff": "oni", - "actual": 7.8, - "predicted": 7.3079, - "error": 0.49209999999999976 - }, - { - "songno": "1380", - "diff": "ura", - "actual": 8.9, - "predicted": 9.3921, - "error": 0.49209999999999887 - }, - { - "songno": "160", - "diff": "oni", - "actual": 5.3, - "predicted": 5.7917, - "error": 0.4916999999999998 - }, - { - "songno": "947", - "diff": "oni", - "actual": 5.2, - "predicted": 5.6914, - "error": 0.4913999999999996 - }, - { - "songno": "670", - "diff": "oni", - "actual": 8.1, - "predicted": 7.6092, - "error": 0.49079999999999924 - }, - { - "songno": "1077", - "diff": "ura", - "actual": 7.1, - "predicted": 6.6121, - "error": 0.4878999999999998 - }, - { - "songno": "62", - "diff": "oni", - "actual": 6.1, - "predicted": 6.5878, - "error": 0.4878 - }, - { - "songno": "1136", - "diff": "oni", - "actual": 2.7, - "predicted": 3.1859, - "error": 0.4859 - }, - { - "songno": "831", - "diff": "oni", - "actual": 1.2, - "predicted": 1.6836, - "error": 0.48360000000000003 - }, - { - "songno": "1145", - "diff": "oni", - "actual": 7.2, - "predicted": 7.6832, - "error": 0.4832000000000001 - }, - { - "songno": "199", - "diff": "oni", - "actual": 3.1, - "predicted": 2.6189, - "error": 0.4811000000000001 - }, - { - "songno": "1053", - "diff": "ura", - "actual": 9.9, - "predicted": 9.4198, - "error": 0.48019999999999996 - }, - { - "songno": "689", - "diff": "oni", - "actual": 4.3, - "predicted": 4.7788, - "error": 0.47880000000000056 - }, - { - "songno": "1208", - "diff": "oni", - "actual": 4.3, - "predicted": 3.8213, - "error": 0.4786999999999999 - }, - { - "songno": "1061", - "diff": "ura", - "actual": 7.7, - "predicted": 8.1783, - "error": 0.47829999999999995 - }, - { - "songno": "150", - "diff": "oni", - "actual": 6.3, - "predicted": 6.7778, - "error": 0.4778000000000002 - }, - { - "songno": "1332", - "diff": "oni", - "actual": 1.5, - "predicted": 1.9762, - "error": 0.47619999999999996 - }, - { - "songno": "305", - "diff": "oni", - "actual": 3.7, - "predicted": 3.2247, - "error": 0.4753000000000003 - }, - { - "songno": "537", - "diff": "ura", - "actual": 9, - "predicted": 9.4745, - "error": 0.4745000000000008 - }, - { - "songno": "1274", - "diff": "oni", - "actual": 4.8, - "predicted": 5.2729, - "error": 0.4729000000000001 - }, - { - "songno": "1140", - "diff": "oni", - "actual": 5.6, - "predicted": 5.1271, - "error": 0.4728999999999992 - }, - { - "songno": "1303", - "diff": "ura", - "actual": 6.2, - "predicted": 6.6727, - "error": 0.4726999999999997 - }, - { - "songno": "782", - "diff": "oni", - "actual": 2.7, - "predicted": 3.1725, - "error": 0.4724999999999997 - }, - { - "songno": "771", - "diff": "oni", - "actual": 3.3, - "predicted": 3.7709, - "error": 0.4709000000000003 - }, - { - "songno": "392", - "diff": "oni", - "actual": 9, - "predicted": 8.5297, - "error": 0.47029999999999994 - }, - { - "songno": "412", - "diff": "oni", - "actual": 7, - "predicted": 6.5305, - "error": 0.46950000000000003 - }, - { - "songno": "1250", - "diff": "oni", - "actual": 6, - "predicted": 6.4694, - "error": 0.46940000000000026 - }, - { - "songno": "805", - "diff": "oni", - "actual": 7.5, - "predicted": 7.0328, - "error": 0.46720000000000006 - }, - { - "songno": "140", - "diff": "oni", - "actual": 3.3, - "predicted": 3.7671, - "error": 0.4671000000000003 - }, - { - "songno": "368", - "diff": "ura", - "actual": 7.2, - "predicted": 6.7336, - "error": 0.46640000000000015 - }, - { - "songno": "1426", - "diff": "oni", - "actual": 6.2, - "predicted": 5.7348, - "error": 0.4652000000000003 - }, - { - "songno": "324", - "diff": "oni", - "actual": 5.6, - "predicted": 6.0634, - "error": 0.46340000000000003 - }, - { - "songno": "1296", - "diff": "oni", - "actual": 7.9, - "predicted": 8.3631, - "error": 0.46309999999999896 - }, - { - "songno": "268", - "diff": "oni", - "actual": 5.1, - "predicted": 4.6376, - "error": 0.4623999999999997 - }, - { - "songno": "881", - "diff": "ura", - "actual": 10.1, - "predicted": 9.6391, - "error": 0.46090000000000053 - }, - { - "songno": "279", - "diff": "oni", - "actual": 4.7, - "predicted": 5.1604, - "error": 0.4603999999999999 - }, - { - "songno": "1414", - "diff": "ura", - "actual": 7.8, - "predicted": 7.3402, - "error": 0.45979999999999954 - }, - { - "songno": "391", - "diff": "oni", - "actual": 7.4, - "predicted": 6.9403, - "error": 0.45970000000000066 - }, - { - "songno": "1269", - "diff": "oni", - "actual": 3.2, - "predicted": 2.7414, - "error": 0.4586000000000001 - }, - { - "songno": "617", - "diff": "oni", - "actual": 5.6, - "predicted": 6.0584, - "error": 0.45840000000000014 - }, - { - "songno": "649", - "diff": "oni", - "actual": 7.6, - "predicted": 7.1418, - "error": 0.4581999999999997 - }, - { - "songno": "59", - "diff": "oni", - "actual": 3.6, - "predicted": 3.1433, - "error": 0.4567000000000001 - }, - { - "songno": "1149", - "diff": "oni", - "actual": 3.8, - "predicted": 4.2565, - "error": 0.45650000000000013 - }, - { - "songno": "1300", - "diff": "oni", - "actual": 2, - "predicted": 2.4553, - "error": 0.4552999999999998 - }, - { - "songno": "705", - "diff": "oni", - "actual": 5.4, - "predicted": 4.9465, - "error": 0.4535 - }, - { - "songno": "918", - "diff": "oni", - "actual": 6.4, - "predicted": 5.9468, - "error": 0.4532000000000007 - }, - { - "songno": "352", - "diff": "oni", - "actual": 2.5, - "predicted": 2.9519, - "error": 0.4519000000000002 - }, - { - "songno": "1053", - "diff": "oni", - "actual": 4.6, - "predicted": 4.1483, - "error": 0.45169999999999977 - }, - { - "songno": "724", - "diff": "oni", - "actual": 8.5, - "predicted": 8.0492, - "error": 0.4507999999999992 - }, - { - "songno": "886", - "diff": "oni", - "actual": 1.9, - "predicted": 2.3491, - "error": 0.44910000000000005 - }, - { - "songno": "1413", - "diff": "oni", - "actual": 7.6, - "predicted": 7.1509, - "error": 0.4490999999999996 - }, - { - "songno": "1052", - "diff": "oni", - "actual": 8.1, - "predicted": 8.5466, - "error": 0.4466000000000001 - }, - { - "songno": "171", - "diff": "oni", - "actual": 9.6, - "predicted": 9.1541, - "error": 0.44589999999999996 - }, - { - "songno": "34", - "diff": "oni", - "actual": 6.3, - "predicted": 5.8555, - "error": 0.4444999999999997 - }, - { - "songno": "894", - "diff": "oni", - "actual": 1.7, - "predicted": 2.1433, - "error": 0.4433 - }, - { - "songno": "799", - "diff": "oni", - "actual": 5.7, - "predicted": 5.2573, - "error": 0.4427000000000003 - }, - { - "songno": "701", - "diff": "oni", - "actual": 6.6, - "predicted": 6.1581, - "error": 0.4418999999999995 - }, - { - "songno": "422", - "diff": "oni", - "actual": 3, - "predicted": 3.441, - "error": 0.44099999999999984 - }, - { - "songno": "618", - "diff": "oni", - "actual": 5, - "predicted": 4.5592, - "error": 0.4408000000000003 - }, - { - "songno": "496", - "diff": "oni", - "actual": 6.1, - "predicted": 6.5408, - "error": 0.4408000000000003 - }, - { - "songno": "1400", - "diff": "oni", - "actual": 1.6, - "predicted": 1.1592, - "error": 0.4408000000000001 - }, - { - "songno": "1279", - "diff": "oni", - "actual": 8.4, - "predicted": 8.8403, - "error": 0.4402999999999988 - }, - { - "songno": "208", - "diff": "oni", - "actual": 4.5, - "predicted": 4.0606, - "error": 0.4394 - }, - { - "songno": "972", - "diff": "ura", - "actual": 10.9, - "predicted": 10.4608, - "error": 0.4391999999999996 - }, - { - "songno": "274", - "diff": "ura", - "actual": 5, - "predicted": 5.439, - "error": 0.43900000000000006 - }, - { - "songno": "1062", - "diff": "oni", - "actual": 5, - "predicted": 4.5614, - "error": 0.4386000000000001 - }, - { - "songno": "8", - "diff": "oni", - "actual": 2.2, - "predicted": 2.6384, - "error": 0.4383999999999997 - }, - { - "songno": "1344", - "diff": "ura", - "actual": 8, - "predicted": 8.4378, - "error": 0.4377999999999993 - }, - { - "songno": "1205", - "diff": "oni", - "actual": 6.1, - "predicted": 5.6622, - "error": 0.4377999999999993 - }, - { - "songno": "293", - "diff": "oni", - "actual": 3.9, - "predicted": 4.3365, - "error": 0.4365000000000001 - }, - { - "songno": "308", - "diff": "oni", - "actual": 5.2, - "predicted": 4.7654, - "error": 0.43460000000000054 - }, - { - "songno": "736", - "diff": "ura", - "actual": 9.5, - "predicted": 9.0655, - "error": 0.4344999999999999 - }, - { - "songno": "481", - "diff": "ura", - "actual": 3.4, - "predicted": 2.9672, - "error": 0.43279999999999985 - }, - { - "songno": "218", - "diff": "ura", - "actual": 10.3, - "predicted": 9.8686, - "error": 0.4314 - }, - { - "songno": "1100", - "diff": "ura", - "actual": 9.6, - "predicted": 10.0305, - "error": 0.4305000000000003 - }, - { - "songno": "835", - "diff": "oni", - "actual": 10.2, - "predicted": 9.77, - "error": 0.4299999999999997 - }, - { - "songno": "1401", - "diff": "oni", - "actual": 7.4, - "predicted": 6.9706, - "error": 0.4294000000000002 - }, - { - "songno": "1112", - "diff": "oni", - "actual": 3.8, - "predicted": 4.2291, - "error": 0.42910000000000004 - }, - { - "songno": "41", - "diff": "oni", - "actual": 6.2, - "predicted": 6.6282, - "error": 0.42819999999999947 - }, - { - "songno": "551", - "diff": "ura", - "actual": 6.8, - "predicted": 7.2267, - "error": 0.4267000000000003 - }, - { - "songno": "1386", - "diff": "oni", - "actual": 5.4, - "predicted": 4.9734, - "error": 0.42660000000000053 - }, - { - "songno": "1197", - "diff": "oni", - "actual": 4.5, - "predicted": 4.9262, - "error": 0.4261999999999997 - }, - { - "songno": "1207", - "diff": "oni", - "actual": 7.8, - "predicted": 7.3738, - "error": 0.4261999999999997 - }, - { - "songno": "437", - "diff": "oni", - "actual": 2.6, - "predicted": 3.026, - "error": 0.4259999999999997 - }, - { - "songno": "715", - "diff": "oni", - "actual": 8.4, - "predicted": 7.975, - "error": 0.4250000000000007 - }, - { - "songno": "938", - "diff": "oni", - "actual": 5.3, - "predicted": 5.7241, - "error": 0.42410000000000014 - }, - { - "songno": "317", - "diff": "oni", - "actual": 2.9, - "predicted": 3.3227, - "error": 0.4227000000000003 - }, - { - "songno": "1137", - "diff": "oni", - "actual": 7.1, - "predicted": 6.6778, - "error": 0.42219999999999924 - }, - { - "songno": "1240", - "diff": "oni", - "actual": 4.2, - "predicted": 3.7786, - "error": 0.4214000000000002 - }, - { - "songno": "354", - "diff": "oni", - "actual": 4.8, - "predicted": 4.3795, - "error": 0.42049999999999965 - }, - { - "songno": "1306", - "diff": "oni", - "actual": 4.9, - "predicted": 4.4796, - "error": 0.4204000000000008 - }, - { - "songno": "1186", - "diff": "oni", - "actual": 1.9, - "predicted": 1.48, - "error": 0.41999999999999993 - }, - { - "songno": "741", - "diff": "oni", - "actual": 3.5, - "predicted": 3.92, - "error": 0.41999999999999993 - }, - { - "songno": "845", - "diff": "ura", - "actual": 10.5, - "predicted": 10.9199, - "error": 0.41990000000000016 - }, - { - "songno": "1228", - "diff": "oni", - "actual": 4.1, - "predicted": 4.5195, - "error": 0.4195000000000002 - }, - { - "songno": "880", - "diff": "oni", - "actual": 5, - "predicted": 5.4192, - "error": 0.4192 - }, - { - "songno": "777", - "diff": "oni", - "actual": 10.8, - "predicted": 10.3811, - "error": 0.4189000000000007 - }, - { - "songno": "1374", - "diff": "oni", - "actual": 1.6, - "predicted": 2.0185, - "error": 0.41849999999999987 - }, - { - "songno": "109", - "diff": "ura", - "actual": 6.6, - "predicted": 6.1826, - "error": 0.41739999999999977 - }, - { - "songno": "1215", - "diff": "ura", - "actual": 11.2, - "predicted": 11.615, - "error": 0.4150000000000009 - }, - { - "songno": "971", - "diff": "oni", - "actual": 10.3, - "predicted": 9.887, - "error": 0.41300000000000026 - }, - { - "songno": "106", - "diff": "oni", - "actual": 5.1, - "predicted": 5.511, - "error": 0.4110000000000005 - }, - { - "songno": "652", - "diff": "ura", - "actual": 5.5, - "predicted": 5.911, - "error": 0.4109999999999996 - }, - { - "songno": "92", - "diff": "ura", - "actual": 5.5, - "predicted": 5.0892, - "error": 0.41080000000000005 - }, - { - "songno": "1268", - "diff": "ura", - "actual": 9.1, - "predicted": 9.5097, - "error": 0.40970000000000084 - }, - { - "songno": "1438", - "diff": "oni", - "actual": 7.4, - "predicted": 7.8092, - "error": 0.40919999999999934 - }, - { - "songno": "792", - "diff": "oni", - "actual": 3.7, - "predicted": 4.1088, - "error": 0.4087999999999994 - }, - { - "songno": "716", - "diff": "ura", - "actual": 10.9, - "predicted": 10.4932, - "error": 0.4068000000000005 - }, - { - "songno": "14", - "diff": "oni", - "actual": 3.7, - "predicted": 3.2932, - "error": 0.40680000000000005 - }, - { - "songno": "1233", - "diff": "oni", - "actual": 4.1, - "predicted": 3.6937, - "error": 0.40629999999999944 - }, - { - "songno": "1419", - "diff": "ura", - "actual": 11.9, - "predicted": 11.4941, - "error": 0.4059000000000008 - }, - { - "songno": "477", - "diff": "oni", - "actual": 9.3, - "predicted": 8.8952, - "error": 0.4047999999999998 - }, - { - "songno": "348", - "diff": "ura", - "actual": 6.7, - "predicted": 6.2968, - "error": 0.4032 - }, - { - "songno": "776", - "diff": "ura", - "actual": 8.7, - "predicted": 8.297, - "error": 0.4029999999999987 - }, - { - "songno": "246", - "diff": "oni", - "actual": 1.1, - "predicted": 1.5029, - "error": 0.4028999999999998 - }, - { - "songno": "1027", - "diff": "oni", - "actual": 3.9, - "predicted": 4.3021, - "error": 0.40210000000000035 - }, - { - "songno": "940", - "diff": "oni", - "actual": 9.1, - "predicted": 9.5006, - "error": 0.40060000000000073 - }, - { - "songno": "209", - "diff": "oni", - "actual": 3.1, - "predicted": 3.4995, - "error": 0.39949999999999974 - }, - { - "songno": "1020", - "diff": "ura", - "actual": 8, - "predicted": 7.601, - "error": 0.399 - }, - { - "songno": "662", - "diff": "oni", - "actual": 7.4, - "predicted": 7.0017, - "error": 0.39830000000000076 - }, - { - "songno": "951", - "diff": "oni", - "actual": 4.2, - "predicted": 3.802, - "error": 0.39800000000000013 - }, - { - "songno": "1292", - "diff": "oni", - "actual": 4.4, - "predicted": 4.7959, - "error": 0.39589999999999925 - }, - { - "songno": "300", - "diff": "oni", - "actual": 4, - "predicted": 4.3956, - "error": 0.39559999999999995 - }, - { - "songno": "1434", - "diff": "oni", - "actual": 9.7, - "predicted": 10.0956, - "error": 0.39559999999999995 - }, - { - "songno": "351", - "diff": "oni", - "actual": 8.7, - "predicted": 8.3055, - "error": 0.39449999999999896 - }, - { - "songno": "906", - "diff": "oni", - "actual": 9.1, - "predicted": 8.706, - "error": 0.39400000000000013 - }, - { - "songno": "795", - "diff": "oni", - "actual": 2.6, - "predicted": 2.9934, - "error": 0.39339999999999975 - }, - { - "songno": "1353", - "diff": "oni", - "actual": 2.8, - "predicted": 3.1932, - "error": 0.3932000000000002 - }, - { - "songno": "1080", - "diff": "oni", - "actual": 8, - "predicted": 7.6069, - "error": 0.39309999999999956 - }, - { - "songno": "823", - "diff": "oni", - "actual": 5.8, - "predicted": 6.1919, - "error": 0.3919000000000006 - }, - { - "songno": "269", - "diff": "oni", - "actual": 9.5, - "predicted": 9.1103, - "error": 0.3896999999999995 - }, - { - "songno": "1451", - "diff": "oni", - "actual": 5.1, - "predicted": 4.7107, - "error": 0.38929999999999954 - }, - { - "songno": "1379", - "diff": "oni", - "actual": 9.5, - "predicted": 9.8891, - "error": 0.3890999999999991 - }, - { - "songno": "21", - "diff": "oni", - "actual": 8.1, - "predicted": 8.4882, - "error": 0.3882000000000012 - }, - { - "songno": "33", - "diff": "oni", - "actual": 10.5, - "predicted": 10.1121, - "error": 0.38790000000000013 - }, - { - "songno": "55", - "diff": "oni", - "actual": 8.7, - "predicted": 8.3122, - "error": 0.3877999999999986 - }, - { - "songno": "1045", - "diff": "oni", - "actual": 8, - "predicted": 8.3864, - "error": 0.3864000000000001 - }, - { - "songno": "703", - "diff": "oni", - "actual": 5.1, - "predicted": 5.4859, - "error": 0.38590000000000035 - }, - { - "songno": "1144", - "diff": "ura", - "actual": 8.9, - "predicted": 9.2859, - "error": 0.38589999999999947 - }, - { - "songno": "1343", - "diff": "oni", - "actual": 1.4, - "predicted": 1.7849, - "error": 0.3849 - }, - { - "songno": "1385", - "diff": "oni", - "actual": 3.2, - "predicted": 2.8158, - "error": 0.3842000000000003 - }, - { - "songno": "515", - "diff": "oni", - "actual": 3.5, - "predicted": 3.884, - "error": 0.3839999999999999 - }, - { - "songno": "1225", - "diff": "oni", - "actual": 5.3, - "predicted": 5.6829, - "error": 0.38290000000000024 - }, - { - "songno": "12", - "diff": "oni", - "actual": 7.5, - "predicted": 7.1172, - "error": 0.3827999999999996 - }, - { - "songno": "760", - "diff": "oni", - "actual": 10.8, - "predicted": 10.4185, - "error": 0.38150000000000084 - }, - { - "songno": "98", - "diff": "oni", - "actual": 3.1, - "predicted": 3.4813, - "error": 0.3813 - }, - { - "songno": "1107", - "diff": "oni", - "actual": 6.5, - "predicted": 6.881, - "error": 0.3810000000000002 - }, - { - "songno": "1114", - "diff": "oni", - "actual": 2, - "predicted": 2.3805, - "error": 0.38050000000000006 - }, - { - "songno": "580", - "diff": "oni", - "actual": 3.6, - "predicted": 3.9794, - "error": 0.37939999999999996 - }, - { - "songno": "616", - "diff": "oni", - "actual": 5.8, - "predicted": 6.179, - "error": 0.37900000000000045 - }, - { - "songno": "243", - "diff": "oni", - "actual": 11, - "predicted": 10.6222, - "error": 0.3778000000000006 - }, - { - "songno": "266", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6769, - "error": 0.3769 - }, - { - "songno": "711", - "diff": "ura", - "actual": 5, - "predicted": 5.374, - "error": 0.37399999999999967 - }, - { - "songno": "64", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6739, - "error": 0.3738999999999999 - }, - { - "songno": "1408", - "diff": "oni", - "actual": 4.5, - "predicted": 4.8739, - "error": 0.3738999999999999 - }, - { - "songno": "865", - "diff": "oni", - "actual": 5.6, - "predicted": 5.2266, - "error": 0.3733999999999993 - }, - { - "songno": "190", - "diff": "oni", - "actual": 7.7, - "predicted": 7.327, - "error": 0.3730000000000002 - }, - { - "songno": "592", - "diff": "oni", - "actual": 7.1, - "predicted": 6.727, - "error": 0.37299999999999933 - }, - { - "songno": "1310", - "diff": "ura", - "actual": 11.1, - "predicted": 11.4715, - "error": 0.37150000000000105 - }, - { - "songno": "203", - "diff": "ura", - "actual": 7.6, - "predicted": 7.2289, - "error": 0.3710999999999993 - }, - { - "songno": "630", - "diff": "oni", - "actual": 9.3, - "predicted": 8.9291, - "error": 0.3709000000000007 - }, - { - "songno": "1310", - "diff": "oni", - "actual": 6, - "predicted": 5.6291, - "error": 0.3708999999999998 - }, - { - "songno": "448", - "diff": "oni", - "actual": 5.5, - "predicted": 5.1294, - "error": 0.3705999999999996 - }, - { - "songno": "1366", - "diff": "oni", - "actual": 4.7, - "predicted": 4.3301, - "error": 0.36990000000000034 - }, - { - "songno": "472", - "diff": "oni", - "actual": 5.9, - "predicted": 6.2699, - "error": 0.36989999999999945 - }, - { - "songno": "694", - "diff": "oni", - "actual": 3.5, - "predicted": 3.1302, - "error": 0.36980000000000013 - }, - { - "songno": "1210", - "diff": "oni", - "actual": 3.2, - "predicted": 3.569, - "error": 0.3689999999999998 - }, - { - "songno": "387", - "diff": "oni", - "actual": 4.9, - "predicted": 4.5319, - "error": 0.3681000000000001 - }, - { - "songno": "128", - "diff": "oni", - "actual": 9.2, - "predicted": 8.8331, - "error": 0.36689999999999934 - }, - { - "songno": "963", - "diff": "oni", - "actual": 7.1, - "predicted": 6.7338, - "error": 0.3662000000000001 - }, - { - "songno": "314", - "diff": "oni", - "actual": 1.3, - "predicted": 0.9339, - "error": 0.3661000000000001 - }, - { - "songno": "591", - "diff": "oni", - "actual": 6.2, - "predicted": 6.5658, - "error": 0.3658000000000001 - }, - { - "songno": "43", - "diff": "ura", - "actual": 10.1, - "predicted": 9.735, - "error": 0.3650000000000002 - }, - { - "songno": "479", - "diff": "oni", - "actual": 4.9, - "predicted": 4.5356, - "error": 0.3644000000000007 - }, - { - "songno": "219", - "diff": "oni", - "actual": 5.1, - "predicted": 4.7375, - "error": 0.3624999999999998 - }, - { - "songno": "972", - "diff": "oni", - "actual": 7.5, - "predicted": 7.8612, - "error": 0.3612000000000002 - }, - { - "songno": "1235", - "diff": "oni", - "actual": 7.8, - "predicted": 7.44, - "error": 0.35999999999999943 - }, - { - "songno": "956", - "diff": "oni", - "actual": 2.1, - "predicted": 2.4582, - "error": 0.3582000000000001 - }, - { - "songno": "438", - "diff": "oni", - "actual": 7.7, - "predicted": 7.3451, - "error": 0.35489999999999977 - }, - { - "songno": "1293", - "diff": "oni", - "actual": 3.8, - "predicted": 3.4454, - "error": 0.3546 - }, - { - "songno": "319", - "diff": "oni", - "actual": 4.4, - "predicted": 4.7536, - "error": 0.35359999999999925 - }, - { - "songno": "896", - "diff": "oni", - "actual": 11.1, - "predicted": 10.7469, - "error": 0.3530999999999995 - }, - { - "songno": "546", - "diff": "oni", - "actual": 6.8, - "predicted": 7.1522, - "error": 0.35219999999999985 - }, - { - "songno": "345", - "diff": "oni", - "actual": 4.5, - "predicted": 4.1479, - "error": 0.3521000000000001 - }, - { - "songno": "68", - "diff": "oni", - "actual": 9.2, - "predicted": 9.5511, - "error": 0.35110000000000063 - }, - { - "songno": "149", - "diff": "oni", - "actual": 4.8, - "predicted": 5.1505, - "error": 0.35050000000000026 - }, - { - "songno": "1360", - "diff": "oni", - "actual": 5.2, - "predicted": 4.8503, - "error": 0.34970000000000034 - }, - { - "songno": "489", - "diff": "oni", - "actual": 4.7, - "predicted": 4.351, - "error": 0.3490000000000002 - }, - { - "songno": "138", - "diff": "oni", - "actual": 7.7, - "predicted": 7.3516, - "error": 0.3483999999999998 - }, - { - "songno": "284", - "diff": "ura", - "actual": 6.2, - "predicted": 6.5484, - "error": 0.3483999999999998 - }, - { - "songno": "1006", - "diff": "oni", - "actual": 5.3, - "predicted": 5.6477, - "error": 0.34770000000000056 - }, - { - "songno": "1027", - "diff": "ura", - "actual": 9.1, - "predicted": 9.4477, - "error": 0.3476999999999997 - }, - { - "songno": "1097", - "diff": "oni", - "actual": 5.1, - "predicted": 4.753, - "error": 0.34699999999999953 - }, - { - "songno": "72", - "diff": "oni", - "actual": 7.4, - "predicted": 7.7435, - "error": 0.3434999999999997 - }, - { - "songno": "879", - "diff": "oni", - "actual": 8.5, - "predicted": 8.1567, - "error": 0.3432999999999993 - }, - { - "songno": "492", - "diff": "oni", - "actual": 1.9, - "predicted": 2.2429, - "error": 0.3429000000000002 - }, - { - "songno": "927", - "diff": "oni", - "actual": 8.9, - "predicted": 9.2426, - "error": 0.3425999999999991 - }, - { - "songno": "1176", - "diff": "oni", - "actual": 4, - "predicted": 4.3412, - "error": 0.3411999999999997 - }, - { - "songno": "498", - "diff": "oni", - "actual": 6.7, - "predicted": 6.3599, - "error": 0.3401000000000005 - }, - { - "songno": "824", - "diff": "ura", - "actual": 5.1, - "predicted": 5.4384, - "error": 0.33840000000000003 - }, - { - "songno": "408", - "diff": "oni", - "actual": 3.6, - "predicted": 3.9369, - "error": 0.3369 - }, - { - "songno": "9", - "diff": "ura", - "actual": 5.4, - "predicted": 5.7367, - "error": 0.33669999999999956 - }, - { - "songno": "497", - "diff": "oni", - "actual": 5.4, - "predicted": 5.7361, - "error": 0.33610000000000007 - }, - { - "songno": "851", - "diff": "oni", - "actual": 10.1, - "predicted": 10.4351, - "error": 0.3351000000000006 - }, - { - "songno": "1149", - "diff": "ura", - "actual": 7, - "predicted": 7.3351, - "error": 0.33509999999999973 - }, - { - "songno": "5", - "diff": "oni", - "actual": 8.3, - "predicted": 7.9654, - "error": 0.3346000000000009 - }, - { - "songno": "1396", - "diff": "oni", - "actual": 4.6, - "predicted": 4.9338, - "error": 0.3338000000000001 - }, - { - "songno": "693", - "diff": "oni", - "actual": 4.6, - "predicted": 4.9329, - "error": 0.3329000000000004 - }, - { - "songno": "798", - "diff": "oni", - "actual": 9.1, - "predicted": 8.7675, - "error": 0.3324999999999996 - }, - { - "songno": "1220", - "diff": "ura", - "actual": 9.4, - "predicted": 9.7319, - "error": 0.3318999999999992 - }, - { - "songno": "469", - "diff": "oni", - "actual": 4.5, - "predicted": 4.8311, - "error": 0.33110000000000017 - }, - { - "songno": "1094", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6302, - "error": 0.3302000000000005 - }, - { - "songno": "764", - "diff": "oni", - "actual": 11.2, - "predicted": 10.87, - "error": 0.33000000000000007 - }, - { - "songno": "1312", - "diff": "ura", - "actual": 6.3, - "predicted": 6.6299, - "error": 0.3299000000000003 - }, - { - "songno": "1036", - "diff": "oni", - "actual": 6.5, - "predicted": 6.1719, - "error": 0.32810000000000006 - }, - { - "songno": "389", - "diff": "oni", - "actual": 6.2, - "predicted": 5.8719, - "error": 0.32810000000000006 - }, - { - "songno": "856", - "diff": "ura", - "actual": 11.3, - "predicted": 10.9721, - "error": 0.3279000000000014 - }, - { - "songno": "253", - "diff": "oni", - "actual": 5, - "predicted": 5.3269, - "error": 0.3269000000000002 - }, - { - "songno": "1383", - "diff": "oni", - "actual": 9.3, - "predicted": 9.6262, - "error": 0.32620000000000005 - }, - { - "songno": "468", - "diff": "oni", - "actual": 2.7, - "predicted": 3.0258, - "error": 0.32579999999999965 - }, - { - "songno": "639", - "diff": "oni", - "actual": 7, - "predicted": 6.6746, - "error": 0.32540000000000013 - }, - { - "songno": "277", - "diff": "oni", - "actual": 3.2, - "predicted": 2.8749, - "error": 0.3251000000000004 - }, - { - "songno": "124", - "diff": "oni", - "actual": 5.5, - "predicted": 5.8242, - "error": 0.32420000000000027 - }, - { - "songno": "1373", - "diff": "oni", - "actual": 2.1, - "predicted": 2.4233, - "error": 0.3232999999999997 - }, - { - "songno": "87", - "diff": "oni", - "actual": 5.6, - "predicted": 5.2768, - "error": 0.32319999999999993 - }, - { - "songno": "1077", - "diff": "oni", - "actual": 3.9, - "predicted": 3.577, - "error": 0.32299999999999995 - }, - { - "songno": "566", - "diff": "oni", - "actual": 7.6, - "predicted": 7.2771, - "error": 0.32289999999999974 - }, - { - "songno": "278", - "diff": "oni", - "actual": 3.8, - "predicted": 4.1222, - "error": 0.3222000000000005 - }, - { - "songno": "569", - "diff": "oni", - "actual": 7.2, - "predicted": 7.5221, - "error": 0.32209999999999983 - }, - { - "songno": "194", - "diff": "oni", - "actual": 9.4, - "predicted": 9.7215, - "error": 0.32150000000000034 - }, - { - "songno": "895", - "diff": "oni", - "actual": 1, - "predicted": 1.321, - "error": 0.32099999999999995 - }, - { - "songno": "1465", - "diff": "ura", - "actual": 11, - "predicted": 10.6795, - "error": 0.3204999999999991 - }, - { - "songno": "114", - "diff": "oni", - "actual": 7, - "predicted": 6.6806, - "error": 0.3193999999999999 - }, - { - "songno": "38", - "diff": "oni", - "actual": 5.7, - "predicted": 6.0189, - "error": 0.3189000000000002 - }, - { - "songno": "1353", - "diff": "ura", - "actual": 7.8, - "predicted": 7.4821, - "error": 0.31789999999999985 - }, - { - "songno": "1452", - "diff": "oni", - "actual": 8.1, - "predicted": 7.784, - "error": 0.31599999999999984 - }, - { - "songno": "1023", - "diff": "oni", - "actual": 3.4, - "predicted": 3.7158, - "error": 0.3158000000000003 - }, - { - "songno": "430", - "diff": "oni", - "actual": 1.5, - "predicted": 1.1847, - "error": 0.3152999999999999 - }, - { - "songno": "1312", - "diff": "oni", - "actual": 2.9, - "predicted": 3.2143, - "error": 0.31430000000000025 - }, - { - "songno": "1423", - "diff": "oni", - "actual": 4.7, - "predicted": 4.3858, - "error": 0.3142000000000005 - }, - { - "songno": "945", - "diff": "oni", - "actual": 5, - "predicted": 4.6862, - "error": 0.31379999999999963 - }, - { - "songno": "453", - "diff": "oni", - "actual": 6.5, - "predicted": 6.8137, - "error": 0.31369999999999987 - }, - { - "songno": "251", - "diff": "oni", - "actual": 8.1, - "predicted": 7.7866, - "error": 0.3133999999999997 - }, - { - "songno": "773", - "diff": "oni", - "actual": 4, - "predicted": 4.3131, - "error": 0.3131000000000004 - }, - { - "songno": "938", - "diff": "ura", - "actual": 8.5, - "predicted": 8.1872, - "error": 0.3127999999999993 - }, - { - "songno": "576", - "diff": "oni", - "actual": 8, - "predicted": 8.3127, - "error": 0.31269999999999953 - }, - { - "songno": "861", - "diff": "oni", - "actual": 4.2, - "predicted": 3.8875, - "error": 0.3125 - }, - { - "songno": "819", - "diff": "ura", - "actual": 10.1, - "predicted": 10.4121, - "error": 0.31210000000000093 - }, - { - "songno": "1227", - "diff": "ura", - "actual": 12, - "predicted": 11.6882, - "error": 0.31179999999999986 - }, - { - "songno": "1370", - "diff": "oni", - "actual": 8.6, - "predicted": 8.2891, - "error": 0.3109000000000002 - }, - { - "songno": "100", - "diff": "ura", - "actual": 7, - "predicted": 7.3105, - "error": 0.3105000000000002 - }, - { - "songno": "276", - "diff": "ura", - "actual": 6, - "predicted": 5.6896, - "error": 0.31039999999999957 - }, - { - "songno": "1188", - "diff": "oni", - "actual": 3.9, - "predicted": 3.5898, - "error": 0.31020000000000003 - }, - { - "songno": "220", - "diff": "oni", - "actual": 9.3, - "predicted": 8.9904, - "error": 0.30960000000000143 - }, - { - "songno": "487", - "diff": "ura", - "actual": 6.6, - "predicted": 6.9095, - "error": 0.3095000000000008 - }, - { - "songno": "1126", - "diff": "oni", - "actual": 3.9, - "predicted": 3.5908, - "error": 0.3091999999999997 - }, - { - "songno": "482", - "diff": "oni", - "actual": 1.8, - "predicted": 1.4912, - "error": 0.30879999999999996 - }, - { - "songno": "910", - "diff": "oni", - "actual": 7.3, - "predicted": 7.6087, - "error": 0.3087 - }, - { - "songno": "285", - "diff": "ura", - "actual": 5.9, - "predicted": 6.2081, - "error": 0.3080999999999996 - }, - { - "songno": "1196", - "diff": "oni", - "actual": 6.6, - "predicted": 6.9075, - "error": 0.3075000000000001 - }, - { - "songno": "200", - "diff": "oni", - "actual": 2.3, - "predicted": 1.9934, - "error": 0.30659999999999976 - }, - { - "songno": "849", - "diff": "oni", - "actual": 11.9, - "predicted": 11.5938, - "error": 0.30620000000000047 - }, - { - "songno": "301", - "diff": "oni", - "actual": 2.8, - "predicted": 3.1058, - "error": 0.30580000000000007 - }, - { - "songno": "758", - "diff": "oni", - "actual": 10.8, - "predicted": 10.4946, - "error": 0.30540000000000056 - }, - { - "songno": "704", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6048, - "error": 0.3048000000000002 - }, - { - "songno": "384", - "diff": "oni", - "actual": 2.1, - "predicted": 2.4048, - "error": 0.30479999999999974 - }, - { - "songno": "321", - "diff": "oni", - "actual": 6.3, - "predicted": 5.9961, - "error": 0.3038999999999996 - }, - { - "songno": "1339", - "diff": "oni", - "actual": 4.5, - "predicted": 4.1964, - "error": 0.3036000000000003 - }, - { - "songno": "539", - "diff": "oni", - "actual": 6, - "predicted": 5.6983, - "error": 0.3017000000000003 - }, - { - "songno": "1024", - "diff": "oni", - "actual": 3.3, - "predicted": 3.6017, - "error": 0.3017000000000003 - }, - { - "songno": "568", - "diff": "oni", - "actual": 7.5, - "predicted": 7.1987, - "error": 0.30130000000000035 - }, - { - "songno": "447", - "diff": "oni", - "actual": 4, - "predicted": 4.2979, - "error": 0.2979000000000003 - }, - { - "songno": "383", - "diff": "oni", - "actual": 6.1, - "predicted": 6.3974, - "error": 0.29740000000000055 - }, - { - "songno": "264", - "diff": "oni", - "actual": 4.8, - "predicted": 4.5026, - "error": 0.29739999999999966 - }, - { - "songno": "1319", - "diff": "oni", - "actual": 8.8, - "predicted": 9.0972, - "error": 0.29720000000000013 - }, - { - "songno": "717", - "diff": "oni", - "actual": 5.6, - "predicted": 5.897, - "error": 0.2970000000000006 - }, - { - "songno": "1355", - "diff": "oni", - "actual": 9, - "predicted": 9.2968, - "error": 0.2967999999999993 - }, - { - "songno": "1168", - "diff": "ura", - "actual": 8.4, - "predicted": 8.6963, - "error": 0.29630000000000045 - }, - { - "songno": "1457", - "diff": "oni", - "actual": 5.4, - "predicted": 5.6961, - "error": 0.29610000000000003 - }, - { - "songno": "65", - "diff": "oni", - "actual": 6.2, - "predicted": 6.4961, - "error": 0.29610000000000003 - }, - { - "songno": "344", - "diff": "oni", - "actual": 5.2, - "predicted": 4.9044, - "error": 0.2956000000000003 - }, - { - "songno": "913", - "diff": "oni", - "actual": 2.1, - "predicted": 2.3954, - "error": 0.2953999999999999 - }, - { - "songno": "1350", - "diff": "oni", - "actual": 11.9, - "predicted": 11.605, - "error": 0.29499999999999993 - }, - { - "songno": "1308", - "diff": "oni", - "actual": 8.4, - "predicted": 8.6948, - "error": 0.2948000000000004 - }, - { - "songno": "1204", - "diff": "oni", - "actual": 3.1, - "predicted": 3.3941, - "error": 0.2940999999999998 - }, - { - "songno": "815", - "diff": "oni", - "actual": 8.9, - "predicted": 9.1937, - "error": 0.2936999999999994 - }, - { - "songno": "1012", - "diff": "oni", - "actual": 9.7, - "predicted": 9.4066, - "error": 0.2934000000000001 - }, - { - "songno": "132", - "diff": "oni", - "actual": 4, - "predicted": 4.2934, - "error": 0.2934000000000001 - }, - { - "songno": "728", - "diff": "oni", - "actual": 4.9, - "predicted": 5.1934, - "error": 0.2933999999999992 - }, - { - "songno": "1246", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4071, - "error": 0.2929000000000004 - }, - { - "songno": "276", - "diff": "oni", - "actual": 3.7, - "predicted": 3.9929, - "error": 0.29289999999999994 - }, - { - "songno": "951", - "diff": "ura", - "actual": 7.8, - "predicted": 8.0925, - "error": 0.29249999999999954 - }, - { - "songno": "1432", - "diff": "oni", - "actual": 10, - "predicted": 9.7083, - "error": 0.2917000000000005 - }, - { - "songno": "992", - "diff": "oni", - "actual": 10.1, - "predicted": 9.8107, - "error": 0.289299999999999 - }, - { - "songno": "1121", - "diff": "ura", - "actual": 10.2, - "predicted": 9.9112, - "error": 0.28880000000000017 - }, - { - "songno": "937", - "diff": "oni", - "actual": 5.1, - "predicted": 5.3879, - "error": 0.2879000000000005 - }, - { - "songno": "922", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4137, - "error": 0.2862999999999998 - }, - { - "songno": "733", - "diff": "oni", - "actual": 3.8, - "predicted": 3.5137, - "error": 0.2862999999999998 - }, - { - "songno": "518", - "diff": "oni", - "actual": 11.4, - "predicted": 11.6846, - "error": 0.2845999999999993 - }, - { - "songno": "675", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4845, - "error": 0.28449999999999953 - }, - { - "songno": "471", - "diff": "oni", - "actual": 7.2, - "predicted": 6.9165, - "error": 0.2835000000000001 - }, - { - "songno": "959", - "diff": "oni", - "actual": 7, - "predicted": 7.2834, - "error": 0.2834000000000003 - }, - { - "songno": "1226", - "diff": "ura", - "actual": 6.1, - "predicted": 6.383, - "error": 0.28300000000000036 - }, - { - "songno": "571", - "diff": "oni", - "actual": 9.1, - "predicted": 8.8177, - "error": 0.28229999999999933 - }, - { - "songno": "381", - "diff": "oni", - "actual": 2.3, - "predicted": 2.5808, - "error": 0.28080000000000016 - }, - { - "songno": "1226", - "diff": "oni", - "actual": 3.5, - "predicted": 3.7806, - "error": 0.2806000000000002 - }, - { - "songno": "80", - "diff": "ura", - "actual": 9.5, - "predicted": 9.2196, - "error": 0.2804000000000002 - }, - { - "songno": "1318", - "diff": "ura", - "actual": 10.7, - "predicted": 10.9802, - "error": 0.28020000000000067 - }, - { - "songno": "417", - "diff": "oni", - "actual": 3.3, - "predicted": 3.5795, - "error": 0.2795000000000001 - }, - { - "songno": "507", - "diff": "oni", - "actual": 5.8, - "predicted": 6.0793, - "error": 0.2793000000000001 - }, - { - "songno": "1002", - "diff": "oni", - "actual": 4.9, - "predicted": 4.6214, - "error": 0.27859999999999996 - }, - { - "songno": "257", - "diff": "oni", - "actual": 6.3, - "predicted": 6.5776, - "error": 0.2776000000000005 - }, - { - "songno": "480", - "diff": "oni", - "actual": 3.2, - "predicted": 3.4769, - "error": 0.2768999999999999 - }, - { - "songno": "1413", - "diff": "ura", - "actual": 10.8, - "predicted": 10.5236, - "error": 0.27640000000000065 - }, - { - "songno": "765", - "diff": "ura", - "actual": 12, - "predicted": 11.724, - "error": 0.2759999999999998 - }, - { - "songno": "587", - "diff": "oni", - "actual": 5.2, - "predicted": 4.9243, - "error": 0.2757000000000005 - }, - { - "songno": "66", - "diff": "oni", - "actual": 5.9, - "predicted": 6.1752, - "error": 0.2751999999999999 - }, - { - "songno": "1301", - "diff": "oni", - "actual": 2, - "predicted": 1.7249, - "error": 0.2750999999999999 - }, - { - "songno": "761", - "diff": "oni", - "actual": 10.4, - "predicted": 10.1254, - "error": 0.2745999999999995 - }, - { - "songno": "924", - "diff": "oni", - "actual": 2.8, - "predicted": 3.0745, - "error": 0.2745000000000002 - }, - { - "songno": "1348", - "diff": "oni", - "actual": 6.7, - "predicted": 6.4257, - "error": 0.2743000000000002 - }, - { - "songno": "875", - "diff": "oni", - "actual": 5.1, - "predicted": 5.3739, - "error": 0.27390000000000025 - }, - { - "songno": "488", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4273, - "error": 0.2727000000000004 - }, - { - "songno": "1174", - "diff": "oni", - "actual": 6.2, - "predicted": 6.4726, - "error": 0.27259999999999973 - }, - { - "songno": "911", - "diff": "ura", - "actual": 7.1, - "predicted": 7.3724, - "error": 0.2724000000000002 - }, - { - "songno": "695", - "diff": "oni", - "actual": 8.3, - "predicted": 8.5719, - "error": 0.2718999999999987 - }, - { - "songno": "742", - "diff": "oni", - "actual": 6.9, - "predicted": 6.6282, - "error": 0.2718000000000007 - }, - { - "songno": "1055", - "diff": "oni", - "actual": 1.8, - "predicted": 2.0717, - "error": 0.27169999999999983 - }, - { - "songno": "1321", - "diff": "oni", - "actual": 5.8, - "predicted": 6.0716, - "error": 0.2716000000000003 - }, - { - "songno": "355", - "diff": "oni", - "actual": 10, - "predicted": 9.729, - "error": 0.2710000000000008 - }, - { - "songno": "83", - "diff": "oni", - "actual": 6, - "predicted": 6.2709, - "error": 0.27090000000000014 - }, - { - "songno": "94", - "diff": "oni", - "actual": 9.9, - "predicted": 10.1702, - "error": 0.2701999999999991 - }, - { - "songno": "800", - "diff": "oni", - "actual": 7.3, - "predicted": 7.0305, - "error": 0.26949999999999985 - }, - { - "songno": "888", - "diff": "oni", - "actual": 6.1, - "predicted": 6.3683, - "error": 0.2683 - }, - { - "songno": "1225", - "diff": "ura", - "actual": 6.5, - "predicted": 6.7675, - "error": 0.26750000000000007 - }, - { - "songno": "926", - "diff": "oni", - "actual": 3.7, - "predicted": 3.9675, - "error": 0.2674999999999996 - }, - { - "songno": "1380", - "diff": "oni", - "actual": 6.9, - "predicted": 6.6328, - "error": 0.26720000000000077 - }, - { - "songno": "1031", - "diff": "ura", - "actual": 10.5, - "predicted": 10.7672, - "error": 0.26720000000000077 - }, - { - "songno": "1237", - "diff": "oni", - "actual": 4.5, - "predicted": 4.7657, - "error": 0.2656999999999998 - }, - { - "songno": "640", - "diff": "oni", - "actual": 8.5, - "predicted": 8.2354, - "error": 0.2645999999999997 - }, - { - "songno": "553", - "diff": "oni", - "actual": 4.7, - "predicted": 4.9637, - "error": 0.26370000000000005 - }, - { - "songno": "997", - "diff": "ura", - "actual": 7.3, - "predicted": 7.5636, - "error": 0.2636000000000003 - }, - { - "songno": "390", - "diff": "oni", - "actual": 4.8, - "predicted": 4.5365, - "error": 0.2634999999999996 - }, - { - "songno": "484", - "diff": "oni", - "actual": 5.3, - "predicted": 5.5634, - "error": 0.26339999999999986 - }, - { - "songno": "920", - "diff": "ura", - "actual": 9.2, - "predicted": 8.937, - "error": 0.2629999999999999 - }, - { - "songno": "567", - "diff": "oni", - "actual": 7.1, - "predicted": 6.8374, - "error": 0.26259999999999994 - }, - { - "songno": "150", - "diff": "ura", - "actual": 9.4, - "predicted": 9.662, - "error": 0.26200000000000045 - }, - { - "songno": "1419", - "diff": "oni", - "actual": 9.8, - "predicted": 10.0619, - "error": 0.2618999999999989 - }, - { - "songno": "304", - "diff": "oni", - "actual": 5.6, - "predicted": 5.3388, - "error": 0.26119999999999965 - }, - { - "songno": "946", - "diff": "oni", - "actual": 3.4, - "predicted": 3.1395, - "error": 0.26049999999999995 - }, - { - "songno": "688", - "diff": "oni", - "actual": 6.3, - "predicted": 6.5603, - "error": 0.2603 - }, - { - "songno": "207", - "diff": "oni", - "actual": 4.2, - "predicted": 4.4601, - "error": 0.26009999999999955 - }, - { - "songno": "454", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4401, - "error": 0.2599 - }, - { - "songno": "447", - "diff": "ura", - "actual": 6.2, - "predicted": 6.4596, - "error": 0.25959999999999983 - }, - { - "songno": "215", - "diff": "oni", - "actual": 6.6, - "predicted": 6.859, - "error": 0.25900000000000034 - }, - { - "songno": "493", - "diff": "ura", - "actual": 9.4, - "predicted": 9.1413, - "error": 0.25870000000000104 - }, - { - "songno": "1376", - "diff": "oni", - "actual": 1.9, - "predicted": 1.6413, - "error": 0.25869999999999993 - }, - { - "songno": "364", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4585, - "error": 0.25849999999999973 - }, - { - "songno": "363", - "diff": "oni", - "actual": 8.1, - "predicted": 7.8441, - "error": 0.2558999999999996 - }, - { - "songno": "169", - "diff": "oni", - "actual": 3.7, - "predicted": 3.9546, - "error": 0.25459999999999994 - }, - { - "songno": "954", - "diff": "ura", - "actual": 11.8, - "predicted": 11.5459, - "error": 0.2541000000000011 - }, - { - "songno": "1215", - "diff": "oni", - "actual": 8.3, - "predicted": 8.5537, - "error": 0.2536999999999985 - }, - { - "songno": "1165", - "diff": "oni", - "actual": 7.9, - "predicted": 7.6466, - "error": 0.25340000000000007 - }, - { - "songno": "82", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4478, - "error": 0.2522000000000002 - }, - { - "songno": "332", - "diff": "oni", - "actual": 2.5, - "predicted": 2.7522, - "error": 0.2522000000000002 - }, - { - "songno": "1227", - "diff": "oni", - "actual": 10.8, - "predicted": 10.5483, - "error": 0.25170000000000137 - }, - { - "songno": "1158", - "diff": "oni", - "actual": 8.6, - "predicted": 8.3496, - "error": 0.25039999999999907 - }, - { - "songno": "96", - "diff": "oni", - "actual": 8.8, - "predicted": 8.5502, - "error": 0.24980000000000047 - }, - { - "songno": "845", - "diff": "oni", - "actual": 7.5, - "predicted": 7.2502, - "error": 0.24979999999999958 - }, - { - "songno": "413", - "diff": "oni", - "actual": 5.7, - "predicted": 5.451, - "error": 0.24900000000000055 - }, - { - "songno": "113", - "diff": "oni", - "actual": 5.7, - "predicted": 5.9484, - "error": 0.24840000000000018 - }, - { - "songno": "908", - "diff": "oni", - "actual": 6, - "predicted": 6.2482, - "error": 0.24819999999999975 - }, - { - "songno": "1033", - "diff": "ura", - "actual": 8.6, - "predicted": 8.847, - "error": 0.2469999999999999 - }, - { - "songno": "76", - "diff": "ura", - "actual": 7.4, - "predicted": 7.6467, - "error": 0.2466999999999997 - }, - { - "songno": "958", - "diff": "oni", - "actual": 8.4, - "predicted": 8.6466, - "error": 0.24659999999999904 - }, - { - "songno": "37", - "diff": "oni", - "actual": 5.3, - "predicted": 5.5462, - "error": 0.24619999999999997 - }, - { - "songno": "443", - "diff": "oni", - "actual": 4.4, - "predicted": 4.646, - "error": 0.24599999999999955 - }, - { - "songno": "1117", - "diff": "oni", - "actual": 2.9, - "predicted": 3.1458, - "error": 0.24580000000000002 - }, - { - "songno": "1068", - "diff": "oni", - "actual": 9.2, - "predicted": 8.9543, - "error": 0.24569999999999936 - }, - { - "songno": "920", - "diff": "oni", - "actual": 4.9, - "predicted": 5.1455, - "error": 0.24549999999999983 - }, - { - "songno": "735", - "diff": "ura", - "actual": 9.7, - "predicted": 9.9454, - "error": 0.24540000000000006 - }, - { - "songno": "26", - "diff": "oni", - "actual": 4.1, - "predicted": 4.3449, - "error": 0.24490000000000034 - }, - { - "songno": "1285", - "diff": "oni", - "actual": 2.4, - "predicted": 2.1551, - "error": 0.2448999999999999 - }, - { - "songno": "198", - "diff": "oni", - "actual": 2.4, - "predicted": 2.6442, - "error": 0.2442000000000002 - }, - { - "songno": "500", - "diff": "ura", - "actual": 8.5, - "predicted": 8.2573, - "error": 0.24269999999999925 - }, - { - "songno": "341", - "diff": "oni", - "actual": 3.3, - "predicted": 3.5425, - "error": 0.24250000000000016 - }, - { - "songno": "1057", - "diff": "oni", - "actual": 6.4, - "predicted": 6.6423, - "error": 0.2422999999999993 - }, - { - "songno": "721", - "diff": "oni", - "actual": 9.3, - "predicted": 9.5423, - "error": 0.2422999999999984 - }, - { - "songno": "181", - "diff": "ura", - "actual": 10.2, - "predicted": 10.4415, - "error": 0.24150000000000027 - }, - { - "songno": "15", - "diff": "ura", - "actual": 10.2, - "predicted": 10.4414, - "error": 0.2414000000000005 - }, - { - "songno": "1322", - "diff": "oni", - "actual": 7.9, - "predicted": 8.1406, - "error": 0.24059999999999881 - }, - { - "songno": "1001", - "diff": "oni", - "actual": 3.6, - "predicted": 3.8404, - "error": 0.24039999999999973 - }, - { - "songno": "1354", - "diff": "oni", - "actual": 7, - "predicted": 7.2398, - "error": 0.2397999999999998 - }, - { - "songno": "1079", - "diff": "oni", - "actual": 5.6, - "predicted": 5.3608, - "error": 0.2391999999999994 - }, - { - "songno": "1194", - "diff": "oni", - "actual": 4.2, - "predicted": 4.4382, - "error": 0.23819999999999997 - }, - { - "songno": "776", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4625, - "error": 0.23749999999999982 - }, - { - "songno": "672", - "diff": "oni", - "actual": 2.4, - "predicted": 2.6372, - "error": 0.23720000000000008 - }, - { - "songno": "1054", - "diff": "oni", - "actual": 3.9, - "predicted": 4.1364, - "error": 0.23640000000000017 - }, - { - "songno": "1111", - "diff": "oni", - "actual": 4, - "predicted": 4.2363, - "error": 0.23629999999999995 - }, - { - "songno": "1309", - "diff": "oni", - "actual": 6.5, - "predicted": 6.2648, - "error": 0.23519999999999985 - }, - { - "songno": "483", - "diff": "oni", - "actual": 7.1, - "predicted": 6.865, - "error": 0.23499999999999943 - }, - { - "songno": "63", - "diff": "oni", - "actual": 6.1, - "predicted": 5.8655, - "error": 0.2344999999999997 - }, - { - "songno": "955", - "diff": "oni", - "actual": 10.5, - "predicted": 10.2656, - "error": 0.23440000000000083 - }, - { - "songno": "481", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4338, - "error": 0.23379999999999956 - }, - { - "songno": "1268", - "diff": "oni", - "actual": 6.3, - "predicted": 6.5335, - "error": 0.23350000000000026 - }, - { - "songno": "95", - "diff": "ura", - "actual": 9.6, - "predicted": 9.8332, - "error": 0.23320000000000007 - }, - { - "songno": "203", - "diff": "oni", - "actual": 4.4, - "predicted": 4.169, - "error": 0.23100000000000076 - }, - { - "songno": "133", - "diff": "oni", - "actual": 4.8, - "predicted": 5.0305, - "error": 0.23050000000000015 - }, - { - "songno": "1153", - "diff": "oni", - "actual": 1.8, - "predicted": 1.5716, - "error": 0.22839999999999994 - }, - { - "songno": "540", - "diff": "oni", - "actual": 5.9, - "predicted": 6.1281, - "error": 0.22809999999999953 - }, - { - "songno": "547", - "diff": "oni", - "actual": 3.8, - "predicted": 3.573, - "error": 0.22699999999999987 - }, - { - "songno": "452", - "diff": "oni", - "actual": 8.5, - "predicted": 8.2732, - "error": 0.22680000000000078 - }, - { - "songno": "804", - "diff": "ura", - "actual": 9.4, - "predicted": 9.1741, - "error": 0.2259000000000011 - }, - { - "songno": "1116", - "diff": "ura", - "actual": 7.8, - "predicted": 7.5742, - "error": 0.22579999999999956 - }, - { - "songno": "577", - "diff": "oni", - "actual": 9.8, - "predicted": 9.5747, - "error": 0.22530000000000072 - }, - { - "songno": "116", - "diff": "oni", - "actual": 2.8, - "predicted": 3.0252, - "error": 0.22520000000000007 - }, - { - "songno": "324", - "diff": "ura", - "actual": 8.9, - "predicted": 8.6749, - "error": 0.2251000000000012 - }, - { - "songno": "168", - "diff": "oni", - "actual": 8.6, - "predicted": 8.375, - "error": 0.22499999999999964 - }, - { - "songno": "725", - "diff": "oni", - "actual": 4.4, - "predicted": 4.1763, - "error": 0.2237 - }, - { - "songno": "335", - "diff": "oni", - "actual": 9.4, - "predicted": 9.1764, - "error": 0.22360000000000113 - }, - { - "songno": "700", - "diff": "oni", - "actual": 9.6, - "predicted": 9.8229, - "error": 0.222900000000001 - }, - { - "songno": "635", - "diff": "oni", - "actual": 8.5, - "predicted": 8.2773, - "error": 0.22269999999999968 - }, - { - "songno": "349", - "diff": "oni", - "actual": 6.8, - "predicted": 6.5774, - "error": 0.2225999999999999 - }, - { - "songno": "1206", - "diff": "oni", - "actual": 7.6, - "predicted": 7.8225, - "error": 0.22250000000000014 - }, - { - "songno": "1034", - "diff": "oni", - "actual": 5.9, - "predicted": 6.1223, - "error": 0.22229999999999972 - }, - { - "songno": "313", - "diff": "oni", - "actual": 2.6, - "predicted": 2.3784, - "error": 0.22160000000000002 - }, - { - "songno": "222", - "diff": "ura", - "actual": 9, - "predicted": 9.2205, - "error": 0.22049999999999947 - }, - { - "songno": "960", - "diff": "ura", - "actual": 11.8, - "predicted": 11.5796, - "error": 0.22040000000000148 - }, - { - "songno": "1049", - "diff": "oni", - "actual": 9.5, - "predicted": 9.7201, - "error": 0.2201000000000004 - }, - { - "songno": "1015", - "diff": "oni", - "actual": 8.7, - "predicted": 8.4811, - "error": 0.21889999999999965 - }, - { - "songno": "1212", - "diff": "oni", - "actual": 1.4, - "predicted": 1.618, - "error": 0.2180000000000002 - }, - { - "songno": "338", - "diff": "oni", - "actual": 9.3, - "predicted": 9.082, - "error": 0.21799999999999997 - }, - { - "songno": "1020", - "diff": "oni", - "actual": 5, - "predicted": 4.7821, - "error": 0.2179000000000002 - }, - { - "songno": "238", - "diff": "oni", - "actual": 6.1, - "predicted": 5.8821, - "error": 0.21789999999999932 - }, - { - "songno": "429", - "diff": "oni", - "actual": 4.7, - "predicted": 4.4825, - "error": 0.21750000000000025 - }, - { - "songno": "1129", - "diff": "oni", - "actual": 9.8, - "predicted": 9.5832, - "error": 0.216800000000001 - }, - { - "songno": "1162", - "diff": "oni", - "actual": 3.9, - "predicted": 3.6832, - "error": 0.2168000000000001 - }, - { - "songno": "1191", - "diff": "oni", - "actual": 5.4, - "predicted": 5.6156, - "error": 0.21559999999999935 - }, - { - "songno": "868", - "diff": "oni", - "actual": 9.5, - "predicted": 9.7155, - "error": 0.21550000000000047 - }, - { - "songno": "85", - "diff": "oni", - "actual": 7.4, - "predicted": 7.1857, - "error": 0.2143000000000006 - }, - { - "songno": "1022", - "diff": "oni", - "actual": 2.7, - "predicted": 2.9128, - "error": 0.21279999999999966 - }, - { - "songno": "504", - "diff": "oni", - "actual": 6.1, - "predicted": 6.3127, - "error": 0.21270000000000078 - }, - { - "songno": "1388", - "diff": "oni", - "actual": 6.1, - "predicted": 6.3125, - "error": 0.21250000000000036 - }, - { - "songno": "74", - "diff": "oni", - "actual": 4.5, - "predicted": 4.7122, - "error": 0.21220000000000017 - }, - { - "songno": "1271", - "diff": "oni", - "actual": 4.8, - "predicted": 4.5884, - "error": 0.2115999999999998 - }, - { - "songno": "1216", - "diff": "ura", - "actual": 11.6, - "predicted": 11.389, - "error": 0.2110000000000003 - }, - { - "songno": "1073", - "diff": "oni", - "actual": 2.3, - "predicted": 2.0894, - "error": 0.2105999999999999 - }, - { - "songno": "1391", - "diff": "oni", - "actual": 7.8, - "predicted": 8.0102, - "error": 0.2101999999999995 - }, - { - "songno": "1431", - "diff": "oni", - "actual": 7.8, - "predicted": 7.5911, - "error": 0.20889999999999986 - }, - { - "songno": "420", - "diff": "oni", - "actual": 4.3, - "predicted": 4.5086, - "error": 0.20860000000000056 - }, - { - "songno": "881", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4915, - "error": 0.2084999999999999 - }, - { - "songno": "781", - "diff": "oni", - "actual": 10.1, - "predicted": 10.3084, - "error": 0.20840000000000103 - }, - { - "songno": "1307", - "diff": "oni", - "actual": 6.9, - "predicted": 6.6919, - "error": 0.20809999999999995 - }, - { - "songno": "1103", - "diff": "oni", - "actual": 4.8, - "predicted": 4.5928, - "error": 0.20719999999999938 - }, - { - "songno": "1066", - "diff": "oni", - "actual": 11, - "predicted": 10.7929, - "error": 0.2071000000000005 - }, - { - "songno": "980", - "diff": "oni", - "actual": 8.8, - "predicted": 8.5932, - "error": 0.2068000000000012 - }, - { - "songno": "1076", - "diff": "oni", - "actual": 2.1, - "predicted": 1.8933, - "error": 0.2067000000000001 - }, - { - "songno": "388", - "diff": "oni", - "actual": 9, - "predicted": 8.7933, - "error": 0.20669999999999966 - }, - { - "songno": "1415", - "diff": "oni", - "actual": 3.6, - "predicted": 3.3935, - "error": 0.20650000000000013 - }, - { - "songno": "136", - "diff": "oni", - "actual": 9.1, - "predicted": 9.3062, - "error": 0.20620000000000083 - }, - { - "songno": "139", - "diff": "ura", - "actual": 7.2, - "predicted": 6.9939, - "error": 0.20610000000000017 - }, - { - "songno": "698", - "diff": "oni", - "actual": 9.9, - "predicted": 10.1061, - "error": 0.20609999999999928 - }, - { - "songno": "1202", - "diff": "oni", - "actual": 4.8, - "predicted": 5.006, - "error": 0.2060000000000004 - }, - { - "songno": "624", - "diff": "oni", - "actual": 5.6, - "predicted": 5.806, - "error": 0.2060000000000004 - }, - { - "songno": "187", - "diff": "ura", - "actual": 7.4, - "predicted": 7.6059, - "error": 0.20589999999999975 - }, - { - "songno": "982", - "diff": "oni", - "actual": 9.9, - "predicted": 10.1051, - "error": 0.20509999999999984 - }, - { - "songno": "1318", - "diff": "oni", - "actual": 8.9, - "predicted": 9.1044, - "error": 0.2043999999999997 - }, - { - "songno": "541", - "diff": "oni", - "actual": 5.6, - "predicted": 5.8043, - "error": 0.20429999999999993 - }, - { - "songno": "626", - "diff": "ura", - "actual": 10.4, - "predicted": 10.1964, - "error": 0.20359999999999978 - }, - { - "songno": "474", - "diff": "oni", - "actual": 5.3, - "predicted": 5.0972, - "error": 0.20279999999999987 - }, - { - "songno": "834", - "diff": "oni", - "actual": 9.7, - "predicted": 9.4979, - "error": 0.20209999999999972 - }, - { - "songno": "1325", - "diff": "oni", - "actual": 8.2, - "predicted": 8.402, - "error": 0.20199999999999996 - }, - { - "songno": "574", - "diff": "oni", - "actual": 8.6, - "predicted": 8.3999, - "error": 0.20009999999999906 - }, - { - "songno": "1365", - "diff": "oni", - "actual": 7.3, - "predicted": 7.1003, - "error": 0.1997 - }, - { - "songno": "826", - "diff": "oni", - "actual": 10.5, - "predicted": 10.3004, - "error": 0.19960000000000022 - }, - { - "songno": "572", - "diff": "oni", - "actual": 8.3, - "predicted": 8.1004, - "error": 0.19960000000000022 - }, - { - "songno": "1081", - "diff": "oni", - "actual": 5.4, - "predicted": 5.5996, - "error": 0.19959999999999933 - }, - { - "songno": "236", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3992, - "error": 0.19919999999999982 - }, - { - "songno": "821", - "diff": "oni", - "actual": 6.5, - "predicted": 6.3011, - "error": 0.19890000000000008 - }, - { - "songno": "956", - "diff": "ura", - "actual": 6.2, - "predicted": 6.0011, - "error": 0.19890000000000008 - }, - { - "songno": "317", - "diff": "ura", - "actual": 5.8, - "predicted": 5.6014, - "error": 0.1985999999999999 - }, - { - "songno": "907", - "diff": "oni", - "actual": 7.9, - "predicted": 7.7015, - "error": 0.19850000000000012 - }, - { - "songno": "1405", - "diff": "oni", - "actual": 10.3, - "predicted": 10.1016, - "error": 0.19840000000000124 - }, - { - "songno": "889", - "diff": "oni", - "actual": 4.2, - "predicted": 4.3984, - "error": 0.19839999999999947 - }, - { - "songno": "284", - "diff": "oni", - "actual": 3.8, - "predicted": 3.9982, - "error": 0.19820000000000038 - }, - { - "songno": "748", - "diff": "oni", - "actual": 10.8, - "predicted": 10.6023, - "error": 0.1977000000000011 - }, - { - "songno": "1315", - "diff": "oni", - "actual": 5.9, - "predicted": 6.0972, - "error": 0.1971999999999996 - }, - { - "songno": "892", - "diff": "oni", - "actual": 10.9, - "predicted": 10.7033, - "error": 0.19669999999999987 - }, - { - "songno": "648", - "diff": "ura", - "actual": 7.1, - "predicted": 7.2953, - "error": 0.19530000000000047 - }, - { - "songno": "1067", - "diff": "ura", - "actual": 8.2, - "predicted": 8.0048, - "error": 0.19519999999999982 - }, - { - "songno": "419", - "diff": "oni", - "actual": 7.6, - "predicted": 7.405, - "error": 0.1949999999999994 - }, - { - "songno": "1406", - "diff": "oni", - "actual": 11.4, - "predicted": 11.2051, - "error": 0.19490000000000052 - }, - { - "songno": "917", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5061, - "error": 0.19390000000000018 - }, - { - "songno": "1324", - "diff": "oni", - "actual": 9.3, - "predicted": 9.1064, - "error": 0.1936 - }, - { - "songno": "834", - "diff": "ura", - "actual": 11.5, - "predicted": 11.6935, - "error": 0.19350000000000023 - }, - { - "songno": "359", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4927, - "error": 0.19269999999999854 - }, - { - "songno": "91", - "diff": "oni", - "actual": 3.8, - "predicted": 3.9913, - "error": 0.19130000000000003 - }, - { - "songno": "537", - "diff": "oni", - "actual": 6.9, - "predicted": 7.0908, - "error": 0.19079999999999941 - }, - { - "songno": "285", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4907, - "error": 0.19070000000000054 - }, - { - "songno": "850", - "diff": "oni", - "actual": 10.7, - "predicted": 10.5093, - "error": 0.19069999999999965 - }, - { - "songno": "784", - "diff": "oni", - "actual": 9.3, - "predicted": 9.4906, - "error": 0.19059999999999988 - }, - { - "songno": "929", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4899, - "error": 0.18989999999999974 - }, - { - "songno": "103", - "diff": "oni", - "actual": 8.2, - "predicted": 8.011, - "error": 0.18900000000000006 - }, - { - "songno": "1146", - "diff": "ura", - "actual": 9.7, - "predicted": 9.8886, - "error": 0.188600000000001 - }, - { - "songno": "1264", - "diff": "ura", - "actual": 9.7, - "predicted": 9.8886, - "error": 0.188600000000001 - }, - { - "songno": "135", - "diff": "ura", - "actual": 5.8, - "predicted": 5.6115, - "error": 0.18849999999999945 - }, - { - "songno": "1082", - "diff": "oni", - "actual": 5, - "predicted": 5.1879, - "error": 0.18789999999999996 - }, - { - "songno": "970", - "diff": "oni", - "actual": 7.2, - "predicted": 7.0125, - "error": 0.1875 - }, - { - "songno": "256", - "diff": "oni", - "actual": 4.9, - "predicted": 4.713, - "error": 0.18700000000000028 - }, - { - "songno": "166", - "diff": "oni", - "actual": 6, - "predicted": 5.8135, - "error": 0.18649999999999967 - }, - { - "songno": "1351", - "diff": "oni", - "actual": 9.3, - "predicted": 9.1138, - "error": 0.18620000000000125 - }, - { - "songno": "1166", - "diff": "oni", - "actual": 7.8, - "predicted": 7.6145, - "error": 0.18550000000000022 - }, - { - "songno": "525", - "diff": "oni", - "actual": 6.6, - "predicted": 6.7852, - "error": 0.18520000000000003 - }, - { - "songno": "275", - "diff": "oni", - "actual": 3.5, - "predicted": 3.3149, - "error": 0.18509999999999982 - }, - { - "songno": "795", - "diff": "ura", - "actual": 7.3, - "predicted": 7.1157, - "error": 0.18429999999999946 - }, - { - "songno": "1251", - "diff": "oni", - "actual": 4.5, - "predicted": 4.3164, - "error": 0.1836000000000002 - }, - { - "songno": "1329", - "diff": "ura", - "actual": 11.2, - "predicted": 11.0164, - "error": 0.18359999999999843 - }, - { - "songno": "882", - "diff": "ura", - "actual": 5.4, - "predicted": 5.2166, - "error": 0.18340000000000067 - }, - { - "songno": "1267", - "diff": "oni", - "actual": 4.7, - "predicted": 4.8832, - "error": 0.18320000000000025 - }, - { - "songno": "495", - "diff": "oni", - "actual": 10.1, - "predicted": 9.9172, - "error": 0.1828000000000003 - }, - { - "songno": "1414", - "diff": "oni", - "actual": 5.2, - "predicted": 5.0174, - "error": 0.18259999999999987 - }, - { - "songno": "783", - "diff": "oni", - "actual": 6, - "predicted": 6.1824, - "error": 0.18240000000000034 - }, - { - "songno": "856", - "diff": "oni", - "actual": 8.8, - "predicted": 8.9821, - "error": 0.18210000000000015 - }, - { - "songno": "1169", - "diff": "oni", - "actual": 3.6, - "predicted": 3.782, - "error": 0.18199999999999994 - }, - { - "songno": "816", - "diff": "oni", - "actual": 8.2, - "predicted": 8.018, - "error": 0.1819999999999986 - }, - { - "songno": "1435", - "diff": "oni", - "actual": 5.2, - "predicted": 5.0182, - "error": 0.18179999999999996 - }, - { - "songno": "1200", - "diff": "oni", - "actual": 2.4, - "predicted": 2.5815, - "error": 0.18150000000000022 - }, - { - "songno": "623", - "diff": "oni", - "actual": 5, - "predicted": 4.8186, - "error": 0.1814 - }, - { - "songno": "315", - "diff": "oni", - "actual": 3.2, - "predicted": 3.3799, - "error": 0.17989999999999995 - }, - { - "songno": "247", - "diff": "oni", - "actual": 5.5, - "predicted": 5.3203, - "error": 0.17970000000000041 - }, - { - "songno": "1043", - "diff": "ura", - "actual": 12, - "predicted": 11.8204, - "error": 0.17960000000000065 - }, - { - "songno": "941", - "diff": "oni", - "actual": 4.6, - "predicted": 4.7787, - "error": 0.17870000000000008 - }, - { - "songno": "361", - "diff": "ura", - "actual": 8.6, - "predicted": 8.7785, - "error": 0.17849999999999966 - }, - { - "songno": "897", - "diff": "oni", - "actual": 4.5, - "predicted": 4.3216, - "error": 0.1783999999999999 - }, - { - "songno": "730", - "diff": "ura", - "actual": 8.5, - "predicted": 8.3222, - "error": 0.17779999999999951 - }, - { - "songno": "148", - "diff": "oni", - "actual": 9.7, - "predicted": 9.5225, - "error": 0.17749999999999844 - }, - { - "songno": "397", - "diff": "oni", - "actual": 7.9, - "predicted": 7.7231, - "error": 0.17690000000000072 - }, - { - "songno": "722", - "diff": "oni", - "actual": 9.4, - "predicted": 9.2234, - "error": 0.17660000000000053 - }, - { - "songno": "202", - "diff": "oni", - "actual": 7.9, - "predicted": 7.7238, - "error": 0.17620000000000058 - }, - { - "songno": "89", - "diff": "oni", - "actual": 7.6, - "predicted": 7.7738, - "error": 0.17379999999999995 - }, - { - "songno": "347", - "diff": "oni", - "actual": 5.7, - "predicted": 5.8736, - "error": 0.17359999999999953 - }, - { - "songno": "296", - "diff": "oni", - "actual": 6.2, - "predicted": 6.0269, - "error": 0.1730999999999998 - }, - { - "songno": "375", - "diff": "oni", - "actual": 8.7, - "predicted": 8.8725, - "error": 0.1725000000000012 - }, - { - "songno": "803", - "diff": "oni", - "actual": 8.9, - "predicted": 9.0724, - "error": 0.17239999999999966 - }, - { - "songno": "1329", - "diff": "oni", - "actual": 7.4, - "predicted": 7.228, - "error": 0.1720000000000006 - }, - { - "songno": "504", - "diff": "ura", - "actual": 8.9, - "predicted": 9.0719, - "error": 0.17189999999999905 - }, - { - "songno": "1048", - "diff": "ura", - "actual": 11.6, - "predicted": 11.7716, - "error": 0.17159999999999975 - }, - { - "songno": "919", - "diff": "oni", - "actual": 7.6, - "predicted": 7.4289, - "error": 0.17110000000000003 - }, - { - "songno": "218", - "diff": "oni", - "actual": 7.7, - "predicted": 7.5297, - "error": 0.17030000000000012 - }, - { - "songno": "1170", - "diff": "oni", - "actual": 6.9, - "predicted": 6.7304, - "error": 0.16959999999999997 - }, - { - "songno": "372", - "diff": "oni", - "actual": 6.4, - "predicted": 6.2309, - "error": 0.16910000000000025 - }, - { - "songno": "1172", - "diff": "oni", - "actual": 11.9, - "predicted": 11.7309, - "error": 0.16910000000000025 - }, - { - "songno": "645", - "diff": "ura", - "actual": 7.6, - "predicted": 7.769, - "error": 0.16900000000000048 - }, - { - "songno": "395", - "diff": "oni", - "actual": 7.7, - "predicted": 7.5313, - "error": 0.1687000000000003 - }, - { - "songno": "1180", - "diff": "oni", - "actual": 6.5, - "predicted": 6.6686, - "error": 0.16859999999999964 - }, - { - "songno": "753", - "diff": "oni", - "actual": 5.3, - "predicted": 5.4682, - "error": 0.16820000000000057 - }, - { - "songno": "163", - "diff": "ura", - "actual": 7.2, - "predicted": 7.032, - "error": 0.16800000000000015 - }, - { - "songno": "555", - "diff": "oni", - "actual": 11.3, - "predicted": 11.1326, - "error": 0.16740000000000066 - }, - { - "songno": "156", - "diff": "ura", - "actual": 8.9, - "predicted": 8.7334, - "error": 0.16660000000000075 - }, - { - "songno": "780", - "diff": "oni", - "actual": 8.7, - "predicted": 8.5338, - "error": 0.1661999999999999 - }, - { - "songno": "1274", - "diff": "ura", - "actual": 8.2, - "predicted": 8.034, - "error": 0.1659999999999986 - }, - { - "songno": "266", - "diff": "ura", - "actual": 9.1, - "predicted": 8.9345, - "error": 0.16549999999999976 - }, - { - "songno": "677", - "diff": "oni", - "actual": 8.9, - "predicted": 9.0652, - "error": 0.16520000000000046 - }, - { - "songno": "905", - "diff": "oni", - "actual": 10.1, - "predicted": 10.2645, - "error": 0.1645000000000003 - }, - { - "songno": "750", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6356, - "error": 0.16440000000000055 - }, - { - "songno": "1260", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6356, - "error": 0.16440000000000055 - }, - { - "songno": "346", - "diff": "oni", - "actual": 6.4, - "predicted": 6.5631, - "error": 0.16310000000000002 - }, - { - "songno": "1295", - "diff": "ura", - "actual": 6, - "predicted": 6.1623, - "error": 0.1623000000000001 - }, - { - "songno": "482", - "diff": "ura", - "actual": 5.2, - "predicted": 5.3604, - "error": 0.1604000000000001 - }, - { - "songno": "233", - "diff": "oni", - "actual": 3.1, - "predicted": 3.259, - "error": 0.1589999999999998 - }, - { - "songno": "820", - "diff": "oni", - "actual": 10.7, - "predicted": 10.541, - "error": 0.15899999999999892 - }, - { - "songno": "1129", - "diff": "ura", - "actual": 11.8, - "predicted": 11.6416, - "error": 0.15840000000000032 - }, - { - "songno": "1033", - "diff": "oni", - "actual": 4.3, - "predicted": 4.142, - "error": 0.15799999999999947 - }, - { - "songno": "1012", - "diff": "ura", - "actual": 11.1, - "predicted": 10.942, - "error": 0.15799999999999947 - }, - { - "songno": "954", - "diff": "oni", - "actual": 9.7, - "predicted": 9.5426, - "error": 0.1573999999999991 - }, - { - "songno": "278", - "diff": "ura", - "actual": 6.5, - "predicted": 6.3427, - "error": 0.15730000000000022 - }, - { - "songno": "556", - "diff": "oni", - "actual": 4.4, - "predicted": 4.5569, - "error": 0.15689999999999937 - }, - { - "songno": "608", - "diff": "oni", - "actual": 3.5, - "predicted": 3.3454, - "error": 0.15459999999999985 - }, - { - "songno": "1173", - "diff": "oni", - "actual": 9.2, - "predicted": 9.354, - "error": 0.15399999999999991 - }, - { - "songno": "213", - "diff": "oni", - "actual": 6.1, - "predicted": 5.9464, - "error": 0.15359999999999996 - }, - { - "songno": "1109", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6466, - "error": 0.15339999999999954 - }, - { - "songno": "1420", - "diff": "oni", - "actual": 3.7, - "predicted": 3.852, - "error": 0.1519999999999997 - }, - { - "songno": "73", - "diff": "oni", - "actual": 8.5, - "predicted": 8.652, - "error": 0.15199999999999925 - }, - { - "songno": "1343", - "diff": "ura", - "actual": 7, - "predicted": 7.1519, - "error": 0.15190000000000037 - }, - { - "songno": "1320", - "diff": "oni", - "actual": 8, - "predicted": 7.8486, - "error": 0.15139999999999976 - }, - { - "songno": "793", - "diff": "oni", - "actual": 3.1, - "predicted": 3.2512, - "error": 0.15119999999999978 - }, - { - "songno": "1240", - "diff": "ura", - "actual": 7.8, - "predicted": 7.9507, - "error": 0.1507000000000005 - }, - { - "songno": "298", - "diff": "oni", - "actual": 5.2, - "predicted": 5.3504, - "error": 0.15039999999999942 - }, - { - "songno": "342", - "diff": "oni", - "actual": 4.8, - "predicted": 4.9503, - "error": 0.15030000000000054 - }, - { - "songno": "720", - "diff": "oni", - "actual": 9.6, - "predicted": 9.7502, - "error": 0.1501999999999999 - }, - { - "songno": "398", - "diff": "oni", - "actual": 6.3, - "predicted": 6.1503, - "error": 0.14970000000000017 - }, - { - "songno": "446", - "diff": "oni", - "actual": 6.8, - "predicted": 6.9497, - "error": 0.14970000000000017 - }, - { - "songno": "717", - "diff": "ura", - "actual": 7.4, - "predicted": 7.2505, - "error": 0.14950000000000063 - }, - { - "songno": "1115", - "diff": "oni", - "actual": 3.8, - "predicted": 3.9495, - "error": 0.1495000000000002 - }, - { - "songno": "432", - "diff": "oni", - "actual": 6.6, - "predicted": 6.7493, - "error": 0.1493000000000002 - }, - { - "songno": "681", - "diff": "ura", - "actual": 9.1, - "predicted": 9.2492, - "error": 0.14920000000000044 - }, - { - "songno": "542", - "diff": "oni", - "actual": 4.2, - "predicted": 4.3489, - "error": 0.14890000000000025 - }, - { - "songno": "1410", - "diff": "oni", - "actual": 3, - "predicted": 3.1481, - "error": 0.1480999999999999 - }, - { - "songno": "817", - "diff": "oni", - "actual": 8, - "predicted": 8.1478, - "error": 0.14780000000000015 - }, - { - "songno": "2", - "diff": "oni", - "actual": 2.7, - "predicted": 2.8473, - "error": 0.1473 - }, - { - "songno": "975", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4471, - "error": 0.1471 - }, - { - "songno": "859", - "diff": "oni", - "actual": 10.2, - "predicted": 10.0536, - "error": 0.14639999999999986 - }, - { - "songno": "1427", - "diff": "oni", - "actual": 7.6, - "predicted": 7.7463, - "error": 0.1463000000000001 - }, - { - "songno": "177", - "diff": "oni", - "actual": 2, - "predicted": 1.8542, - "error": 0.14579999999999993 - }, - { - "songno": "1171", - "diff": "ura", - "actual": 9.5, - "predicted": 9.6451, - "error": 0.14509999999999934 - }, - { - "songno": "637", - "diff": "oni", - "actual": 6.6, - "predicted": 6.4553, - "error": 0.14469999999999938 - }, - { - "songno": "911", - "diff": "oni", - "actual": 4.7, - "predicted": 4.8446, - "error": 0.14459999999999962 - }, - { - "songno": "736", - "diff": "oni", - "actual": 3.5, - "predicted": 3.6442, - "error": 0.1442000000000001 - }, - { - "songno": "549", - "diff": "oni", - "actual": 8.3, - "predicted": 8.444, - "error": 0.14400000000000013 - }, - { - "songno": "1311", - "diff": "oni", - "actual": 6.7, - "predicted": 6.8434, - "error": 0.14339999999999975 - }, - { - "songno": "689", - "diff": "ura", - "actual": 8.9, - "predicted": 9.0431, - "error": 0.14310000000000045 - }, - { - "songno": "860", - "diff": "oni", - "actual": 10.6, - "predicted": 10.4569, - "error": 0.14310000000000045 - }, - { - "songno": "22", - "diff": "oni", - "actual": 5.5, - "predicted": 5.3569, - "error": 0.14309999999999956 - }, - { - "songno": "224", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6574, - "error": 0.14259999999999984 - }, - { - "songno": "274", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4424, - "error": 0.1424000000000003 - }, - { - "songno": "1119", - "diff": "oni", - "actual": 5.2, - "predicted": 5.3418, - "error": 0.14179999999999993 - }, - { - "songno": "1251", - "diff": "ura", - "actual": 7, - "predicted": 7.1415, - "error": 0.14149999999999974 - }, - { - "songno": "309", - "diff": "ura", - "actual": 10.3, - "predicted": 10.159, - "error": 0.14100000000000001 - }, - { - "songno": "358", - "diff": "oni", - "actual": 7.5, - "predicted": 7.6409, - "error": 0.14090000000000025 - }, - { - "songno": "191", - "diff": "oni", - "actual": 6.9, - "predicted": 7.0407, - "error": 0.14069999999999983 - }, - { - "songno": "1266", - "diff": "oni", - "actual": 6.9, - "predicted": 7.0407, - "error": 0.14069999999999983 - }, - { - "songno": "999", - "diff": "oni", - "actual": 10.8, - "predicted": 10.6597, - "error": 0.14029999999999987 - }, - { - "songno": "440", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6597, - "error": 0.14029999999999987 - }, - { - "songno": "414", - "diff": "ura", - "actual": 8.4, - "predicted": 8.26, - "error": 0.14000000000000057 - }, - { - "songno": "646", - "diff": "ura", - "actual": 6.6, - "predicted": 6.74, - "error": 0.14000000000000057 - }, - { - "songno": "186", - "diff": "oni", - "actual": 10.9, - "predicted": 10.7601, - "error": 0.1399000000000008 - }, - { - "songno": "594", - "diff": "oni", - "actual": 9.7, - "predicted": 9.5605, - "error": 0.13949999999999996 - }, - { - "songno": "660", - "diff": "oni", - "actual": 6.6, - "predicted": 6.7388, - "error": 0.1388000000000007 - }, - { - "songno": "757", - "diff": "oni", - "actual": 10.5, - "predicted": 10.6385, - "error": 0.1385000000000005 - }, - { - "songno": "844", - "diff": "oni", - "actual": 8.1, - "predicted": 7.9617, - "error": 0.1382999999999992 - }, - { - "songno": "360", - "diff": "oni", - "actual": 9.2, - "predicted": 9.3378, - "error": 0.13780000000000037 - }, - { - "songno": "1236", - "diff": "oni", - "actual": 11.2, - "predicted": 11.3371, - "error": 0.13710000000000022 - }, - { - "songno": "1256", - "diff": "oni", - "actual": 6.2, - "predicted": 6.063, - "error": 0.13700000000000045 - }, - { - "songno": "520", - "diff": "ura", - "actual": 8.9, - "predicted": 8.7635, - "error": 0.13649999999999984 - }, - { - "songno": "933", - "diff": "oni", - "actual": 7.1, - "predicted": 7.2362, - "error": 0.13620000000000054 - }, - { - "songno": "1217", - "diff": "oni", - "actual": 4.7, - "predicted": 4.8359, - "error": 0.13589999999999947 - }, - { - "songno": "765", - "diff": "oni", - "actual": 11.9, - "predicted": 11.7646, - "error": 0.13540000000000063 - }, - { - "songno": "1154", - "diff": "oni", - "actual": 8.9, - "predicted": 9.0352, - "error": 0.13519999999999932 - }, - { - "songno": "596", - "diff": "oni", - "actual": 6.8, - "predicted": 6.665, - "error": 0.1349999999999998 - }, - { - "songno": "1407", - "diff": "oni", - "actual": 2.8, - "predicted": 2.6655, - "error": 0.13449999999999962 - }, - { - "songno": "535", - "diff": "oni", - "actual": 3.7, - "predicted": 3.5662, - "error": 0.13380000000000036 - }, - { - "songno": "995", - "diff": "oni", - "actual": 6.4, - "predicted": 6.5338, - "error": 0.13379999999999992 - }, - { - "songno": "178", - "diff": "oni", - "actual": 6.8, - "predicted": 6.9337, - "error": 0.13370000000000015 - }, - { - "songno": "1004", - "diff": "oni", - "actual": 5.9, - "predicted": 5.7666, - "error": 0.13339999999999996 - }, - { - "songno": "1249", - "diff": "ura", - "actual": 11.4, - "predicted": 11.2666, - "error": 0.13339999999999996 - }, - { - "songno": "1261", - "diff": "oni", - "actual": 7.3, - "predicted": 7.433, - "error": 0.133 - }, - { - "songno": "527", - "diff": "oni", - "actual": 7.3, - "predicted": 7.433, - "error": 0.133 - }, - { - "songno": "684", - "diff": "oni", - "actual": 7.5, - "predicted": 7.3675, - "error": 0.13250000000000028 - }, - { - "songno": "80", - "diff": "oni", - "actual": 8.4, - "predicted": 8.2676, - "error": 0.13240000000000052 - }, - { - "songno": "1428", - "diff": "oni", - "actual": 5, - "predicted": 4.8678, - "error": 0.1322000000000001 - }, - { - "songno": "1465", - "diff": "oni", - "actual": 6.8, - "predicted": 6.668, - "error": 0.13199999999999967 - }, - { - "songno": "131", - "diff": "oni", - "actual": 8.2, - "predicted": 8.3317, - "error": 0.13170000000000037 - }, - { - "songno": "1155", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4314, - "error": 0.13140000000000018 - }, - { - "songno": "1409", - "diff": "oni", - "actual": 2.1, - "predicted": 2.231, - "error": 0.13099999999999978 - }, - { - "songno": "1242", - "diff": "oni", - "actual": 5.8, - "predicted": 5.9309, - "error": 0.13090000000000046 - }, - { - "songno": "1395", - "diff": "oni", - "actual": 9, - "predicted": 8.8691, - "error": 0.13090000000000046 - }, - { - "songno": "1455", - "diff": "oni", - "actual": 4.6, - "predicted": 4.4691, - "error": 0.13089999999999957 - }, - { - "songno": "1363", - "diff": "oni", - "actual": 4.4, - "predicted": 4.2694, - "error": 0.13060000000000027 - }, - { - "songno": "570", - "diff": "oni", - "actual": 9, - "predicted": 9.1304, - "error": 0.13039999999999985 - }, - { - "songno": "553", - "diff": "ura", - "actual": 10.5, - "predicted": 10.3711, - "error": 0.1288999999999998 - }, - { - "songno": "726", - "diff": "oni", - "actual": 4.6, - "predicted": 4.4715, - "error": 0.12849999999999984 - }, - { - "songno": "1284", - "diff": "oni", - "actual": 2.3, - "predicted": 2.1721, - "error": 0.1278999999999999 - }, - { - "songno": "551", - "diff": "oni", - "actual": 4.5, - "predicted": 4.6275, - "error": 0.1275000000000004 - }, - { - "songno": "671", - "diff": "oni", - "actual": 2.6, - "predicted": 2.7274, - "error": 0.12739999999999974 - }, - { - "songno": "864", - "diff": "oni", - "actual": 8.1, - "predicted": 7.9731, - "error": 0.1269 - }, - { - "songno": "565", - "diff": "oni", - "actual": 4.7, - "predicted": 4.5736, - "error": 0.1264000000000003 - }, - { - "songno": "1148", - "diff": "ura", - "actual": 6.1, - "predicted": 6.2264, - "error": 0.1264000000000003 - }, - { - "songno": "356", - "diff": "oni", - "actual": 8.1, - "predicted": 7.9738, - "error": 0.12619999999999987 - }, - { - "songno": "1014", - "diff": "oni", - "actual": 5.3, - "predicted": 5.1745, - "error": 0.12549999999999972 - }, - { - "songno": "311", - "diff": "oni", - "actual": 7, - "predicted": 6.8748, - "error": 0.12520000000000042 - }, - { - "songno": "808", - "diff": "oni", - "actual": 6.2, - "predicted": 6.0748, - "error": 0.12520000000000042 - }, - { - "songno": "526", - "diff": "oni", - "actual": 7.9, - "predicted": 8.0245, - "error": 0.12449999999999939 - }, - { - "songno": "1342", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3244, - "error": 0.12439999999999962 - }, - { - "songno": "1052", - "diff": "ura", - "actual": 11.1, - "predicted": 10.9758, - "error": 0.12420000000000009 - }, - { - "songno": "441", - "diff": "oni", - "actual": 10.7, - "predicted": 10.8241, - "error": 0.12410000000000032 - }, - { - "songno": "771", - "diff": "ura", - "actual": 7.2, - "predicted": 7.3241, - "error": 0.12409999999999943 - }, - { - "songno": "418", - "diff": "oni", - "actual": 8.2, - "predicted": 8.323, - "error": 0.12300000000000111 - }, - { - "songno": "1179", - "diff": "oni", - "actual": 5, - "predicted": 5.1228, - "error": 0.1227999999999998 - }, - { - "songno": "1295", - "diff": "oni", - "actual": 1.3, - "predicted": 1.4223, - "error": 0.12229999999999985 - }, - { - "songno": "561", - "diff": "oni", - "actual": 5.5, - "predicted": 5.6211, - "error": 0.12110000000000021 - }, - { - "songno": "1449", - "diff": "oni", - "actual": 8.9, - "predicted": 8.7798, - "error": 0.12020000000000053 - }, - { - "songno": "732", - "diff": "oni", - "actual": 2.4, - "predicted": 2.2806, - "error": 0.11939999999999973 - }, - { - "songno": "588", - "diff": "oni", - "actual": 8.2, - "predicted": 8.3186, - "error": 0.1186000000000007 - }, - { - "songno": "1370", - "diff": "ura", - "actual": 11.3, - "predicted": 11.4184, - "error": 0.1183999999999994 - }, - { - "songno": "403", - "diff": "ura", - "actual": 6.4, - "predicted": 6.2818, - "error": 0.11820000000000075 - }, - { - "songno": "1334", - "diff": "oni", - "actual": 4, - "predicted": 4.1179, - "error": 0.11789999999999967 - }, - { - "songno": "70", - "diff": "oni", - "actual": 6.1, - "predicted": 6.2176, - "error": 0.11760000000000037 - }, - { - "songno": "416", - "diff": "oni", - "actual": 6, - "predicted": 5.8825, - "error": 0.11749999999999972 - }, - { - "songno": "1197", - "diff": "ura", - "actual": 9.8, - "predicted": 9.9174, - "error": 0.11739999999999995 - }, - { - "songno": "1125", - "diff": "oni", - "actual": 3.6, - "predicted": 3.7167, - "error": 0.1166999999999998 - }, - { - "songno": "1436", - "diff": "oni", - "actual": 6, - "predicted": 6.1167, - "error": 0.1166999999999998 - }, - { - "songno": "1216", - "diff": "oni", - "actual": 10, - "predicted": 9.8833, - "error": 0.1166999999999998 - }, - { - "songno": "814", - "diff": "oni", - "actual": 10.2, - "predicted": 10.0834, - "error": 0.11660000000000004 - }, - { - "songno": "1257", - "diff": "oni", - "actual": 9, - "predicted": 9.1159, - "error": 0.11589999999999989 - }, - { - "songno": "450", - "diff": "oni", - "actual": 9, - "predicted": 9.1159, - "error": 0.11589999999999989 - }, - { - "songno": "914", - "diff": "oni", - "actual": 8.7, - "predicted": 8.8157, - "error": 0.11570000000000036 - }, - { - "songno": "265", - "diff": "oni", - "actual": 10.2, - "predicted": 10.3156, - "error": 0.11560000000000059 - }, - { - "songno": "1131", - "diff": "oni", - "actual": 3.6, - "predicted": 3.4848, - "error": 0.11520000000000019 - }, - { - "songno": "1161", - "diff": "oni", - "actual": 3.6, - "predicted": 3.7145, - "error": 0.11450000000000005 - }, - { - "songno": "583", - "diff": "oni", - "actual": 2.9, - "predicted": 2.7859, - "error": 0.11410000000000009 - }, - { - "songno": "428", - "diff": "oni", - "actual": 6.5, - "predicted": 6.6135, - "error": 0.11350000000000016 - }, - { - "songno": "1218", - "diff": "oni", - "actual": 1.4, - "predicted": 1.5132, - "error": 0.11320000000000019 - }, - { - "songno": "310", - "diff": "oni", - "actual": 6.2, - "predicted": 6.3131, - "error": 0.1131000000000002 - }, - { - "songno": "1042", - "diff": "oni", - "actual": 10.1, - "predicted": 9.9869, - "error": 0.11309999999999931 - }, - { - "songno": "977", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6872, - "error": 0.11280000000000001 - }, - { - "songno": "1214", - "diff": "ura", - "actual": 10.4, - "predicted": 10.2878, - "error": 0.11219999999999963 - }, - { - "songno": "470", - "diff": "oni", - "actual": 5, - "predicted": 4.8884, - "error": 0.11160000000000014 - }, - { - "songno": "45", - "diff": "ura", - "actual": 8.4, - "predicted": 8.5114, - "error": 0.11139999999999972 - }, - { - "songno": "118", - "diff": "ura", - "actual": 8.4, - "predicted": 8.5105, - "error": 0.11050000000000004 - }, - { - "songno": "1203", - "diff": "oni", - "actual": 4.9, - "predicted": 4.7897, - "error": 0.11030000000000051 - }, - { - "songno": "1384", - "diff": "oni", - "actual": 9.3, - "predicted": 9.1902, - "error": 0.1097999999999999 - }, - { - "songno": "519", - "diff": "oni", - "actual": 7.3, - "predicted": 7.1903, - "error": 0.10970000000000013 - }, - { - "songno": "1302", - "diff": "oni", - "actual": 1.4, - "predicted": 1.5096, - "error": 0.10960000000000014 - }, - { - "songno": "1104", - "diff": "oni", - "actual": 9.7, - "predicted": 9.8094, - "error": 0.10940000000000083 - }, - { - "songno": "1346", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6909, - "error": 0.10910000000000153 - }, - { - "songno": "1106", - "diff": "oni", - "actual": 9.1, - "predicted": 9.2086, - "error": 0.10860000000000092 - }, - { - "songno": "237", - "diff": "oni", - "actual": 5.3, - "predicted": 5.1914, - "error": 0.10860000000000003 - }, - { - "songno": "60", - "diff": "oni", - "actual": 7.9, - "predicted": 7.7917, - "error": 0.10830000000000073 - }, - { - "songno": "286", - "diff": "oni", - "actual": 10, - "predicted": 9.8921, - "error": 0.10790000000000077 - }, - { - "songno": "948", - "diff": "oni", - "actual": 8.3, - "predicted": 8.1924, - "error": 0.10760000000000147 - }, - { - "songno": "1018", - "diff": "oni", - "actual": 4.9, - "predicted": 4.7924, - "error": 0.10760000000000058 - }, - { - "songno": "511", - "diff": "oni", - "actual": 2.3, - "predicted": 2.4076, - "error": 0.10760000000000014 - }, - { - "songno": "1080", - "diff": "ura", - "actual": 11.5, - "predicted": 11.3927, - "error": 0.1073000000000004 - }, - { - "songno": "1387", - "diff": "oni", - "actual": 4, - "predicted": 3.8935, - "error": 0.10650000000000004 - }, - { - "songno": "1086", - "diff": "oni", - "actual": 10.6, - "predicted": 10.4936, - "error": 0.10639999999999894 - }, - { - "songno": "984", - "diff": "oni", - "actual": 4.2, - "predicted": 4.0937, - "error": 0.10630000000000006 - }, - { - "songno": "868", - "diff": "ura", - "actual": 11.3, - "predicted": 11.4063, - "error": 0.10629999999999917 - }, - { - "songno": "73", - "diff": "ura", - "actual": 9.1, - "predicted": 8.9937, - "error": 0.10629999999999917 - }, - { - "songno": "882", - "diff": "oni", - "actual": 1.9, - "predicted": 2.006, - "error": 0.10599999999999987 - }, - { - "songno": "1122", - "diff": "ura", - "actual": 11.5, - "predicted": 11.6056, - "error": 0.1056000000000008 - }, - { - "songno": "1335", - "diff": "oni", - "actual": 4, - "predicted": 3.8944, - "error": 0.10559999999999992 - }, - { - "songno": "627", - "diff": "oni", - "actual": 11.5, - "predicted": 11.3946, - "error": 0.1053999999999995 - }, - { - "songno": "628", - "diff": "oni", - "actual": 10.7, - "predicted": 10.5949, - "error": 0.10509999999999842 - }, - { - "songno": "1181", - "diff": "oni", - "actual": 3.3, - "predicted": 3.4043, - "error": 0.10430000000000028 - }, - { - "songno": "1133", - "diff": "oni", - "actual": 5.7, - "predicted": 5.5958, - "error": 0.10420000000000051 - }, - { - "songno": "340", - "diff": "oni", - "actual": 5.2, - "predicted": 5.3041, - "error": 0.10409999999999986 - }, - { - "songno": "451", - "diff": "oni", - "actual": 7.2, - "predicted": 7.3041, - "error": 0.10409999999999986 - }, - { - "songno": "1357", - "diff": "ura", - "actual": 8.4, - "predicted": 8.2963, - "error": 0.1036999999999999 - }, - { - "songno": "580", - "diff": "ura", - "actual": 6.9, - "predicted": 7.0035, - "error": 0.10349999999999948 - }, - { - "songno": "646", - "diff": "oni", - "actual": 2.3, - "predicted": 2.4032, - "error": 0.10320000000000018 - }, - { - "songno": "1029", - "diff": "oni", - "actual": 1.6, - "predicted": 1.703, - "error": 0.10299999999999998 - }, - { - "songno": "1451", - "diff": "ura", - "actual": 6.2, - "predicted": 6.0973, - "error": 0.10270000000000046 - }, - { - "songno": "816", - "diff": "ura", - "actual": 11.2, - "predicted": 11.0975, - "error": 0.10249999999999915 - }, - { - "songno": "267", - "diff": "oni", - "actual": 3.6, - "predicted": 3.4983, - "error": 0.10170000000000012 - }, - { - "songno": "842", - "diff": "ura", - "actual": 4.9, - "predicted": 4.7988, - "error": 0.1012000000000004 - }, - { - "songno": "160", - "diff": "ura", - "actual": 8.2, - "predicted": 8.3009, - "error": 0.1009000000000011 - }, - { - "songno": "1059", - "diff": "oni", - "actual": 5.6, - "predicted": 5.4991, - "error": 0.10089999999999932 - }, - { - "songno": "644", - "diff": "oni", - "actual": 4.4, - "predicted": 4.5006, - "error": 0.10060000000000002 - }, - { - "songno": "10", - "diff": "oni", - "actual": 7.8, - "predicted": 7.6995, - "error": 0.10050000000000026 - }, - { - "songno": "585", - "diff": "oni", - "actual": 6.7, - "predicted": 6.8, - "error": 0.09999999999999964 - }, - { - "songno": "380", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6995, - "error": 0.09949999999999992 - }, - { - "songno": "1058", - "diff": "ura", - "actual": 8.6, - "predicted": 8.6993, - "error": 0.0992999999999995 - }, - { - "songno": "336", - "diff": "oni", - "actual": 11.8, - "predicted": 11.7012, - "error": 0.09880000000000067 - }, - { - "songno": "350", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4016, - "error": 0.09839999999999982 - }, - { - "songno": "283", - "diff": "ura", - "actual": 11.1, - "predicted": 11.198, - "error": 0.09800000000000075 - }, - { - "songno": "127", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9979, - "error": 0.09789999999999921 - }, - { - "songno": "248", - "diff": "oni", - "actual": 6.2, - "predicted": 6.1022, - "error": 0.09780000000000033 - }, - { - "songno": "716", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7022, - "error": 0.09779999999999944 - }, - { - "songno": "1347", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8026, - "error": 0.09740000000000038 - }, - { - "songno": "275", - "diff": "ura", - "actual": 5.2, - "predicted": 5.2971, - "error": 0.09710000000000019 - }, - { - "songno": "1424", - "diff": "oni", - "actual": 6.4, - "predicted": 6.303, - "error": 0.09700000000000042 - }, - { - "songno": "668", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4966, - "error": 0.09660000000000002 - }, - { - "songno": "461", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0045, - "error": 0.09549999999999947 - }, - { - "songno": "774", - "diff": "oni", - "actual": 9, - "predicted": 9.0955, - "error": 0.09549999999999947 - }, - { - "songno": "944", - "diff": "oni", - "actual": 7, - "predicted": 6.9047, - "error": 0.09529999999999994 - }, - { - "songno": "614", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3048, - "error": 0.09520000000000017 - }, - { - "songno": "898", - "diff": "oni", - "actual": 3.8, - "predicted": 3.7053, - "error": 0.0947 - }, - { - "songno": "13", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2947, - "error": 0.09469999999999956 - }, - { - "songno": "741", - "diff": "ura", - "actual": 7.4, - "predicted": 7.4946, - "error": 0.0945999999999998 - }, - { - "songno": "255", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4056, - "error": 0.09440000000000026 - }, - { - "songno": "517", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2925, - "error": 0.09250000000000114 - }, - { - "songno": "779", - "diff": "oni", - "actual": 8.5, - "predicted": 8.5919, - "error": 0.09190000000000076 - }, - { - "songno": "939", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4917, - "error": 0.09169999999999945 - }, - { - "songno": "1263", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4917, - "error": 0.09169999999999945 - }, - { - "songno": "1175", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5916, - "error": 0.09159999999999968 - }, - { - "songno": "1132", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1914, - "error": 0.09140000000000015 - }, - { - "songno": "1377", - "diff": "oni", - "actual": 4.9, - "predicted": 4.9911, - "error": 0.09109999999999996 - }, - { - "songno": "149", - "diff": "ura", - "actual": 6.8, - "predicted": 6.8908, - "error": 0.09079999999999977 - }, - { - "songno": "1371", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5902, - "error": 0.09020000000000028 - }, - { - "songno": "1326", - "diff": "oni", - "actual": 3.7, - "predicted": 3.6099, - "error": 0.09010000000000007 - }, - { - "songno": "52", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2891, - "error": 0.08910000000000018 - }, - { - "songno": "1311", - "diff": "ura", - "actual": 10.3, - "predicted": 10.2115, - "error": 0.08850000000000158 - }, - { - "songno": "1", - "diff": "oni", - "actual": 9, - "predicted": 8.9116, - "error": 0.08840000000000003 - }, - { - "songno": "727", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6116, - "error": 0.08840000000000003 - }, - { - "songno": "1437", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5874, - "error": 0.0873999999999997 - }, - { - "songno": "1212", - "diff": "ura", - "actual": 6.7, - "predicted": 6.6128, - "error": 0.08720000000000017 - }, - { - "songno": "1308", - "diff": "ura", - "actual": 10.6, - "predicted": 10.5131, - "error": 0.08689999999999998 - }, - { - "songno": "846", - "diff": "oni", - "actual": 8.5, - "predicted": 8.4131, - "error": 0.08689999999999998 - }, - { - "songno": "960", - "diff": "oni", - "actual": 10.1, - "predicted": 10.0133, - "error": 0.08670000000000044 - }, - { - "songno": "184", - "diff": "oni", - "actual": 5.2, - "predicted": 5.1137, - "error": 0.08630000000000049 - }, - { - "songno": "1220", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6863, - "error": 0.08630000000000004 - }, - { - "songno": "402", - "diff": "ura", - "actual": 9.6, - "predicted": 9.6862, - "error": 0.08619999999999983 - }, - { - "songno": "534", - "diff": "oni", - "actual": 4, - "predicted": 4.0861, - "error": 0.08610000000000007 - }, - { - "songno": "45", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9849, - "error": 0.08489999999999931 - }, - { - "songno": "981", - "diff": "ura", - "actual": 7.1, - "predicted": 7.1848, - "error": 0.08480000000000043 - }, - { - "songno": "1425", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8157, - "error": 0.08430000000000071 - }, - { - "songno": "778", - "diff": "oni", - "actual": 11, - "predicted": 10.9162, - "error": 0.0838000000000001 - }, - { - "songno": "399", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5163, - "error": 0.08369999999999944 - }, - { - "songno": "400", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5163, - "error": 0.08369999999999944 - }, - { - "songno": "1067", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2834, - "error": 0.08340000000000103 - }, - { - "songno": "973", - "diff": "oni", - "actual": 4, - "predicted": 3.9177, - "error": 0.08230000000000004 - }, - { - "songno": "681", - "diff": "oni", - "actual": 7, - "predicted": 6.9179, - "error": 0.08209999999999962 - }, - { - "songno": "183", - "diff": "oni", - "actual": 7, - "predicted": 7.082, - "error": 0.08199999999999985 - }, - { - "songno": "1452", - "diff": "ura", - "actual": 9, - "predicted": 8.9186, - "error": 0.08140000000000036 - }, - { - "songno": "164", - "diff": "ura", - "actual": 9.8, - "predicted": 9.7186, - "error": 0.08140000000000036 - }, - { - "songno": "1058", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4812, - "error": 0.08119999999999994 - }, - { - "songno": "593", - "diff": "oni", - "actual": 10.6, - "predicted": 10.519, - "error": 0.08099999999999952 - }, - { - "songno": "1201", - "diff": "ura", - "actual": 9.9, - "predicted": 9.8197, - "error": 0.08030000000000115 - }, - { - "songno": "962", - "diff": "oni", - "actual": 2.6, - "predicted": 2.6803, - "error": 0.08029999999999982 - }, - { - "songno": "1368", - "diff": "oni", - "actual": 7.5, - "predicted": 7.58, - "error": 0.08000000000000007 - }, - { - "songno": "1387", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2208, - "error": 0.07920000000000016 - }, - { - "songno": "361", - "diff": "oni", - "actual": 8, - "predicted": 8.0787, - "error": 0.07869999999999955 - }, - { - "songno": "1277", - "diff": "oni", - "actual": 5, - "predicted": 4.9218, - "error": 0.07819999999999983 - }, - { - "songno": "866", - "diff": "ura", - "actual": 11, - "predicted": 11.078, - "error": 0.0779999999999994 - }, - { - "songno": "302", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1772, - "error": 0.07720000000000038 - }, - { - "songno": "1021", - "diff": "oni", - "actual": 7, - "predicted": 7.0769, - "error": 0.07690000000000019 - }, - { - "songno": "650", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3233, - "error": 0.07670000000000066 - }, - { - "songno": "513", - "diff": "oni", - "actual": 8.4, - "predicted": 8.4766, - "error": 0.07659999999999911 - }, - { - "songno": "431", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6762, - "error": 0.07620000000000005 - }, - { - "songno": "261", - "diff": "oni", - "actual": 7.4, - "predicted": 7.324, - "error": 0.07600000000000051 - }, - { - "songno": "539", - "diff": "ura", - "actual": 8.2, - "predicted": 8.2755, - "error": 0.0754999999999999 - }, - { - "songno": "309", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5245, - "error": 0.0754999999999999 - }, - { - "songno": "754", - "diff": "oni", - "actual": 5, - "predicted": 4.925, - "error": 0.07500000000000018 - }, - { - "songno": "785", - "diff": "oni", - "actual": 8.5, - "predicted": 8.575, - "error": 0.07499999999999929 - }, - { - "songno": "86", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7251, - "error": 0.07489999999999952 - }, - { - "songno": "869", - "diff": "oni", - "actual": 10.9, - "predicted": 10.9745, - "error": 0.07450000000000045 - }, - { - "songno": "1256", - "diff": "ura", - "actual": 10.6, - "predicted": 10.526, - "error": 0.07399999999999984 - }, - { - "songno": "1411", - "diff": "ura", - "actual": 11.2, - "predicted": 11.2735, - "error": 0.07350000000000101 - }, - { - "songno": "931", - "diff": "oni", - "actual": 7.7, - "predicted": 7.7732, - "error": 0.07319999999999993 - }, - { - "songno": "735", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3271, - "error": 0.07290000000000063 - }, - { - "songno": "511", - "diff": "ura", - "actual": 6.6, - "predicted": 6.6727, - "error": 0.07270000000000021 - }, - { - "songno": "386", - "diff": "oni", - "actual": 7, - "predicted": 7.0725, - "error": 0.07249999999999979 - }, - { - "songno": "1328", - "diff": "oni", - "actual": 9.9, - "predicted": 9.8279, - "error": 0.07210000000000072 - }, - { - "songno": "1422", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5281, - "error": 0.07189999999999941 - }, - { - "songno": "700", - "diff": "ura", - "actual": 11, - "predicted": 10.9285, - "error": 0.07150000000000034 - }, - { - "songno": "822", - "diff": "oni", - "actual": 7.2, - "predicted": 7.1287, - "error": 0.07129999999999992 - }, - { - "songno": "180", - "diff": "oni", - "actual": 7.3, - "predicted": 7.2293, - "error": 0.07069999999999954 - }, - { - "songno": "1275", - "diff": "oni", - "actual": 4.1, - "predicted": 4.1706, - "error": 0.07060000000000066 - }, - { - "songno": "139", - "diff": "oni", - "actual": 4.8, - "predicted": 4.8701, - "error": 0.07010000000000005 - }, - { - "songno": "1369", - "diff": "oni", - "actual": 11.8, - "predicted": 11.7299, - "error": 0.07010000000000005 - }, - { - "songno": "1108", - "diff": "oni", - "actual": 10.4, - "predicted": 10.3302, - "error": 0.06980000000000075 - }, - { - "songno": "1337", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9694, - "error": 0.0693999999999999 - }, - { - "songno": "253", - "diff": "ura", - "actual": 7.9, - "predicted": 7.8308, - "error": 0.06920000000000037 - }, - { - "songno": "1072", - "diff": "ura", - "actual": 11.7, - "predicted": 11.7692, - "error": 0.06920000000000037 - }, - { - "songno": "1084", - "diff": "ura", - "actual": 6.7, - "predicted": 6.7688, - "error": 0.06879999999999953 - }, - { - "songno": "187", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4687, - "error": 0.06869999999999976 - }, - { - "songno": "1316", - "diff": "oni", - "actual": 2.8, - "predicted": 2.7316, - "error": 0.06840000000000002 - }, - { - "songno": "723", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9682, - "error": 0.06819999999999915 - }, - { - "songno": "1229", - "diff": "oni", - "actual": 9.7, - "predicted": 9.7681, - "error": 0.06810000000000116 - }, - { - "songno": "470", - "diff": "ura", - "actual": 6.9, - "predicted": 6.8319, - "error": 0.06810000000000027 - }, - { - "songno": "621", - "diff": "oni", - "actual": 8.2, - "predicted": 8.268, - "error": 0.06800000000000139 - }, - { - "songno": "605", - "diff": "oni", - "actual": 6.9, - "predicted": 6.968, - "error": 0.06799999999999962 - }, - { - "songno": "1248", - "diff": "oni", - "actual": 6.6, - "predicted": 6.532, - "error": 0.06799999999999962 - }, - { - "songno": "414", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8679, - "error": 0.06789999999999985 - }, - { - "songno": "1280", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9678, - "error": 0.06780000000000008 - }, - { - "songno": "942", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4322, - "error": 0.06780000000000008 - }, - { - "songno": "1148", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4665, - "error": 0.0665 - }, - { - "songno": "1276", - "diff": "ura", - "actual": 11.4, - "predicted": 11.3337, - "error": 0.06630000000000003 - }, - { - "songno": "141", - "diff": "oni", - "actual": 4.6, - "predicted": 4.5341, - "error": 0.06590000000000007 - }, - { - "songno": "1258", - "diff": "oni", - "actual": 4.6, - "predicted": 4.5341, - "error": 0.06590000000000007 - }, - { - "songno": "626", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3657, - "error": 0.06570000000000054 - }, - { - "songno": "671", - "diff": "ura", - "actual": 6.5, - "predicted": 6.5655, - "error": 0.06550000000000011 - }, - { - "songno": "95", - "diff": "oni", - "actual": 7.3, - "predicted": 7.3655, - "error": 0.06550000000000011 - }, - { - "songno": "786", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2356, - "error": 0.0644000000000009 - }, - { - "songno": "1231", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7643, - "error": 0.06430000000000025 - }, - { - "songno": "1160", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3642, - "error": 0.06420000000000048 - }, - { - "songno": "1249", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2359, - "error": 0.06409999999999982 - }, - { - "songno": "734", - "diff": "oni", - "actual": 8.6, - "predicted": 8.536, - "error": 0.06400000000000006 - }, - { - "songno": "181", - "diff": "oni", - "actual": 8.5, - "predicted": 8.5636, - "error": 0.06359999999999921 - }, - { - "songno": "1283", - "diff": "oni", - "actual": 2.2, - "predicted": 2.1371, - "error": 0.06289999999999996 - }, - { - "songno": "1388", - "diff": "ura", - "actual": 6.9, - "predicted": 6.8372, - "error": 0.06280000000000019 - }, - { - "songno": "499", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7375, - "error": 0.0625 - }, - { - "songno": "1235", - "diff": "ura", - "actual": 10.4, - "predicted": 10.338, - "error": 0.062000000000001165 - }, - { - "songno": "31", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0386, - "error": 0.06139999999999901 - }, - { - "songno": "1081", - "diff": "ura", - "actual": 10.2, - "predicted": 10.261, - "error": 0.06099999999999994 - }, - { - "songno": "167", - "diff": "oni", - "actual": 7.1, - "predicted": 7.1609, - "error": 0.060900000000000176 - }, - { - "songno": "746", - "diff": "oni", - "actual": 8, - "predicted": 8.0608, - "error": 0.06080000000000041 - }, - { - "songno": "140", - "diff": "ura", - "actual": 7.3, - "predicted": 7.3604, - "error": 0.06040000000000045 - }, - { - "songno": "1147", - "diff": "oni", - "actual": 9.1, - "predicted": 9.0397, - "error": 0.0602999999999998 - }, - { - "songno": "451", - "diff": "ura", - "actual": 11.1, - "predicted": 11.0397, - "error": 0.0602999999999998 - }, - { - "songno": "1345", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5602, - "error": 0.06020000000000003 - }, - { - "songno": "1390", - "diff": "ura", - "actual": 7.7, - "predicted": 7.7598, - "error": 0.059800000000000075 - }, - { - "songno": "1120", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1402, - "error": 0.05979999999999919 - }, - { - "songno": "775", - "diff": "oni", - "actual": 10.6, - "predicted": 10.6594, - "error": 0.05940000000000012 - }, - { - "songno": "548", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4407, - "error": 0.05930000000000035 - }, - { - "songno": "877", - "diff": "oni", - "actual": 1.3, - "predicted": 1.241, - "error": 0.05899999999999994 - }, - { - "songno": "417", - "diff": "ura", - "actual": 6.9, - "predicted": 6.959, - "error": 0.058999999999999275 - }, - { - "songno": "610", - "diff": "oni", - "actual": 6, - "predicted": 6.0589, - "error": 0.058900000000000396 - }, - { - "songno": "1121", - "diff": "oni", - "actual": 8.6, - "predicted": 8.6588, - "error": 0.05879999999999974 - }, - { - "songno": "502", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7416, - "error": 0.058400000000000674 - }, - { - "songno": "399", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6422, - "error": 0.05779999999999852 - }, - { - "songno": "400", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6422, - "error": 0.05779999999999852 - }, - { - "songno": "1403", - "diff": "oni", - "actual": 5, - "predicted": 4.9425, - "error": 0.05750000000000011 - }, - { - "songno": "997", - "diff": "oni", - "actual": 4, - "predicted": 4.0573, - "error": 0.057299999999999685 - }, - { - "songno": "200", - "diff": "ura", - "actual": 6.7, - "predicted": 6.7564, - "error": 0.056400000000000006 - }, - { - "songno": "1286", - "diff": "oni", - "actual": 2.2, - "predicted": 2.2556, - "error": 0.05559999999999965 - }, - { - "songno": "998", - "diff": "oni", - "actual": 5, - "predicted": 4.9445, - "error": 0.05550000000000033 - }, - { - "songno": "994", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2448, - "error": 0.055200000000001026 - }, - { - "songno": "159", - "diff": "oni", - "actual": 7.5, - "predicted": 7.555, - "error": 0.054999999999999716 - }, - { - "songno": "852", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6549, - "error": 0.05489999999999995 - }, - { - "songno": "1026", - "diff": "oni", - "actual": 4.1, - "predicted": 4.1548, - "error": 0.05480000000000018 - }, - { - "songno": "579", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2537, - "error": 0.05370000000000008 - }, - { - "songno": "137", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1534, - "error": 0.05340000000000078 - }, - { - "songno": "1259", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1534, - "error": 0.05340000000000078 - }, - { - "songno": "1071", - "diff": "oni", - "actual": 9.6, - "predicted": 9.6529, - "error": 0.05290000000000106 - }, - { - "songno": "1013", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2475, - "error": 0.05250000000000021 - }, - { - "songno": "1116", - "diff": "oni", - "actual": 4.2, - "predicted": 4.1478, - "error": 0.052200000000000024 - }, - { - "songno": "983", - "diff": "oni", - "actual": 8.9, - "predicted": 8.848, - "error": 0.0519999999999996 - }, - { - "songno": "1287", - "diff": "oni", - "actual": 3.2, - "predicted": 3.1481, - "error": 0.05190000000000028 - }, - { - "songno": "552", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5519, - "error": 0.051899999999999835 - }, - { - "songno": "226", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6485, - "error": 0.05149999999999988 - }, - { - "songno": "155", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2515, - "error": 0.05149999999999988 - }, - { - "songno": "1320", - "diff": "ura", - "actual": 10.7, - "predicted": 10.751, - "error": 0.051000000000000156 - }, - { - "songno": "467", - "diff": "oni", - "actual": 2.9, - "predicted": 2.951, - "error": 0.051000000000000156 - }, - { - "songno": "204", - "diff": "oni", - "actual": 2.4, - "predicted": 2.3494, - "error": 0.050599999999999756 - }, - { - "songno": "1177", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4499, - "error": 0.049900000000000055 - }, - { - "songno": "1433", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4502, - "error": 0.04980000000000029 - }, - { - "songno": "1219", - "diff": "oni", - "actual": 4.4, - "predicted": 4.3502, - "error": 0.04980000000000029 - }, - { - "songno": "890", - "diff": "oni", - "actual": 11, - "predicted": 11.0492, - "error": 0.0492000000000008 - }, - { - "songno": "154", - "diff": "ura", - "actual": 9.8, - "predicted": 9.7518, - "error": 0.04820000000000135 - }, - { - "songno": "49", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2518, - "error": 0.048199999999999577 - }, - { - "songno": "310", - "diff": "ura", - "actual": 9.2, - "predicted": 9.2476, - "error": 0.047600000000000975 - }, - { - "songno": "1044", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2528, - "error": 0.04720000000000013 - }, - { - "songno": "306", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3471, - "error": 0.047100000000000364 - }, - { - "songno": "1367", - "diff": "oni", - "actual": 11.6, - "predicted": 11.553, - "error": 0.04699999999999882 - }, - { - "songno": "406", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6532, - "error": 0.046800000000000175 - }, - { - "songno": "20", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2537, - "error": 0.04630000000000045 - }, - { - "songno": "943", - "diff": "oni", - "actual": 9.6, - "predicted": 9.554, - "error": 0.045999999999999375 - }, - { - "songno": "867", - "diff": "oni", - "actual": 9, - "predicted": 9.0456, - "error": 0.04560000000000031 - }, - { - "songno": "1019", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4546, - "error": 0.045399999999999885 - }, - { - "songno": "1298", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7448, - "error": 0.04479999999999951 - }, - { - "songno": "436", - "diff": "oni", - "actual": 3.7, - "predicted": 3.7447, - "error": 0.04469999999999974 - }, - { - "songno": "676", - "diff": "oni", - "actual": 2.6, - "predicted": 2.6445, - "error": 0.04449999999999976 - }, - { - "songno": "1455", - "diff": "ura", - "actual": 8.5, - "predicted": 8.5445, - "error": 0.04449999999999932 - }, - { - "songno": "964", - "diff": "oni", - "actual": 2.4, - "predicted": 2.3556, - "error": 0.044399999999999995 - }, - { - "songno": "1358", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8444, - "error": 0.044399999999999995 - }, - { - "songno": "425", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6558, - "error": 0.04420000000000002 - }, - { - "songno": "1418", - "diff": "oni", - "actual": 8, - "predicted": 8.0441, - "error": 0.04410000000000025 - }, - { - "songno": "348", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9439, - "error": 0.04390000000000027 - }, - { - "songno": "1331", - "diff": "oni", - "actual": 2.2, - "predicted": 2.2429, - "error": 0.04289999999999994 - }, - { - "songno": "283", - "diff": "oni", - "actual": 8.5, - "predicted": 8.5427, - "error": 0.04269999999999996 - }, - { - "songno": "1241", - "diff": "oni", - "actual": 5, - "predicted": 4.9579, - "error": 0.04209999999999958 - }, - { - "songno": "1247", - "diff": "oni", - "actual": 10, - "predicted": 9.9586, - "error": 0.04139999999999944 - }, - { - "songno": "1319", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5408, - "error": 0.040800000000000836 - }, - { - "songno": "554", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9404, - "error": 0.04039999999999999 - }, - { - "songno": "1145", - "diff": "ura", - "actual": 11.3, - "predicted": 11.2597, - "error": 0.040300000000000225 - }, - { - "songno": "1124", - "diff": "oni", - "actual": 2.8, - "predicted": 2.7599, - "error": 0.0400999999999998 - }, - { - "songno": "1209", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0599, - "error": 0.0400999999999998 - }, - { - "songno": "1157", - "diff": "ura", - "actual": 6.6, - "predicted": 6.64, - "error": 0.040000000000000036 - }, - { - "songno": "1327", - "diff": "ura", - "actual": 6.4, - "predicted": 6.4395, - "error": 0.039499999999999424 - }, - { - "songno": "248", - "diff": "ura", - "actual": 8.7, - "predicted": 8.661, - "error": 0.0389999999999997 - }, - { - "songno": "157", - "diff": "oni", - "actual": 3.3, - "predicted": 3.2612, - "error": 0.038799999999999724 - }, - { - "songno": "645", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6619, - "error": 0.03810000000000002 - }, - { - "songno": "491", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1628, - "error": 0.03719999999999857 - }, - { - "songno": "653", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6629, - "error": 0.03710000000000058 - }, - { - "songno": "493", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8371, - "error": 0.03710000000000013 - }, - { - "songno": "500", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4629, - "error": 0.03709999999999969 - }, - { - "songno": "297", - "diff": "oni", - "actual": 6, - "predicted": 5.963, - "error": 0.03699999999999992 - }, - { - "songno": "1323", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7643, - "error": 0.0356999999999994 - }, - { - "songno": "1041", - "diff": "oni", - "actual": 10.9, - "predicted": 10.9351, - "error": 0.03509999999999991 - }, - { - "songno": "1039", - "diff": "oni", - "actual": 9.2, - "predicted": 9.1649, - "error": 0.03509999999999991 - }, - { - "songno": "1110", - "diff": "oni", - "actual": 1.7, - "predicted": 1.7348, - "error": 0.03479999999999994 - }, - { - "songno": "1402", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8346, - "error": 0.034600000000000186 - }, - { - "songno": "424", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3339, - "error": 0.03390000000000004 - }, - { - "songno": "178", - "diff": "ura", - "actual": 8.7, - "predicted": 8.6661, - "error": 0.03389999999999915 - }, - { - "songno": "163", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7668, - "error": 0.033199999999999896 - }, - { - "songno": "601", - "diff": "ura", - "actual": 7.4, - "predicted": 7.3669, - "error": 0.03310000000000013 - }, - { - "songno": "809", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4328, - "error": 0.03279999999999994 - }, - { - "songno": "1030", - "diff": "oni", - "actual": 4.9, - "predicted": 4.9326, - "error": 0.03259999999999952 - }, - { - "songno": "1131", - "diff": "ura", - "actual": 5.8, - "predicted": 5.8314, - "error": 0.03140000000000054 - }, - { - "songno": "411", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7691, - "error": 0.030899999999999928 - }, - { - "songno": "1043", - "diff": "oni", - "actual": 9.8, - "predicted": 9.7698, - "error": 0.03020000000000067 - }, - { - "songno": "1392", - "diff": "ura", - "actual": 11.6, - "predicted": 11.57, - "error": 0.02999999999999936 - }, - { - "songno": "307", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0702, - "error": 0.029799999999999827 - }, - { - "songno": "1218", - "diff": "ura", - "actual": 6.6, - "predicted": 6.5702, - "error": 0.029799999999999827 - }, - { - "songno": "1193", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4297, - "error": 0.02970000000000006 - }, - { - "songno": "1032", - "diff": "ura", - "actual": 11.6, - "predicted": 11.5708, - "error": 0.02919999999999945 - }, - { - "songno": "934", - "diff": "oni", - "actual": 9.5, - "predicted": 9.4712, - "error": 0.02880000000000038 - }, - { - "songno": "288", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1713, - "error": 0.028699999999998838 - }, - { - "songno": "510", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2715, - "error": 0.028500000000000192 - }, - { - "songno": "135", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0724, - "error": 0.027599999999999625 - }, - { - "songno": "560", - "diff": "oni", - "actual": 6, - "predicted": 6.0273, - "error": 0.027300000000000324 - }, - { - "songno": "1144", - "diff": "oni", - "actual": 2.7, - "predicted": 2.6736, - "error": 0.0264000000000002 - }, - { - "songno": "833", - "diff": "oni", - "actual": 9.6, - "predicted": 9.6261, - "error": 0.026099999999999568 - }, - { - "songno": "1281", - "diff": "oni", - "actual": 2.2, - "predicted": 2.174, - "error": 0.026000000000000245 - }, - { - "songno": "458", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2744, - "error": 0.025599999999999845 - }, - { - "songno": "1159", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0744, - "error": 0.025599999999999845 - }, - { - "songno": "1317", - "diff": "oni", - "actual": 11.2, - "predicted": 11.1745, - "error": 0.02549999999999919 - }, - { - "songno": "27", - "diff": "oni", - "actual": 3.1, - "predicted": 3.1254, - "error": 0.025399999999999867 - }, - { - "songno": "173", - "diff": "oni", - "actual": 6, - "predicted": 5.9751, - "error": 0.0248999999999997 - }, - { - "songno": "756", - "diff": "oni", - "actual": 10.3, - "predicted": 10.3244, - "error": 0.024399999999999977 - }, - { - "songno": "385", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1243, - "error": 0.02430000000000021 - }, - { - "songno": "536", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7242, - "error": 0.024199999999999555 - }, - { - "songno": "685", - "diff": "oni", - "actual": 10.4, - "predicted": 10.4238, - "error": 0.0237999999999996 - }, - { - "songno": "107", - "diff": "oni", - "actual": 4.6, - "predicted": 4.5766, - "error": 0.023399999999999643 - }, - { - "songno": "1031", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6768, - "error": 0.02320000000000011 - }, - { - "songno": "520", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7227, - "error": 0.0226999999999995 - }, - { - "songno": "1035", - "diff": "oni", - "actual": 5.4, - "predicted": 5.4224, - "error": 0.02239999999999931 - }, - { - "songno": "1366", - "diff": "ura", - "actual": 8, - "predicted": 7.9782, - "error": 0.02179999999999982 - }, - { - "songno": "1042", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5208, - "error": 0.020799999999999486 - }, - { - "songno": "463", - "diff": "oni", - "actual": 11.7, - "predicted": 11.7205, - "error": 0.020500000000000185 - }, - { - "songno": "1035", - "diff": "ura", - "actual": 8.6, - "predicted": 8.5796, - "error": 0.020400000000000418 - }, - { - "songno": "211", - "diff": "oni", - "actual": 7.8, - "predicted": 7.82, - "error": 0.020000000000000462 - }, - { - "songno": "179", - "diff": "oni", - "actual": 10.2, - "predicted": 10.2199, - "error": 0.019900000000001583 - }, - { - "songno": "1262", - "diff": "oni", - "actual": 4.3, - "predicted": 4.2805, - "error": 0.01949999999999985 - }, - { - "songno": "323", - "diff": "oni", - "actual": 4.3, - "predicted": 4.2805, - "error": 0.01949999999999985 - }, - { - "songno": "294", - "diff": "oni", - "actual": 4.3, - "predicted": 4.3195, - "error": 0.01949999999999985 - }, - { - "songno": "1364", - "diff": "ura", - "actual": 9.2, - "predicted": 9.1807, - "error": 0.01929999999999943 - }, - { - "songno": "763", - "diff": "oni", - "actual": 10.8, - "predicted": 10.8191, - "error": 0.019099999999999895 - }, - { - "songno": "958", - "diff": "ura", - "actual": 10.7, - "predicted": 10.6814, - "error": 0.018599999999999284 - }, - { - "songno": "403", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3172, - "error": 0.017199999999999882 - }, - { - "songno": "1330", - "diff": "oni", - "actual": 1.6, - "predicted": 1.6169, - "error": 0.016899999999999915 - }, - { - "songno": "1120", - "diff": "ura", - "actual": 11.4, - "predicted": 11.4168, - "error": 0.016799999999999926 - }, - { - "songno": "270", - "diff": "ura", - "actual": 6.9, - "predicted": 6.9165, - "error": 0.016499999999999737 - }, - { - "songno": "501", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6164, - "error": 0.01639999999999997 - }, - { - "songno": "427", - "diff": "oni", - "actual": 9.1, - "predicted": 9.1156, - "error": 0.015600000000000946 - }, - { - "songno": "322", - "diff": "oni", - "actual": 7, - "predicted": 7.0154, - "error": 0.015399999999999636 - }, - { - "songno": "855", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7153, - "error": 0.01529999999999987 - }, - { - "songno": "264", - "diff": "ura", - "actual": 9.9, - "predicted": 9.9146, - "error": 0.014599999999999724 - }, - { - "songno": "277", - "diff": "ura", - "actual": 4.9, - "predicted": 4.9146, - "error": 0.014599999999999724 - }, - { - "songno": "737", - "diff": "oni", - "actual": 9.9, - "predicted": 9.8854, - "error": 0.014599999999999724 - }, - { - "songno": "1345", - "diff": "ura", - "actual": 7.6, - "predicted": 7.5855, - "error": 0.014499999999999957 - }, - { - "songno": "573", - "diff": "oni", - "actual": 8, - "predicted": 8.0142, - "error": 0.014200000000000657 - }, - { - "songno": "112", - "diff": "oni", - "actual": 6.5, - "predicted": 6.4859, - "error": 0.014100000000000001 - }, - { - "songno": "396", - "diff": "oni", - "actual": 5.8, - "predicted": 5.814, - "error": 0.014000000000000234 - }, - { - "songno": "422", - "diff": "ura", - "actual": 6.2, - "predicted": 6.2133, - "error": 0.01330000000000009 - }, - { - "songno": "241", - "diff": "oni", - "actual": 2.6, - "predicted": 2.6133, - "error": 0.01330000000000009 - }, - { - "songno": "706", - "diff": "oni", - "actual": 3.3, - "predicted": 3.3129, - "error": 0.012900000000000134 - }, - { - "songno": "697", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9124, - "error": 0.012399999999999523 - }, - { - "songno": "925", - "diff": "oni", - "actual": 5.2, - "predicted": 5.1881, - "error": 0.0118999999999998 - }, - { - "songno": "1198", - "diff": "oni", - "actual": 7, - "predicted": 6.9884, - "error": 0.01159999999999961 - }, - { - "songno": "857", - "diff": "oni", - "actual": 7.7, - "predicted": 7.7114, - "error": 0.011400000000000077 - }, - { - "songno": "1050", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2111, - "error": 0.011100000000000776 - }, - { - "songno": "595", - "diff": "oni", - "actual": 9.5, - "predicted": 9.5107, - "error": 0.010699999999999932 - }, - { - "songno": "609", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7896, - "error": 0.010399999999999743 - }, - { - "songno": "97", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5103, - "error": 0.010299999999999976 - }, - { - "songno": "1056", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6899, - "error": 0.010100000000000442 - }, - { - "songno": "108", - "diff": "oni", - "actual": 6.8, - "predicted": 6.7899, - "error": 0.010099999999999554 - }, - { - "songno": "161", - "diff": "oni", - "actual": 3, - "predicted": 3.0092, - "error": 0.009199999999999875 - }, - { - "songno": "1255", - "diff": "oni", - "actual": 10.4, - "predicted": 10.4087, - "error": 0.008699999999999264 - }, - { - "songno": "71", - "diff": "oni", - "actual": 6, - "predicted": 5.9915, - "error": 0.00849999999999973 - }, - { - "songno": "299", - "diff": "oni", - "actual": 3.4, - "predicted": 3.3916, - "error": 0.008399999999999963 - }, - { - "songno": "410", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6077, - "error": 0.007700000000000706 - }, - { - "songno": "48", - "diff": "oni", - "actual": 5.6, - "predicted": 5.6076, - "error": 0.007600000000000051 - }, - { - "songno": "214", - "diff": "oni", - "actual": 7.8, - "predicted": 7.8071, - "error": 0.007100000000000328 - }, - { - "songno": "126", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6067, - "error": 0.006700000000000372 - }, - { - "songno": "1359", - "diff": "oni", - "actual": 2.2, - "predicted": 2.2067, - "error": 0.006699999999999928 - }, - { - "songno": "770", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8936, - "error": 0.006400000000000183 - }, - { - "songno": "242", - "diff": "oni", - "actual": 2.9, - "predicted": 2.8936, - "error": 0.006399999999999739 - }, - { - "songno": "423", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9057, - "error": 0.005700000000000038 - }, - { - "songno": "949", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0943, - "error": 0.005700000000000038 - }, - { - "songno": "759", - "diff": "oni", - "actual": 9, - "predicted": 8.995, - "error": 0.005000000000000782 - }, - { - "songno": "421", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9045, - "error": 0.004499999999999282 - }, - { - "songno": "1048", - "diff": "oni", - "actual": 9.4, - "predicted": 9.4044, - "error": 0.004400000000000404 - }, - { - "songno": "730", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0962, - "error": 0.0038000000000000256 - }, - { - "songno": "874", - "diff": "oni", - "actual": 7, - "predicted": 7.0038, - "error": 0.0038000000000000256 - }, - { - "songno": "707", - "diff": "oni", - "actual": 6.4, - "predicted": 6.3966, - "error": 0.0034000000000000696 - }, - { - "songno": "47", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0969, - "error": 0.0030999999999998806 - }, - { - "songno": "1341", - "diff": "oni", - "actual": 5.4, - "predicted": 5.3973, - "error": 0.0026999999999999247 - }, - { - "songno": "56", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5979, - "error": 0.0020999999999995467 - }, - { - "songno": "1168", - "diff": "oni", - "actual": 4, - "predicted": 3.9985, - "error": 0.0015000000000000568 - }, - { - "songno": "858", - "diff": "oni", - "actual": 11.1, - "predicted": 11.0986, - "error": 0.00140000000000029 - }, - { - "songno": "819", - "diff": "oni", - "actual": 8.6, - "predicted": 8.6011, - "error": 0.001100000000000989 - }, - { - "songno": "184", - "diff": "ura", - "actual": 7.2, - "predicted": 7.1989, - "error": 0.001100000000000101 - }, - { - "songno": "1219", - "diff": "ura", - "actual": 7.3, - "predicted": 7.2994, - "error": 0.0005999999999994898 - }, - { - "songno": "1146", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4997, - "error": 0.000300000000000189 - }, - { - "songno": "1264", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4997, - "error": 0.000300000000000189 - }, - { - "songno": "32", - "diff": "oni", - "actual": 6.8, - "predicted": 6.8001, - "error": 0.00009999999999976694 - } - ] -} \ No newline at end of file diff --git a/output/lightgbm2/features.json b/output/lightgbm2/features.json deleted file mode 100644 index f62e775..0000000 --- a/output/lightgbm2/features.json +++ /dev/null @@ -1,17594 +0,0 @@ -[ - { - "songno": "449", - "difficulty": "oni", - "note_count": 784, - "density_avg": 5.587527839643652, - "density_peak": 12, - "bpm_avg": 280.46938775510205, - "bpm_change": 2, - "scroll_change": 22, - "rhythm_complexity": 670, - "color_complexity": 0.006692674014408041 - }, - { - "songno": "307", - "difficulty": "oni", - "note_count": 604, - "density_avg": 4.531287297527706, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.004356983446119197 - }, - { - "songno": "461", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.787089080466525, - "density_peak": 13, - "bpm_avg": 185.9635159817354, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 604, - "color_complexity": 0.004993864138842205 - }, - { - "songno": "313", - "difficulty": "oni", - "note_count": 427, - "density_avg": 3.6810344827586206, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.001489031508400551 - }, - { - "songno": "1136", - "difficulty": "oni", - "note_count": 360, - "density_avg": 3.814569536423841, - "density_peak": 7, - "bpm_avg": 96, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0009429447111111097 - }, - { - "songno": "1122", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.956597239601169, - "density_peak": 12, - "bpm_avg": 284.18774045801524, - "bpm_change": 7, - "scroll_change": 16, - "rhythm_complexity": 574, - "color_complexity": 0.004677826484192639 - }, - { - "songno": "1122", - "difficulty": "ura", - "note_count": 1108, - "density_avg": 8.070413061908537, - "density_peak": 19, - "bpm_avg": 283.00328519855594, - "bpm_change": 15, - "scroll_change": 20, - "rhythm_complexity": 994, - "color_complexity": 0.025356178647564762 - }, - { - "songno": "887", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.6222865412445735, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.0068026821675988775 - }, - { - "songno": "139", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.310763888888889, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 621, - "color_complexity": 0.004459180190854104 - }, - { - "songno": "139", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.30859375, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 742, - "color_complexity": 0.008277929116327007 - }, - { - "songno": "663", - "difficulty": "oni", - "note_count": 476, - "density_avg": 4.109953034614047, - "density_peak": 9, - "bpm_avg": 130.0222563025208, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0018006687913481438 - }, - { - "songno": "105", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.0236184143527267, - "density_peak": 7, - "bpm_avg": 139.7528813559323, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 251, - "color_complexity": 0.000919907220485541 - }, - { - "songno": "105", - "difficulty": "ura", - "note_count": 676, - "density_avg": 5.773915390119896, - "density_peak": 10, - "bpm_avg": 140.52822485207096, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 589, - "color_complexity": 0.00501915309149266 - }, - { - "songno": "111", - "difficulty": "oni", - "note_count": 777, - "density_avg": 4.7050971079637005, - "density_peak": 10, - "bpm_avg": 135.94851994851996, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.0034587090618026814 - }, - { - "songno": "677", - "difficulty": "oni", - "note_count": 792, - "density_avg": 7.97583081570997, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.011505421296296236 - }, - { - "songno": "1308", - "difficulty": "oni", - "note_count": 773, - "density_avg": 5.771693790767178, - "density_peak": 13, - "bpm_avg": 239.01681759379042, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 727, - "color_complexity": 0.004041496952479993 - }, - { - "songno": "1308", - "difficulty": "ura", - "note_count": 1090, - "density_avg": 8.134814687221887, - "density_peak": 17, - "bpm_avg": 238.0091743119266, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 1038, - "color_complexity": 0.012863064027688232 - }, - { - "songno": "844", - "difficulty": "oni", - "note_count": 853, - "density_avg": 7.192956349206349, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.009678652688977774 - }, - { - "songno": "10", - "difficulty": "oni", - "note_count": 552, - "density_avg": 6.224101479915433, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0053731713053946 - }, - { - "songno": "688", - "difficulty": "oni", - "note_count": 707, - "density_avg": 5.590339370071598, - "density_peak": 13, - "bpm_avg": 175.99777934936353, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 654, - "color_complexity": 0.0068829446479436295 - }, - { - "songno": "850", - "difficulty": "oni", - "note_count": 872, - "density_avg": 6.794553847245661, - "density_peak": 17, - "bpm_avg": 274.81462155963305, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 703, - "color_complexity": 0.011439028910402393 - }, - { - "songno": "38", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.823086574654956, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.006105417539154131 - }, - { - "songno": "1334", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.035211267605634, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0029164289624079654 - }, - { - "songno": "878", - "difficulty": "oni", - "note_count": 806, - "density_avg": 6.302813376391915, - "density_peak": 16, - "bpm_avg": 255.37493796526053, - "bpm_change": 18, - "scroll_change": 29, - "rhythm_complexity": 676, - "color_complexity": 0.00676603514709561 - }, - { - "songno": "1452", - "difficulty": "oni", - "note_count": 316, - "density_avg": 9.328413284132841, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.00370360888888889 - }, - { - "songno": "1452", - "difficulty": "ura", - "note_count": 364, - "density_avg": 10.7255985267035, - "density_peak": 16, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.005922417777777777 - }, - { - "songno": "1446", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.135464535464536, - "density_peak": 12, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 287, - "color_complexity": 0.0022338303464472424 - }, - { - "songno": "1320", - "difficulty": "oni", - "note_count": 808, - "density_avg": 5.597655209166001, - "density_peak": 10, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 660, - "color_complexity": 0.004510001949763438 - }, - { - "songno": "1320", - "difficulty": "ura", - "note_count": 1111, - "density_avg": 8.00387919091161, - "density_peak": 17, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1020, - "color_complexity": 0.017274985877227887 - }, - { - "songno": "717", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.051711580480699, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.003257797200705463 - }, - { - "songno": "717", - "difficulty": "ura", - "note_count": 888, - "density_avg": 5.859679767103348, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.0064979530110355664 - }, - { - "songno": "1283", - "difficulty": "oni", - "note_count": 292, - "density_avg": 2.5710691823899374, - "density_peak": 6, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007190323891200115 - }, - { - "songno": "1297", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.889774696707105, - "density_peak": 14, - "bpm_avg": 139, - "bpm_change": 0, - "scroll_change": 71, - "rhythm_complexity": 690, - "color_complexity": 0.00893526861494559 - }, - { - "songno": "703", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.337966985230235, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.004553366071901534 - }, - { - "songno": "930", - "difficulty": "oni", - "note_count": 830, - "density_avg": 6.856171039844509, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009572243853901754 - }, - { - "songno": "924", - "difficulty": "oni", - "note_count": 350, - "density_avg": 4.697134566557852, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 338, - "color_complexity": 0.001804688302505356 - }, - { - "songno": "1268", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.332533672783506, - "density_peak": 10, - "bpm_avg": 219.96846280991733, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 552, - "color_complexity": 0.0032868798750415457 - }, - { - "songno": "1268", - "difficulty": "ura", - "note_count": 862, - "density_avg": 7.597758720560962, - "density_peak": 16, - "bpm_avg": 219.97786542923433, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 788, - "color_complexity": 0.010894191901963987 - }, - { - "songno": "1240", - "difficulty": "oni", - "note_count": 362, - "density_avg": 4.114535519125683, - "density_peak": 8, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 341, - "color_complexity": 0.0012868878780337735 - }, - { - "songno": "1240", - "difficulty": "ura", - "note_count": 657, - "density_avg": 7.467540983606558, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 623, - "color_complexity": 0.006901208079133739 - }, - { - "songno": "918", - "difficulty": "oni", - "note_count": 687, - "density_avg": 5.564132231404959, - "density_peak": 10, - "bpm_avg": 147, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.0037093791356749206 - }, - { - "songno": "1254", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.10387323943662, - "density_peak": 10, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.002324958780785769 - }, - { - "songno": "273", - "difficulty": "oni", - "note_count": 536, - "density_avg": 3.8068181818181817, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 509, - "color_complexity": 0.0013844103014602775 - }, - { - "songno": "273", - "difficulty": "ura", - "note_count": 763, - "density_avg": 5.419034090909091, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.005901183240301944 - }, - { - "songno": "1081", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.2018633540372665, - "density_peak": 13, - "bpm_avg": 185.72062084257206, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0036115374738737846 - }, - { - "songno": "1081", - "difficulty": "ura", - "note_count": 876, - "density_avg": 8.061349693251532, - "density_peak": 17, - "bpm_avg": 184.7945205479452, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 795, - "color_complexity": 0.011201968041594108 - }, - { - "songno": "515", - "difficulty": "oni", - "note_count": 488, - "density_avg": 3.964351424306376, - "density_peak": 9, - "bpm_avg": 126.00137295081967, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0017224712869179865 - }, - { - "songno": "501", - "difficulty": "oni", - "note_count": 962, - "density_avg": 6.846975088967972, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.010496300000000026 - }, - { - "songno": "1095", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.266752577319587, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.0017214377433399854 - }, - { - "songno": "267", - "difficulty": "oni", - "note_count": 417, - "density_avg": 3.8167169707310875, - "density_peak": 7, - "bpm_avg": 122.98940047961632, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0013931846914091836 - }, - { - "songno": "298", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.162656400384986, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0036774421583104394 - }, - { - "songno": "1042", - "difficulty": "oni", - "note_count": 885, - "density_avg": 6.954813359528488, - "density_peak": 17, - "bpm_avg": 235.72881355932202, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 861, - "color_complexity": 0.014998699115480149 - }, - { - "songno": "1042", - "difficulty": "ura", - "note_count": 1172, - "density_avg": 9.210216110019646, - "density_peak": 22, - "bpm_avg": 235.13651877133105, - "bpm_change": 6, - "scroll_change": 30, - "rhythm_complexity": 1080, - "color_complexity": 0.026092071293037866 - }, - { - "songno": "1056", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.061631944444445, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.003389508968475695 - }, - { - "songno": "1056", - "difficulty": "ura", - "note_count": 981, - "density_avg": 7.238281250000001, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 822, - "color_complexity": 0.011152284174905557 - }, - { - "songno": "1057", - "difficulty": "oni", - "note_count": 693, - "density_avg": 6.188912614318521, - "density_peak": 9, - "bpm_avg": 189.978354978355, - "bpm_change": 2, - "scroll_change": 38, - "rhythm_complexity": 676, - "color_complexity": 0.004701383799728597 - }, - { - "songno": "1043", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.87114845066276, - "density_peak": 15, - "bpm_avg": 281.053324099723, - "bpm_change": 17, - "scroll_change": 20, - "rhythm_complexity": 645, - "color_complexity": 0.006450077902468618 - }, - { - "songno": "1043", - "difficulty": "ura", - "note_count": 1170, - "density_avg": 9.514187932514444, - "density_peak": 23, - "bpm_avg": 277.8562564102565, - "bpm_change": 21, - "scroll_change": 25, - "rhythm_complexity": 1012, - "color_complexity": 0.018544465114083062 - }, - { - "songno": "299", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.454986894298035, - "density_peak": 9, - "bpm_avg": 150.05410835214448, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0015806091145694461 - }, - { - "songno": "1094", - "difficulty": "oni", - "note_count": 787, - "density_avg": 5.777579365079365, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007064537493320363 - }, - { - "songno": "500", - "difficulty": "oni", - "note_count": 672, - "density_avg": 4.774736842105264, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.0038177443787500687 - }, - { - "songno": "500", - "difficulty": "ura", - "note_count": 931, - "density_avg": 6.615, - "density_peak": 13, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 843, - "color_complexity": 0.010551994809414898 - }, - { - "songno": "266", - "difficulty": "oni", - "note_count": 727, - "density_avg": 6.058333333333333, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.00523845953455764 - }, - { - "songno": "266", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.3, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 822, - "color_complexity": 0.010420249000243716 - }, - { - "songno": "514", - "difficulty": "oni", - "note_count": 814, - "density_avg": 5.973215923683728, - "density_peak": 14, - "bpm_avg": 165.7002457002457, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 686, - "color_complexity": 0.008519774499891938 - }, - { - "songno": "1080", - "difficulty": "oni", - "note_count": 875, - "density_avg": 5.780068330267169, - "density_peak": 13, - "bpm_avg": 196.92365714285708, - "bpm_change": 16, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.007146615914553868 - }, - { - "songno": "1080", - "difficulty": "ura", - "note_count": 1195, - "density_avg": 7.821022092578282, - "density_peak": 20, - "bpm_avg": 191.14794979079488, - "bpm_change": 19, - "scroll_change": 42, - "rhythm_complexity": 1022, - "color_complexity": 0.02013975013518078 - }, - { - "songno": "1255", - "difficulty": "oni", - "note_count": 901, - "density_avg": 7.908777777777777, - "density_peak": 16, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 824, - "color_complexity": 0.011367388067806112 - }, - { - "songno": "919", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.641447554794225, - "density_peak": 14, - "bpm_avg": 196.55979166666668, - "bpm_change": 10, - "scroll_change": 1, - "rhythm_complexity": 602, - "color_complexity": 0.007553145746370371 - }, - { - "songno": "1241", - "difficulty": "oni", - "note_count": 460, - "density_avg": 5.357854406130269, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002625198626415662 - }, - { - "songno": "1269", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.548521256931608, - "density_peak": 8, - "bpm_avg": 169.7357512953368, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0012765241259185696 - }, - { - "songno": "925", - "difficulty": "oni", - "note_count": 402, - "density_avg": 4.852367688022284, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 350, - "color_complexity": 0.0020141831385599505 - }, - { - "songno": "931", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.924268492805577, - "density_peak": 10, - "bpm_avg": 139.81105610561056, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 519, - "color_complexity": 0.005182473838445212 - }, - { - "songno": "702", - "difficulty": "oni", - "note_count": 827, - "density_avg": 7.370254629629629, - "density_peak": 15, - "bpm_avg": 307.0689238210399, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 744, - "color_complexity": 0.010723288557717443 - }, - { - "songno": "1296", - "difficulty": "oni", - "note_count": 599, - "density_avg": 5.878953107960741, - "density_peak": 14, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 530, - "color_complexity": 0.0047220630883788636 - }, - { - "songno": "1282", - "difficulty": "oni", - "note_count": 358, - "density_avg": 2.767731699836277, - "density_peak": 5, - "bpm_avg": 69.51117318435755, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 326, - "color_complexity": 0.0005071411899862813 - }, - { - "songno": "716", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.299784017278617, - "density_peak": 10, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0030277657896664446 - }, - { - "songno": "716", - "difficulty": "ura", - "note_count": 916, - "density_avg": 7.0161702127659575, - "density_peak": 16, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 746, - "color_complexity": 0.01051877614218145 - }, - { - "songno": "1447", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.366637706342311, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 546, - "color_complexity": 0.006275856002078183 - }, - { - "songno": "1321", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.743093922651934, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.00468243012509637 - }, - { - "songno": "879", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.804987298038817, - "density_peak": 13, - "bpm_avg": 164.54063926940913, - "bpm_change": 2, - "scroll_change": 13, - "rhythm_complexity": 780, - "color_complexity": 0.009281100492511754 - }, - { - "songno": "1335", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.9738489871086555, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.0024204684315892594 - }, - { - "songno": "39", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.2819332566168, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.006067056407061526 - }, - { - "songno": "851", - "difficulty": "oni", - "note_count": 1141, - "density_avg": 9.109780439121757, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1082, - "color_complexity": 0.01834452672849811 - }, - { - "songno": "689", - "difficulty": "oni", - "note_count": 558, - "density_avg": 4.79549436795995, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0020224802461305666 - }, - { - "songno": "689", - "difficulty": "ura", - "note_count": 940, - "density_avg": 7.842851356824625, - "density_peak": 14, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 900, - "color_complexity": 0.013325826574036262 - }, - { - "songno": "11", - "difficulty": "oni", - "note_count": 338, - "density_avg": 3.979100529100529, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.0008495953896165008 - }, - { - "songno": "845", - "difficulty": "oni", - "note_count": 632, - "density_avg": 4.764193168433451, - "density_peak": 13, - "bpm_avg": 187.29113924050634, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 582, - "color_complexity": 0.006825138251077646 - }, - { - "songno": "845", - "difficulty": "ura", - "note_count": 1075, - "density_avg": 8.097293056100431, - "density_peak": 20, - "bpm_avg": 206.55627906976744, - "bpm_change": 5, - "scroll_change": 72, - "rhythm_complexity": 968, - "color_complexity": 0.015127150063685387 - }, - { - "songno": "1309", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.473444228071022, - "density_peak": 9, - "bpm_avg": 145.52260162601624, - "bpm_change": 9, - "scroll_change": 11, - "rhythm_complexity": 507, - "color_complexity": 0.0025885878426359895 - }, - { - "songno": "1309", - "difficulty": "ura", - "note_count": 939, - "density_avg": 6.772973581443851, - "density_peak": 16, - "bpm_avg": 147.59201277955273, - "bpm_change": 10, - "scroll_change": 12, - "rhythm_complexity": 808, - "color_complexity": 0.012227426595713463 - }, - { - "songno": "110", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.871428571428571, - "density_peak": 14, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 702, - "color_complexity": 0.010021341608405222 - }, - { - "songno": "676", - "difficulty": "oni", - "note_count": 437, - "density_avg": 3.884444444444444, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0012223281719922372 - }, - { - "songno": "676", - "difficulty": "ura", - "note_count": 667, - "density_avg": 5.644001208824418, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.004799657806185799 - }, - { - "songno": "662", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.276267529665588, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.005613621807659088 - }, - { - "songno": "892", - "difficulty": "oni", - "note_count": 1109, - "density_avg": 8.24299599771298, - "density_peak": 15, - "bpm_avg": 265.04057709648333, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 1000, - "color_complexity": 0.017453126502744783 - }, - { - "songno": "886", - "difficulty": "oni", - "note_count": 349, - "density_avg": 3.0673191749591764, - "density_peak": 7, - "bpm_avg": 139.99272206303726, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0008546809154483517 - }, - { - "songno": "138", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.964285714285714, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.0052534405955924155 - }, - { - "songno": "1123", - "difficulty": "oni", - "note_count": 264, - "density_avg": 2.663677130044843, - "density_peak": 5, - "bpm_avg": 67.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.0004318712794196085 - }, - { - "songno": "1137", - "difficulty": "oni", - "note_count": 770, - "density_avg": 5.96590909090909, - "density_peak": 11, - "bpm_avg": 207.61363636363637, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 756, - "color_complexity": 0.0055544305555555035 - }, - { - "songno": "474", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.821248411934069, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.0022008104828447643 - }, - { - "songno": "312", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4820512820512826, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 265, - "color_complexity": 0.00043966209876543236 - }, - { - "songno": "306", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.377229080932785, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.004581235945311708 - }, - { - "songno": "460", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.4239677744209467, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 253, - "color_complexity": 0.0011835257969693843 - }, - { - "songno": "448", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.055865921787709, - "density_peak": 8, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 398, - "color_complexity": 0.0019192825468789222 - }, - { - "songno": "448", - "difficulty": "ura", - "note_count": 639, - "density_avg": 5.759329608938548, - "density_peak": 13, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 580, - "color_complexity": 0.005227028111131027 - }, - { - "songno": "338", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.713574660633484, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.008195218080555547 - }, - { - "songno": "310", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.914736164736165, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 562, - "color_complexity": 0.004902071568412837 - }, - { - "songno": "310", - "difficulty": "ura", - "note_count": 710, - "density_avg": 7.074895531983285, - "density_peak": 16, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.009715980223240543 - }, - { - "songno": "462", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.825484764542937, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 664, - "color_complexity": 0.005425073578737284 - }, - { - "songno": "304", - "difficulty": "oni", - "note_count": 656, - "density_avg": 4.984802431610943, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.0035966554705215378 - }, - { - "songno": "489", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.153253652058433, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 285, - "color_complexity": 0.0009261243454858258 - }, - { - "songno": "1109", - "difficulty": "oni", - "note_count": 778, - "density_avg": 5.1274600469468465, - "density_peak": 10, - "bpm_avg": 172.2172236503856, - "bpm_change": 4, - "scroll_change": 8, - "rhythm_complexity": 708, - "color_complexity": 0.005392071893761451 - }, - { - "songno": "1121", - "difficulty": "oni", - "note_count": 937, - "density_avg": 6.805207262761218, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.008424583068823538 - }, - { - "songno": "1121", - "difficulty": "ura", - "note_count": 1103, - "density_avg": 7.990295574918845, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 104, - "rhythm_complexity": 1014, - "color_complexity": 0.013420207514881202 - }, - { - "songno": "1135", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3827481256964647, - "density_peak": 7, - "bpm_avg": 139.6446575, - "bpm_change": 74, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0008244971762495653 - }, - { - "songno": "890", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.878893093491634, - "density_peak": 23, - "bpm_avg": 215.56481662591685, - "bpm_change": 3, - "scroll_change": 63, - "rhythm_complexity": 692, - "color_complexity": 0.007223462340697105 - }, - { - "songno": "648", - "difficulty": "oni", - "note_count": 425, - "density_avg": 3.8259835665300748, - "density_peak": 9, - "bpm_avg": 150.34588235294117, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 309, - "color_complexity": 0.0025337343700833877 - }, - { - "songno": "648", - "difficulty": "ura", - "note_count": 635, - "density_avg": 5.716469564109641, - "density_peak": 10, - "bpm_avg": 149.4, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 567, - "color_complexity": 0.004614408200336598 - }, - { - "songno": "884", - "difficulty": "oni", - "note_count": 296, - "density_avg": 2.6636248415716097, - "density_peak": 5, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 270, - "color_complexity": 0.00038172729747033797 - }, - { - "songno": "884", - "difficulty": "ura", - "note_count": 429, - "density_avg": 3.7884328358208954, - "density_peak": 8, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 406, - "color_complexity": 0.0013675083212830042 - }, - { - "songno": "112", - "difficulty": "oni", - "note_count": 658, - "density_avg": 5.253023532916294, - "density_peak": 12, - "bpm_avg": 150.69908814589667, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.0034954625712895386 - }, - { - "songno": "106", - "difficulty": "oni", - "note_count": 608, - "density_avg": 4.595680751173709, - "density_peak": 11, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.004163864524037761 - }, - { - "songno": "106", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.323102310231022, - "density_peak": 12, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.006499025666789507 - }, - { - "songno": "660", - "difficulty": "oni", - "note_count": 746, - "density_avg": 5.8419371458011335, - "density_peak": 11, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 681, - "color_complexity": 0.004872810662308923 - }, - { - "songno": "13", - "difficulty": "oni", - "note_count": 652, - "density_avg": 4.789964306753993, - "density_peak": 15, - "bpm_avg": 183.73312883435582, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 542, - "color_complexity": 0.0035775893385438058 - }, - { - "songno": "847", - "difficulty": "oni", - "note_count": 217, - "density_avg": 2.449382716049383, - "density_peak": 5, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 125, - "color_complexity": 0.00026225457549773254 - }, - { - "songno": "1323", - "difficulty": "oni", - "note_count": 678, - "density_avg": 4.792146596858639, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.00418911277686577 - }, - { - "songno": "1445", - "difficulty": "oni", - "note_count": 313, - "density_avg": 4.553788217747949, - "density_peak": 8, - "bpm_avg": 195.099999999999, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.001053518496089843 - }, - { - "songno": "1451", - "difficulty": "oni", - "note_count": 276, - "density_avg": 8, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 274, - "color_complexity": 0.0013629999999999988 - }, - { - "songno": "1451", - "difficulty": "ura", - "note_count": 334, - "density_avg": 9.657831325301206, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 332, - "color_complexity": 0.0029699999999999974 - }, - { - "songno": "1337", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.466033390903857, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 504, - "color_complexity": 0.0021567929970507274 - }, - { - "songno": "728", - "difficulty": "oni", - "note_count": 633, - "density_avg": 4.306122448979592, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 572, - "color_complexity": 0.003516002661600338 - }, - { - "songno": "1294", - "difficulty": "oni", - "note_count": 307, - "density_avg": 3.547011952191235, - "density_peak": 7, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 269, - "color_complexity": 0.0007957672930532399 - }, - { - "songno": "700", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.693309650680877, - "density_peak": 14, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 560, - "color_complexity": 0.009112909883393238 - }, - { - "songno": "700", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.220959147424512, - "density_peak": 15, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 795, - "color_complexity": 0.015829611055823777 - }, - { - "songno": "714", - "difficulty": "oni", - "note_count": 816, - "density_avg": 5.767393317306, - "density_peak": 11, - "bpm_avg": 127.99754901960785, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 679, - "color_complexity": 0.005419349720496814 - }, - { - "songno": "1280", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.208042328042328, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 259, - "color_complexity": 0.001251865558932129 - }, - { - "songno": "927", - "difficulty": "oni", - "note_count": 817, - "density_avg": 6.923728813559322, - "density_peak": 15, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.009524370009981157 - }, - { - "songno": "933", - "difficulty": "oni", - "note_count": 754, - "density_avg": 6.135792228429214, - "density_peak": 13, - "bpm_avg": 184.24403183023873, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 695, - "color_complexity": 0.006941030233059149 - }, - { - "songno": "1257", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "1243", - "difficulty": "oni", - "note_count": 172, - "density_avg": 2.2941943604574355, - "density_peak": 5, - "bpm_avg": 112.20731395348835, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 98, - "color_complexity": 0.00023208879038365057 - }, - { - "songno": "264", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.067368421052631, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.0013331775341541565 - }, - { - "songno": "264", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.386149003147953, - "density_peak": 17, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 931, - "color_complexity": 0.007155499542542846 - }, - { - "songno": "502", - "difficulty": "oni", - "note_count": 648, - "density_avg": 4.473912409542694, - "density_peak": 12, - "bpm_avg": 244.02237654320987, - "bpm_change": 19, - "scroll_change": 35, - "rhythm_complexity": 569, - "color_complexity": 0.0035150165391702073 - }, - { - "songno": "1096", - "difficulty": "oni", - "note_count": 411, - "density_avg": 3.2178797525898206, - "density_peak": 7, - "bpm_avg": 139.9713868613138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 276, - "color_complexity": 0.000493655691089331 - }, - { - "songno": "1082", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.614365411436541, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.0023097318888378746 - }, - { - "songno": "1082", - "difficulty": "ura", - "note_count": 448, - "density_avg": 4.0613668061366806, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 194, - "color_complexity": 0.0011019428908422544 - }, - { - "songno": "270", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.9876288659793815, - "density_peak": 11, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.004469801528064703 - }, - { - "songno": "270", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.711340206185566, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.004662824928395057 - }, - { - "songno": "1069", - "difficulty": "oni", - "note_count": 766, - "density_avg": 5.894855166450497, - "density_peak": 13, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.0068770676731100535 - }, - { - "songno": "1055", - "difficulty": "oni", - "note_count": 318, - "density_avg": 3.0607287088842856, - "density_peak": 6, - "bpm_avg": 118.64779874213836, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 297, - "color_complexity": 0.0003497159012737784 - }, - { - "songno": "1041", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.706870828030499, - "density_peak": 18, - "bpm_avg": 227.62018730489075, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 812, - "color_complexity": 0.012832984602094512 - }, - { - "songno": "1040", - "difficulty": "oni", - "note_count": 1085, - "density_avg": 8.242753623188408, - "density_peak": 18, - "bpm_avg": 213.5483870967742, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 965, - "color_complexity": 0.015968218300661995 - }, - { - "songno": "1054", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.720156555772994, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0025290626378815 - }, - { - "songno": "1068", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.863992707383774, - "density_peak": 14, - "bpm_avg": 255.12566844919786, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.005791964138130194 - }, - { - "songno": "517", - "difficulty": "oni", - "note_count": 814, - "density_avg": 6.397373929590866, - "density_peak": 14, - "bpm_avg": 181.8095823095823, - "bpm_change": 1, - "scroll_change": 32, - "rhythm_complexity": 749, - "color_complexity": 0.006798216927391931 - }, - { - "songno": "1083", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.861538461538461, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0029674998115468347 - }, - { - "songno": "265", - "difficulty": "oni", - "note_count": 1414, - "density_avg": 8.299364326843058, - "density_peak": 15, - "bpm_avg": 214.70616690240453, - "bpm_change": 25, - "scroll_change": 20, - "rhythm_complexity": 1331, - "color_complexity": 0.018173703563239794 - }, - { - "songno": "1097", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.7577276524644945, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001849195302450555 - }, - { - "songno": "1097", - "difficulty": "ura", - "note_count": 621, - "density_avg": 6.7275, - "density_peak": 18, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 549, - "color_complexity": 0.005603147077769407 - }, - { - "songno": "503", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.702320758171336, - "density_peak": 17, - "bpm_avg": 191.78205128205127, - "bpm_change": 19, - "scroll_change": 18, - "rhythm_complexity": 771, - "color_complexity": 0.014996263091616608 - }, - { - "songno": "259", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.331684981684981, - "density_peak": 13, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 689, - "color_complexity": 0.00801465114055647 - }, - { - "songno": "1242", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.888470112174466, - "density_peak": 12, - "bpm_avg": 168.0115107913669, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 670, - "color_complexity": 0.00495241123441391 - }, - { - "songno": "1256", - "difficulty": "oni", - "note_count": 611, - "density_avg": 4.783050375063426, - "density_peak": 13, - "bpm_avg": 198.7643207855974, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 554, - "color_complexity": 0.0027301159464871287 - }, - { - "songno": "1256", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.820404786723998, - "density_peak": 16, - "bpm_avg": 199.37337337337337, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 914, - "color_complexity": 0.016703133633069436 - }, - { - "songno": "932", - "difficulty": "oni", - "note_count": 618, - "density_avg": 4.336842105263158, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 523, - "color_complexity": 0.002924875537246298 - }, - { - "songno": "926", - "difficulty": "oni", - "note_count": 379, - "density_avg": 4.4018583042973285, - "density_peak": 9, - "bpm_avg": 195.778364116095, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 344, - "color_complexity": 0.0024355778533635616 - }, - { - "songno": "926", - "difficulty": "ura", - "note_count": 486, - "density_avg": 5.644599303135889, - "density_peak": 14, - "bpm_avg": 196.70781893004116, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 473, - "color_complexity": 0.003387862559838752 - }, - { - "songno": "1281", - "difficulty": "oni", - "note_count": 227, - "density_avg": 2.445791245791246, - "density_peak": 5, - "bpm_avg": 64, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0002404172203017832 - }, - { - "songno": "715", - "difficulty": "oni", - "note_count": 868, - "density_avg": 6.799333333333333, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.01134628875880108 - }, - { - "songno": "701", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.786726323639075, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 752, - "color_complexity": 0.005823289006124861 - }, - { - "songno": "1295", - "difficulty": "oni", - "note_count": 189, - "density_avg": 3.0687679083094554, - "density_peak": 6, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 164, - "color_complexity": 0.00026016401427469103 - }, - { - "songno": "1295", - "difficulty": "ura", - "note_count": 452, - "density_avg": 6.969614512471655, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 394, - "color_complexity": 0.004021272310681372 - }, - { - "songno": "1450", - "difficulty": "oni", - "note_count": 208, - "density_avg": 6.540880503144654, - "density_peak": 10, - "bpm_avg": 184.6153846153846, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 206, - "color_complexity": 0.0015812777777777787 - }, - { - "songno": "1450", - "difficulty": "ura", - "note_count": 356, - "density_avg": 11.142410015649453, - "density_peak": 21, - "bpm_avg": 198.87640449438203, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.003905555555555551 - }, - { - "songno": "1336", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.838721804511278, - "density_peak": 9, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0024054803628501026 - }, - { - "songno": "1322", - "difficulty": "oni", - "note_count": 796, - "density_avg": 6.39871382636656, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007560471510146754 - }, - { - "songno": "846", - "difficulty": "oni", - "note_count": 1075, - "density_avg": 7.6326606875934235, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 1028, - "color_complexity": 0.012019652202160877 - }, - { - "songno": "852", - "difficulty": "oni", - "note_count": 646, - "density_avg": 6.333332008926779, - "density_peak": 11, - "bpm_avg": 150.0066563467492, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.005626239483722758 - }, - { - "songno": "12", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.996341168568955, - "density_peak": 13, - "bpm_avg": 166.52425044091711, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 414, - "color_complexity": 0.004864000452060178 - }, - { - "songno": "107", - "difficulty": "oni", - "note_count": 557, - "density_avg": 5.21118234134049, - "density_peak": 11, - "bpm_avg": 182.99942549371633, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.002788441409346582 - }, - { - "songno": "661", - "difficulty": "oni", - "note_count": 343, - "density_avg": 4.0077412373195, - "density_peak": 9, - "bpm_avg": 174.98749271137027, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 295, - "color_complexity": 0.0018034653512230387 - }, - { - "songno": "675", - "difficulty": "oni", - "note_count": 675, - "density_avg": 5.425038639876353, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 650, - "color_complexity": 0.005424337539556581 - }, - { - "songno": "113", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.348435814455232, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 520, - "color_complexity": 0.004471486876451478 - }, - { - "songno": "649", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.002106741573034, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005403401206080654 - }, - { - "songno": "891", - "difficulty": "oni", - "note_count": 637, - "density_avg": 5.5142600574712635, - "density_peak": 13, - "bpm_avg": 120.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 578, - "color_complexity": 0.004390081260147561 - }, - { - "songno": "1134", - "difficulty": "oni", - "note_count": 579, - "density_avg": 4.92947912277412, - "density_peak": 14, - "bpm_avg": 245.72967184801368, - "bpm_change": 43, - "scroll_change": 53, - "rhythm_complexity": 506, - "color_complexity": 0.0037710761659396357 - }, - { - "songno": "1120", - "difficulty": "oni", - "note_count": 569, - "density_avg": 3.848777688254768, - "density_peak": 13, - "bpm_avg": 224.25061511423542, - "bpm_change": 19, - "scroll_change": 16, - "rhythm_complexity": 424, - "color_complexity": 0.002806086031184233 - }, - { - "songno": "1120", - "difficulty": "ura", - "note_count": 1316, - "density_avg": 8.672958041803211, - "density_peak": 19, - "bpm_avg": 230.7918693009118, - "bpm_change": 31, - "scroll_change": 20, - "rhythm_complexity": 1140, - "color_complexity": 0.027594331254300268 - }, - { - "songno": "1108", - "difficulty": "oni", - "note_count": 994, - "density_avg": 7.341574428318002, - "density_peak": 17, - "bpm_avg": 189.52328973843058, - "bpm_change": 4, - "scroll_change": 3, - "rhythm_complexity": 895, - "color_complexity": 0.01436886916690537 - }, - { - "songno": "488", - "difficulty": "oni", - "note_count": 721, - "density_avg": 5.4534740545294635, - "density_peak": 11, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.005557804243332835 - }, - { - "songno": "463", - "difficulty": "oni", - "note_count": 1262, - "density_avg": 10.51228654727197, - "density_peak": 21, - "bpm_avg": 289.3502377179081, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1206, - "color_complexity": 0.02688671604938281 - }, - { - "songno": "305", - "difficulty": "oni", - "note_count": 404, - "density_avg": 2.9793510324483776, - "density_peak": 7, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 334, - "color_complexity": 0.0011269350488797814 - }, - { - "songno": "311", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.8063881238942265, - "density_peak": 11, - "bpm_avg": 139.97432432432433, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.0036900919925151624 - }, - { - "songno": "477", - "difficulty": "oni", - "note_count": 823, - "density_avg": 7.382794117647059, - "density_peak": 16, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007441174932292236 - }, - { - "songno": "339", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.7045606595527065, - "density_peak": 7, - "bpm_avg": 203.93999999999994, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 195, - "color_complexity": 0.0013393247619027753 - }, - { - "songno": "473", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.60376647834275, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 645, - "color_complexity": 0.00546303918146272 - }, - { - "songno": "315", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.775949367088607, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002333632622222223 - }, - { - "songno": "301", - "difficulty": "oni", - "note_count": 635, - "density_avg": 4.890992167101827, - "density_peak": 9, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.0024983523777777814 - }, - { - "songno": "301", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.021614583333334, - "density_peak": 14, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 880, - "color_complexity": 0.008932103429302611 - }, - { - "songno": "467", - "difficulty": "oni", - "note_count": 282, - "density_avg": 3.4825301204819277, - "density_peak": 9, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0013235945910575755 - }, - { - "songno": "1124", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.5416666666666665, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 199, - "color_complexity": 0.0006831732207862458 - }, - { - "songno": "1130", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.805547663494926, - "density_peak": 13, - "bpm_avg": 129.99072072072084, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.0020258420005310647 - }, - { - "songno": "1118", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.732288946910357, - "density_peak": 7, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 288, - "color_complexity": 0.0007325935245541832 - }, - { - "songno": "498", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.275883838383838, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 400, - "color_complexity": 0.003376567696496029 - }, - { - "songno": "117", - "difficulty": "oni", - "note_count": 535, - "density_avg": 5.356246848066588, - "density_peak": 11, - "bpm_avg": 251.99521495327105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 462, - "color_complexity": 0.004222161853333101 - }, - { - "songno": "671", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.450273224043716, - "density_peak": 8, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0012054266683730259 - }, - { - "songno": "671", - "difficulty": "ura", - "note_count": 677, - "density_avg": 5.697158469945356, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 605, - "color_complexity": 0.005413294539821419 - }, - { - "songno": "103", - "difficulty": "oni", - "note_count": 610, - "density_avg": 6.009514854555188, - "density_peak": 13, - "bpm_avg": 154.01629508196717, - "bpm_change": 16, - "scroll_change": 1, - "rhythm_complexity": 477, - "color_complexity": 0.005826070741159816 - }, - { - "songno": "895", - "difficulty": "oni", - "note_count": 173, - "density_avg": 2.6657026360705482, - "density_peak": 5, - "bpm_avg": 124.72254335260115, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 150, - "color_complexity": 0.00019134521669944668 - }, - { - "songno": "881", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.192570869990225, - "density_peak": 11, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 598, - "color_complexity": 0.0057253069467954314 - }, - { - "songno": "881", - "difficulty": "ura", - "note_count": 1072, - "density_avg": 8.383186705767352, - "density_peak": 14, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 984, - "color_complexity": 0.012190500794968669 - }, - { - "songno": "1440", - "difficulty": "oni", - "note_count": 517, - "density_avg": 4.226158038147139, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 482, - "color_complexity": 0.0014626288888888938 - }, - { - "songno": "1440", - "difficulty": "ura", - "note_count": 783, - "density_avg": 6.400544959128065, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 707, - "color_complexity": 0.008214471133786864 - }, - { - "songno": "1326", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.7503373819163293, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 348, - "color_complexity": 0.0018581379520222529 - }, - { - "songno": "1332", - "difficulty": "oni", - "note_count": 313, - "density_avg": 3.2317886178861785, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 283, - "color_complexity": 0.0008785929815157734 - }, - { - "songno": "16", - "difficulty": "oni", - "note_count": 1158, - "density_avg": 7.917948717948717, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 1144, - "color_complexity": 0.018309384984222153 - }, - { - "songno": "856", - "difficulty": "oni", - "note_count": 1069, - "density_avg": 8.325545171339565, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 26, - "rhythm_complexity": 1040, - "color_complexity": 0.016318527571019367 - }, - { - "songno": "856", - "difficulty": "ura", - "note_count": 1217, - "density_avg": 9.390432098765432, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 61, - "rhythm_complexity": 1138, - "color_complexity": 0.02326034249281563 - }, - { - "songno": "842", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4280104712041886, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005455513520408136 - }, - { - "songno": "842", - "difficulty": "ura", - "note_count": 400, - "density_avg": 4.712041884816754, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0022741689577120945 - }, - { - "songno": "705", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.421748544910672, - "density_peak": 11, - "bpm_avg": 159.99186011904925, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 640, - "color_complexity": 0.0043446264976376905 - }, - { - "songno": "711", - "difficulty": "oni", - "note_count": 329, - "density_avg": 3.3989155251141554, - "density_peak": 9, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.001112275485585283 - }, - { - "songno": "711", - "difficulty": "ura", - "note_count": 579, - "density_avg": 5.981678082191781, - "density_peak": 11, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004185147433958592 - }, - { - "songno": "1285", - "difficulty": "oni", - "note_count": 262, - "density_avg": 2.8172043010752685, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.00034787009731670446 - }, - { - "songno": "739", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.305287587517423, - "density_peak": 13, - "bpm_avg": 145.00850456621015, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 827, - "color_complexity": 0.006125403478426269 - }, - { - "songno": "1252", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.505896730068671, - "density_peak": 8, - "bpm_avg": 121.04021428571414, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0013462417466670125 - }, - { - "songno": "1246", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.708483754512635, - "density_peak": 11, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005117602631330323 - }, - { - "songno": "922", - "difficulty": "oni", - "note_count": 653, - "density_avg": 4.737033006891549, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 585, - "color_complexity": 0.0023023720266436647 - }, - { - "songno": "936", - "difficulty": "oni", - "note_count": 165, - "density_avg": 4.2076502732240435, - "density_peak": 8, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 151, - "color_complexity": 0.0008537801738766207 - }, - { - "songno": "936", - "difficulty": "ura", - "note_count": 298, - "density_avg": 7.436720142602495, - "density_peak": 12, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.0031363811111111174 - }, - { - "songno": "507", - "difficulty": "oni", - "note_count": 713, - "density_avg": 6.050690493928884, - "density_peak": 11, - "bpm_avg": 162.96774193548387, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 688, - "color_complexity": 0.005449118371276925 - }, - { - "songno": "507", - "difficulty": "ura", - "note_count": 820, - "density_avg": 6.958718380114565, - "density_peak": 16, - "bpm_avg": 163.04634146341462, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 786, - "color_complexity": 0.008775243848637624 - }, - { - "songno": "261", - "difficulty": "oni", - "note_count": 596, - "density_avg": 4.68339670468948, - "density_peak": 10, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 448, - "color_complexity": 0.0032035497958133943 - }, - { - "songno": "275", - "difficulty": "oni", - "note_count": 471, - "density_avg": 3.7983870967741935, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0014629954324407563 - }, - { - "songno": "275", - "difficulty": "ura", - "note_count": 579, - "density_avg": 4.669354838709678, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032396907410827207 - }, - { - "songno": "1087", - "difficulty": "oni", - "note_count": 432, - "density_avg": 4.593417721518987, - "density_peak": 8, - "bpm_avg": 126, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0009177726570637099 - }, - { - "songno": "513", - "difficulty": "oni", - "note_count": 902, - "density_avg": 8.046009389671362, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.00931081721731946 - }, - { - "songno": "1050", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.37177643444115, - "density_peak": 13, - "bpm_avg": 254.4884287454324, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 681, - "color_complexity": 0.00750678215702546 - }, - { - "songno": "1044", - "difficulty": "oni", - "note_count": 354, - "density_avg": 4.137662337662339, - "density_peak": 9, - "bpm_avg": 134.8093220338983, - "bpm_change": 2, - "scroll_change": 10, - "rhythm_complexity": 299, - "color_complexity": 0.001672735809948981 - }, - { - "songno": "1078", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.1607511737089204, - "density_peak": 8, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.001620308782656562 - }, - { - "songno": "1079", - "difficulty": "oni", - "note_count": 720, - "density_avg": 4.84370257966616, - "density_peak": 8, - "bpm_avg": 152.2111111111111, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.003269103869082218 - }, - { - "songno": "1045", - "difficulty": "oni", - "note_count": 867, - "density_avg": 6.920790960247057, - "density_peak": 12, - "bpm_avg": 194.20876585928488, - "bpm_change": 16, - "scroll_change": 16, - "rhythm_complexity": 773, - "color_complexity": 0.008916370348287475 - }, - { - "songno": "1051", - "difficulty": "oni", - "note_count": 749, - "density_avg": 7.204677320222285, - "density_peak": 15, - "bpm_avg": 224.78480640854474, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 699, - "color_complexity": 0.00986952735460736 - }, - { - "songno": "248", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.8250728862973755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.005878941111111095 - }, - { - "songno": "248", - "difficulty": "ura", - "note_count": 942, - "density_avg": 8.215116279069766, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 891, - "color_complexity": 0.012005669489796008 - }, - { - "songno": "274", - "difficulty": "oni", - "note_count": 654, - "density_avg": 4.980907668231612, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.003646207172941537 - }, - { - "songno": "274", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.826291079812206, - "density_peak": 9, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.005340539587654338 - }, - { - "songno": "512", - "difficulty": "oni", - "note_count": 456, - "density_avg": 4.061068702290077, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0020193846947050348 - }, - { - "songno": "1086", - "difficulty": "oni", - "note_count": 913, - "density_avg": 8.151785714285714, - "density_peak": 17, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 850, - "color_complexity": 0.012738948317727986 - }, - { - "songno": "1092", - "difficulty": "oni", - "note_count": 824, - "density_avg": 5.540486409155937, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 802, - "color_complexity": 0.00375172717596914 - }, - { - "songno": "506", - "difficulty": "oni", - "note_count": 250, - "density_avg": 3.7887229774905276, - "density_peak": 8, - "bpm_avg": 139.016, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 218, - "color_complexity": 0.0010185472151319195 - }, - { - "songno": "506", - "difficulty": "ura", - "note_count": 348, - "density_avg": 5.022071307300509, - "density_peak": 9, - "bpm_avg": 138.16666666666666, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 314, - "color_complexity": 0.0018775119784505694 - }, - { - "songno": "260", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.701195219123506, - "density_peak": 10, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 460, - "color_complexity": 0.0031646464661656587 - }, - { - "songno": "937", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.756818181818183, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.0026147915360533627 - }, - { - "songno": "1247", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.199855530614306, - "density_peak": 15, - "bpm_avg": 117.65747800586507, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 590, - "color_complexity": 0.0072310435349687225 - }, - { - "songno": "738", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.632268632268633, - "density_peak": 12, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0035795386094999554 - }, - { - "songno": "1284", - "difficulty": "oni", - "note_count": 334, - "density_avg": 3.595138888888889, - "density_peak": 7, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 318, - "color_complexity": 0.0010574817635116592 - }, - { - "songno": "704", - "difficulty": "oni", - "note_count": 620, - "density_avg": 4.860627177700349, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 491, - "color_complexity": 0.0030628671679145195 - }, - { - "songno": "843", - "difficulty": "oni", - "note_count": 501, - "density_avg": 4.865258557902404, - "density_peak": 15, - "bpm_avg": 127.55738522954091, - "bpm_change": 27, - "scroll_change": 86, - "rhythm_complexity": 430, - "color_complexity": 0.004476905848974846 - }, - { - "songno": "857", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.366604798240187, - "density_peak": 15, - "bpm_avg": 159.30906389301634, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 562, - "color_complexity": 0.00426951634150544 - }, - { - "songno": "17", - "difficulty": "oni", - "note_count": 700, - "density_avg": 5.400534436559395, - "density_peak": 11, - "bpm_avg": 144.20714285714286, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.00472643746528474 - }, - { - "songno": "1333", - "difficulty": "oni", - "note_count": 172, - "density_avg": 1.5733333333333333, - "density_peak": 4, - "bpm_avg": 59, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00009861868255332103 - }, - { - "songno": "1455", - "difficulty": "oni", - "note_count": 503, - "density_avg": 5.432282545242265, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.00321445135785848 - }, - { - "songno": "1455", - "difficulty": "ura", - "note_count": 766, - "density_avg": 8.047132311186827, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.009616679598199184 - }, - { - "songno": "1441", - "difficulty": "oni", - "note_count": 372, - "density_avg": 5.264150943396226, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 268, - "color_complexity": 0.0019842107429846956 - }, - { - "songno": "1327", - "difficulty": "oni", - "note_count": 395, - "density_avg": 4.839032274147445, - "density_peak": 8, - "bpm_avg": 147.0087088607595, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.001427526775067218 - }, - { - "songno": "1327", - "difficulty": "ura", - "note_count": 512, - "density_avg": 6.22052515086054, - "density_peak": 9, - "bpm_avg": 147.0083984375, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 469, - "color_complexity": 0.004347462507503395 - }, - { - "songno": "880", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.259266555534577, - "density_peak": 12, - "bpm_avg": 170.78512968299415, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 664, - "color_complexity": 0.0054895389038104436 - }, - { - "songno": "894", - "difficulty": "oni", - "note_count": 323, - "density_avg": 2.367926689576174, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005058558384247332 - }, - { - "songno": "116", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.164847811117171, - "density_peak": 9, - "bpm_avg": 170.1988493150685, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 331, - "color_complexity": 0.0016319783493619318 - }, - { - "songno": "670", - "difficulty": "oni", - "note_count": 690, - "density_avg": 4.890907753925259, - "density_peak": 14, - "bpm_avg": 169.8479565217385, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 608, - "color_complexity": 0.005160122644245964 - }, - { - "songno": "499", - "difficulty": "oni", - "note_count": 936, - "density_avg": 6.872319807589215, - "density_peak": 13, - "bpm_avg": 193.30128205128204, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 833, - "color_complexity": 0.011851530953352691 - }, - { - "songno": "1119", - "difficulty": "oni", - "note_count": 562, - "density_avg": 4.974161313347609, - "density_peak": 9, - "bpm_avg": 248, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.00358868590492983 - }, - { - "songno": "1131", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.519946984758119, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0014665661983364843 - }, - { - "songno": "1131", - "difficulty": "ura", - "note_count": 662, - "density_avg": 5.594954273099968, - "density_peak": 10, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.004430385128495827 - }, - { - "songno": "1125", - "difficulty": "oni", - "note_count": 397, - "density_avg": 2.8931070158422245, - "density_peak": 6, - "bpm_avg": 98, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 230, - "color_complexity": 0.0008972601216066811 - }, - { - "songno": "300", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.988133764832794, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.003133776137437903 - }, - { - "songno": "466", - "difficulty": "oni", - "note_count": 384, - "density_avg": 4.708045977011494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.0024928036264185976 - }, - { - "songno": "472", - "difficulty": "oni", - "note_count": 670, - "density_avg": 5.787793427230047, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 636, - "color_complexity": 0.005590136340236864 - }, - { - "songno": "314", - "difficulty": "oni", - "note_count": 293, - "density_avg": 2.5320987654320986, - "density_peak": 6, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 273, - "color_complexity": 0.00022264120762903998 - }, - { - "songno": "302", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.484084143905007, - "density_peak": 11, - "bpm_avg": 143.44724999999937, - "bpm_change": 12, - "scroll_change": 4, - "rhythm_complexity": 404, - "color_complexity": 0.004238094429688095 - }, - { - "songno": "316", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.634870799426448, - "density_peak": 9, - "bpm_avg": 130.00513821138208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0028332665654973027 - }, - { - "songno": "470", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.6381838622223714, - "density_peak": 10, - "bpm_avg": 150.00764227642276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.00177708789060178 - }, - { - "songno": "470", - "difficulty": "ura", - "note_count": 822, - "density_avg": 6.199328674385023, - "density_peak": 11, - "bpm_avg": 150.00743309002434, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 750, - "color_complexity": 0.007301105632067015 - }, - { - "songno": "458", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.355463347164592, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 566, - "color_complexity": 0.0028292610768898946 - }, - { - "songno": "1133", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.484926692360691, - "density_peak": 10, - "bpm_avg": 194.03649842271298, - "bpm_change": 4, - "scroll_change": 7, - "rhythm_complexity": 592, - "color_complexity": 0.0035904439029338236 - }, - { - "songno": "1133", - "difficulty": "ura", - "note_count": 929, - "density_avg": 6.571761667512748, - "density_peak": 13, - "bpm_avg": 194.36912809472557, - "bpm_change": 5, - "scroll_change": 22, - "rhythm_complexity": 810, - "color_complexity": 0.009096481039119107 - }, - { - "songno": "1127", - "difficulty": "oni", - "note_count": 524, - "density_avg": 6.726075268817204, - "density_peak": 11, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.004093829722877772 - }, - { - "songno": "100", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.773836439104744, - "density_peak": 11, - "bpm_avg": 149.95562130177518, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 476, - "color_complexity": 0.004756157454311307 - }, - { - "songno": "100", - "difficulty": "ura", - "note_count": 659, - "density_avg": 6.107286772260961, - "density_peak": 11, - "bpm_avg": 149.99235204855847, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 583, - "color_complexity": 0.0054523159032933855 - }, - { - "songno": "666", - "difficulty": "oni", - "note_count": 639, - "density_avg": 7.153584905660376, - "density_peak": 11, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 615, - "color_complexity": 0.008336757969547338 - }, - { - "songno": "672", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.8876166242578454, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0016144455838139153 - }, - { - "songno": "114", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.051903114186851, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 556, - "color_complexity": 0.0040498389003758625 - }, - { - "songno": "882", - "difficulty": "oni", - "note_count": 352, - "density_avg": 3.282393876130828, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0005044328294896559 - }, - { - "songno": "882", - "difficulty": "ura", - "note_count": 569, - "density_avg": 5.305915100904662, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.0024828088615125757 - }, - { - "songno": "896", - "difficulty": "oni", - "note_count": 940, - "density_avg": 7.560814214917917, - "density_peak": 20, - "bpm_avg": 247.38173404255332, - "bpm_change": 11, - "scroll_change": 24, - "rhythm_complexity": 842, - "color_complexity": 0.011939282275545976 - }, - { - "songno": "128", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.034374250580236, - "density_peak": 13, - "bpm_avg": 173.99227064220185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 768, - "color_complexity": 0.008631030824992465 - }, - { - "songno": "1457", - "difficulty": "oni", - "note_count": 622, - "density_avg": 6.269258459323255, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.004413508641975329 - }, - { - "songno": "1331", - "difficulty": "oni", - "note_count": 211, - "density_avg": 2.4981785063752278, - "density_peak": 5, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0003341390948416037 - }, - { - "songno": "1325", - "difficulty": "oni", - "note_count": 714, - "density_avg": 7.193954659949623, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.009706423538012446 - }, - { - "songno": "869", - "difficulty": "oni", - "note_count": 984, - "density_avg": 7.46041446388104, - "density_peak": 18, - "bpm_avg": 290.0498780487808, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 842, - "color_complexity": 0.01298671248501483 - }, - { - "songno": "699", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.21127385707945, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 909, - "color_complexity": 0.014662068882383061 - }, - { - "songno": "1319", - "difficulty": "oni", - "note_count": 719, - "density_avg": 4.938260936923714, - "density_peak": 13, - "bpm_avg": 235.326842837274, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 627, - "color_complexity": 0.0066211093414901105 - }, - { - "songno": "1319", - "difficulty": "ura", - "note_count": 1337, - "density_avg": 8.929103950483837, - "density_peak": 18, - "bpm_avg": 234.69691847419597, - "bpm_change": 19, - "scroll_change": 71, - "rhythm_complexity": 1222, - "color_complexity": 0.0210652104195674 - }, - { - "songno": "15", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.108978873239437, - "density_peak": 11, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.004710197230383599 - }, - { - "songno": "15", - "difficulty": "ura", - "note_count": 932, - "density_avg": 8.368309859154929, - "density_peak": 16, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.013968603750755133 - }, - { - "songno": "855", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.34520037278658, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 357, - "color_complexity": 0.002449154203014268 - }, - { - "songno": "1286", - "difficulty": "oni", - "note_count": 306, - "density_avg": 2.8570024570024573, - "density_peak": 6, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007984180708171067 - }, - { - "songno": "1292", - "difficulty": "oni", - "note_count": 472, - "density_avg": 3.973976272483735, - "density_peak": 8, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 402, - "color_complexity": 0.0017641762654321013 - }, - { - "songno": "706", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.8145789101203116, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 316, - "color_complexity": 0.002161003383950621 - }, - { - "songno": "909", - "difficulty": "oni", - "note_count": 439, - "density_avg": 5.226190476190476, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0020473420061728406 - }, - { - "songno": "1245", - "difficulty": "oni", - "note_count": 632, - "density_avg": 5.166715328467153, - "density_peak": 11, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 562, - "color_complexity": 0.004657912686069128 - }, - { - "songno": "1251", - "difficulty": "oni", - "note_count": 403, - "density_avg": 4.257601239064866, - "density_peak": 8, - "bpm_avg": 164.69370967741918, - "bpm_change": 39, - "scroll_change": 1, - "rhythm_complexity": 278, - "color_complexity": 0.0020379168461830727 - }, - { - "songno": "1251", - "difficulty": "ura", - "note_count": 645, - "density_avg": 6.814274935972303, - "density_peak": 11, - "bpm_avg": 164.84160620155023, - "bpm_change": 41, - "scroll_change": 1, - "rhythm_complexity": 556, - "color_complexity": 0.0056928150574618456 - }, - { - "songno": "935", - "difficulty": "oni", - "note_count": 732, - "density_avg": 5.140899818980971, - "density_peak": 12, - "bpm_avg": 152.56129781420765, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 564, - "color_complexity": 0.0049699034012006755 - }, - { - "songno": "1279", - "difficulty": "oni", - "note_count": 880, - "density_avg": 6.1145080600333515, - "density_peak": 13, - "bpm_avg": 249.85795454545453, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.008094883577688882 - }, - { - "songno": "921", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.1525, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 266, - "color_complexity": 0.001086549577416047 - }, - { - "songno": "1084", - "difficulty": "oni", - "note_count": 435, - "density_avg": 3.0948616600790513, - "density_peak": 8, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 342, - "color_complexity": 0.0011149488297520637 - }, - { - "songno": "1084", - "difficulty": "ura", - "note_count": 664, - "density_avg": 4.705511811023621, - "density_peak": 10, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 577, - "color_complexity": 0.003746192557562716 - }, - { - "songno": "510", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.914560439560439, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.004385576756741015 - }, - { - "songno": "276", - "difficulty": "oni", - "note_count": 572, - "density_avg": 4.707818930041152, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.002875670864197522 - }, - { - "songno": "276", - "difficulty": "ura", - "note_count": 700, - "density_avg": 5.6811594202898545, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.003454018737997262 - }, - { - "songno": "262", - "difficulty": "oni", - "note_count": 589, - "density_avg": 4.016704921825748, - "density_peak": 9, - "bpm_avg": 111.04259762309044, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 463, - "color_complexity": 0.0020354118158598363 - }, - { - "songno": "504", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.688226103538581, - "density_peak": 12, - "bpm_avg": 164.96924705882358, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 670, - "color_complexity": 0.003208694740082672 - }, - { - "songno": "504", - "difficulty": "ura", - "note_count": 1100, - "density_avg": 7.347823274049404, - "density_peak": 14, - "bpm_avg": 164.97976363636315, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 1000, - "color_complexity": 0.0132445012548659 - }, - { - "songno": "1090", - "difficulty": "oni", - "note_count": 243, - "density_avg": 2.6878923766816145, - "density_peak": 6, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 134, - "color_complexity": 0.00043362500626337907 - }, - { - "songno": "538", - "difficulty": "oni", - "note_count": 945, - "density_avg": 7.538560738174717, - "density_peak": 21, - "bpm_avg": 200.02753439153435, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 893, - "color_complexity": 0.012391606183705058 - }, - { - "songno": "1047", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.228545618789521, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.0070913098305485 - }, - { - "songno": "1053", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.9206740498178747, - "density_peak": 9, - "bpm_avg": 183.6036036036036, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 481, - "color_complexity": 0.0018931107561911255 - }, - { - "songno": "1053", - "difficulty": "ura", - "note_count": 1099, - "density_avg": 7.763641046396115, - "density_peak": 14, - "bpm_avg": 182.57506824385806, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 972, - "color_complexity": 0.016074045730421618 - }, - { - "songno": "288", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.403861003861005, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 749, - "color_complexity": 0.01046521247109798 - }, - { - "songno": "1052", - "difficulty": "oni", - "note_count": 742, - "density_avg": 5.278884462151394, - "density_peak": 13, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 639, - "color_complexity": 0.00550097144024776 - }, - { - "songno": "1052", - "difficulty": "ura", - "note_count": 1176, - "density_avg": 8.045977011494253, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 1093, - "color_complexity": 0.02131716656353882 - }, - { - "songno": "1046", - "difficulty": "oni", - "note_count": 541, - "density_avg": 6.102650874224478, - "density_peak": 13, - "bpm_avg": 199.72273567467653, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.00450128330359733 - }, - { - "songno": "1046", - "difficulty": "ura", - "note_count": 621, - "density_avg": 7.73109243697479, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 604, - "color_complexity": 0.006374884460034465 - }, - { - "songno": "539", - "difficulty": "oni", - "note_count": 792, - "density_avg": 5.675570032573289, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 757, - "color_complexity": 0.006197943335459175 - }, - { - "songno": "539", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.158957654723126, - "density_peak": 14, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 937, - "color_complexity": 0.010304696111111135 - }, - { - "songno": "1091", - "difficulty": "oni", - "note_count": 274, - "density_avg": 3.233981841763943, - "density_peak": 8, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.0003489265802469149 - }, - { - "songno": "505", - "difficulty": "oni", - "note_count": 728, - "density_avg": 4.817204301075269, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.0024496518686301797 - }, - { - "songno": "511", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.973861386138614, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.0015197719062607078 - }, - { - "songno": "511", - "difficulty": "ura", - "note_count": 546, - "density_avg": 6.270891089108911, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.005743839326187316 - }, - { - "songno": "1085", - "difficulty": "oni", - "note_count": 1138, - "density_avg": 9.204767986377183, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1088, - "color_complexity": 0.014703381743512217 - }, - { - "songno": "277", - "difficulty": "oni", - "note_count": 445, - "density_avg": 3.6341917283048284, - "density_peak": 8, - "bpm_avg": 171.99826966292133, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0020813195040302883 - }, - { - "songno": "277", - "difficulty": "ura", - "note_count": 585, - "density_avg": 4.770737372264775, - "density_peak": 11, - "bpm_avg": 171.99473504273504, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.005060615261845435 - }, - { - "songno": "920", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.421110242376857, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004355153614285699 - }, - { - "songno": "920", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.717904612978889, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 825, - "color_complexity": 0.009295798702040838 - }, - { - "songno": "1278", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.283296371223447, - "density_peak": 19, - "bpm_avg": 231.9844375, - "bpm_change": 71, - "scroll_change": 187, - "rhythm_complexity": 847, - "color_complexity": 0.012190425640302392 - }, - { - "songno": "934", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.636731150793651, - "density_peak": 14, - "bpm_avg": 183.5, - "bpm_change": 0, - "scroll_change": 35, - "rhythm_complexity": 747, - "color_complexity": 0.010298519636411839 - }, - { - "songno": "1250", - "difficulty": "oni", - "note_count": 698, - "density_avg": 6.156917363045497, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006670612366998688 - }, - { - "songno": "1244", - "difficulty": "oni", - "note_count": 326, - "density_avg": 4.032552083333333, - "density_peak": 7, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.001092109461731194 - }, - { - "songno": "908", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.542407206174336, - "density_peak": 13, - "bpm_avg": 184.85773480662982, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 701, - "color_complexity": 0.005314764044482667 - }, - { - "songno": "707", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.883967391304348, - "density_peak": 12, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007304416946362079 - }, - { - "songno": "1293", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.611299435028249, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.0011822022666666638 - }, - { - "songno": "1287", - "difficulty": "oni", - "note_count": 304, - "density_avg": 3.5625, - "density_peak": 6, - "bpm_avg": 90, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 277, - "color_complexity": 0.000738419722991691 - }, - { - "songno": "713", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.952755905511811, - "density_peak": 12, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 708, - "color_complexity": 0.007394549478840226 - }, - { - "songno": "14", - "difficulty": "oni", - "note_count": 455, - "density_avg": 3.8595119490553125, - "density_peak": 7, - "bpm_avg": 128.00272527472532, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0014407419023724298 - }, - { - "songno": "1318", - "difficulty": "oni", - "note_count": 905, - "density_avg": 6.6112012987013, - "density_peak": 14, - "bpm_avg": 259.4088397790055, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 844, - "color_complexity": 0.007820317021683725 - }, - { - "songno": "1318", - "difficulty": "ura", - "note_count": 1159, - "density_avg": 8.46672077922078, - "density_peak": 18, - "bpm_avg": 256.48835202761, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 1094, - "color_complexity": 0.017110096093883732 - }, - { - "songno": "698", - "difficulty": "oni", - "note_count": 1194, - "density_avg": 8.223137475666464, - "density_peak": 16, - "bpm_avg": 199.92463986599665, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 1103, - "color_complexity": 0.018206996204650418 - }, - { - "songno": "868", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.151627906976745, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 859, - "color_complexity": 0.013822264805620656 - }, - { - "songno": "868", - "difficulty": "ura", - "note_count": 1305, - "density_avg": 9.711627906976744, - "density_peak": 25, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 120, - "rhythm_complexity": 1246, - "color_complexity": 0.019582738634989584 - }, - { - "songno": "1324", - "difficulty": "oni", - "note_count": 811, - "density_avg": 6.322102104295747, - "density_peak": 16, - "bpm_avg": 170.43156596794083, - "bpm_change": 11, - "scroll_change": 17, - "rhythm_complexity": 664, - "color_complexity": 0.006560420104808106 - }, - { - "songno": "1442", - "difficulty": "oni", - "note_count": 415, - "density_avg": 3.6744791666666665, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 379, - "color_complexity": 0.0013988094826594664 - }, - { - "songno": "1456", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.6178312046080645, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.0040473257165252905 - }, - { - "songno": "1330", - "difficulty": "oni", - "note_count": 297, - "density_avg": 2.2789237668161437, - "density_peak": 5, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0004440058069272963 - }, - { - "songno": "897", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.435308343409916, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 349, - "color_complexity": 0.0019701741906721485 - }, - { - "songno": "673", - "difficulty": "oni", - "note_count": 674, - "density_avg": 6.688190076869323, - "density_peak": 15, - "bpm_avg": 167.4925816023739, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 625, - "color_complexity": 0.00627578561114128 - }, - { - "songno": "115", - "difficulty": "oni", - "note_count": 341, - "density_avg": 4.05322570428458, - "density_peak": 8, - "bpm_avg": 164.7099706744868, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 320, - "color_complexity": 0.0008169411582718039 - }, - { - "songno": "101", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.42588215773468, - "density_peak": 7, - "bpm_avg": 143.83536842105286, - "bpm_change": 14, - "scroll_change": 2, - "rhythm_complexity": 223, - "color_complexity": 0.0005886783305206696 - }, - { - "songno": "1126", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.6896188158961882, - "density_peak": 8, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.0017448254881589416 - }, - { - "songno": "1132", - "difficulty": "oni", - "note_count": 595, - "density_avg": 4.1469696969696965, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 520, - "color_complexity": 0.0036295703122201078 - }, - { - "songno": "459", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.932275132275132, - "density_peak": 9, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.002235320574056874 - }, - { - "songno": "317", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.7348029392117565, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.002547114352429677 - }, - { - "songno": "317", - "difficulty": "ura", - "note_count": 569, - "density_avg": 6.093708165997322, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.0037641542935528097 - }, - { - "songno": "471", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.027810650887575, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.009396690742807612 - }, - { - "songno": "465", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.911212074590177, - "density_peak": 15, - "bpm_avg": 127.86786786786787, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 585, - "color_complexity": 0.0038404432358629553 - }, - { - "songno": "358", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.436433470507545, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.006004589644246098 - }, - { - "songno": "1196", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.168413062024918, - "density_peak": 11, - "bpm_avg": 200.14719412724295, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 315, - "color_complexity": 0.0033317869939527146 - }, - { - "songno": "1196", - "difficulty": "ura", - "note_count": 1119, - "density_avg": 7.858565931700912, - "density_peak": 15, - "bpm_avg": 200.09512064343178, - "bpm_change": 23, - "scroll_change": 2, - "rhythm_complexity": 758, - "color_complexity": 0.018550024251476196 - }, - { - "songno": "402", - "difficulty": "oni", - "note_count": 681, - "density_avg": 6.522988505747127, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 647, - "color_complexity": 0.005736246213711815 - }, - { - "songno": "402", - "difficulty": "ura", - "note_count": 943, - "density_avg": 8.936271025823265, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 825, - "color_complexity": 0.01097117310596598 - }, - { - "songno": "364", - "difficulty": "oni", - "note_count": 545, - "density_avg": 5.190476190476191, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.0034087314688095068 - }, - { - "songno": "416", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.592472562807775, - "density_peak": 12, - "bpm_avg": 183.0736162361628, - "bpm_change": 70, - "scroll_change": 2, - "rhythm_complexity": 444, - "color_complexity": 0.003853961241339756 - }, - { - "songno": "1169", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.307882534775889, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0025056026371154303 - }, - { - "songno": "1155", - "difficulty": "oni", - "note_count": 415, - "density_avg": 4.382259767687434, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0017484908903376147 - }, - { - "songno": "1141", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.660037878787878, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 690, - "color_complexity": 0.005247635711093078 - }, - { - "songno": "628", - "difficulty": "oni", - "note_count": 976, - "density_avg": 8.09585253456221, - "density_peak": 15, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 938, - "color_complexity": 0.014773061250000082 - }, - { - "songno": "166", - "difficulty": "oni", - "note_count": 592, - "density_avg": 5.519813519813519, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 516, - "color_complexity": 0.003721939591836732 - }, - { - "songno": "98", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.616406636158505, - "density_peak": 8, - "bpm_avg": 122.34319088319094, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 285, - "color_complexity": 0.0011109673572387985 - }, - { - "songno": "1394", - "difficulty": "oni", - "note_count": 678, - "density_avg": 6.064570230607967, - "density_peak": 13, - "bpm_avg": 160.51917404129793, - "bpm_change": 12, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.006599241176379303 - }, - { - "songno": "1380", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.656552330694812, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005310334211021441 - }, - { - "songno": "1380", - "difficulty": "ura", - "note_count": 865, - "density_avg": 7.227352682497801, - "density_peak": 17, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 761, - "color_complexity": 0.009448980577942735 - }, - { - "songno": "614", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.1925, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.003715440318086437 - }, - { - "songno": "199", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.686525892408245, - "density_peak": 9, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0015999809944002043 - }, - { - "songno": "67", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.904639175257731, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.004669144880604776 - }, - { - "songno": "73", - "difficulty": "oni", - "note_count": 876, - "density_avg": 8.239004149377593, - "density_peak": 14, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 862, - "color_complexity": 0.008713334446863187 - }, - { - "songno": "73", - "difficulty": "ura", - "note_count": 915, - "density_avg": 8.605809128630705, - "density_peak": 14, - "bpm_avg": 203.88852459016394, - "bpm_change": 2, - "scroll_change": 3, - "rhythm_complexity": 907, - "color_complexity": 0.012598723086419733 - }, - { - "songno": "833", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.589343729694607, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.01508577106060983 - }, - { - "songno": "1419", - "difficulty": "oni", - "note_count": 1055, - "density_avg": 7.124984692192965, - "density_peak": 16, - "bpm_avg": 206.34502369668246, - "bpm_change": 16, - "scroll_change": 30, - "rhythm_complexity": 901, - "color_complexity": 0.009958925222890526 - }, - { - "songno": "1419", - "difficulty": "ura", - "note_count": 1438, - "density_avg": 9.711590509358752, - "density_peak": 22, - "bpm_avg": 207.2489568845619, - "bpm_change": 16, - "scroll_change": 41, - "rhythm_complexity": 1155, - "color_complexity": 0.033885251462878296 - }, - { - "songno": "9", - "difficulty": "oni", - "note_count": 466, - "density_avg": 3.8193959638010546, - "density_peak": 8, - "bpm_avg": 163.00523605150215, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 396, - "color_complexity": 0.001314240542779155 - }, - { - "songno": "9", - "difficulty": "ura", - "note_count": 681, - "density_avg": 5.321182335265388, - "density_peak": 10, - "bpm_avg": 163.01602055800296, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 646, - "color_complexity": 0.0054555293492886126 - }, - { - "songno": "1431", - "difficulty": "oni", - "note_count": 825, - "density_avg": 6.043712840646725, - "density_peak": 13, - "bpm_avg": 180.0088000000001, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 762, - "color_complexity": 0.006014767136369827 - }, - { - "songno": "1357", - "difficulty": "oni", - "note_count": 703, - "density_avg": 4.911489717619787, - "density_peak": 14, - "bpm_avg": 199.9972972972973, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 616, - "color_complexity": 0.000616580816067637 - }, - { - "songno": "1357", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.073818374933616, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 955, - "color_complexity": 0.007854224150660213 - }, - { - "songno": "1343", - "difficulty": "oni", - "note_count": 279, - "density_avg": 3.169924812030075, - "density_peak": 6, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 221, - "color_complexity": 0.0006248289693254968 - }, - { - "songno": "1343", - "difficulty": "ura", - "note_count": 566, - "density_avg": 6.430743525480367, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0037054673898715158 - }, - { - "songno": "1425", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.841666666666667, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.00980659603242667 - }, - { - "songno": "748", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.702888583218709, - "density_peak": 17, - "bpm_avg": 186.27627627627626, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 917, - "color_complexity": 0.013256775651791036 - }, - { - "songno": "990", - "difficulty": "oni", - "note_count": 1111, - "density_avg": 9.593079700188397, - "density_peak": 16, - "bpm_avg": 203.65641764176416, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 1066, - "color_complexity": 0.014413828088018618 - }, - { - "songno": "984", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.1544298245614035, - "density_peak": 9, - "bpm_avg": 160.31390134529147, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 413, - "color_complexity": 0.0015697646971252327 - }, - { - "songno": "774", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.829218989124031, - "density_peak": 15, - "bpm_avg": 168.00981996726676, - "bpm_change": 20, - "scroll_change": 19, - "rhythm_complexity": 556, - "color_complexity": 0.008990997359901822 - }, - { - "songno": "760", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.545887151597554, - "density_peak": 16, - "bpm_avg": 203.1855, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 850, - "color_complexity": 0.014314210829957054 - }, - { - "songno": "947", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.201434878587197, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 619, - "color_complexity": 0.004581128752476536 - }, - { - "songno": "1237", - "difficulty": "oni", - "note_count": 552, - "density_avg": 4.51078355314197, - "density_peak": 9, - "bpm_avg": 205.5144927536232, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.002258348221638869 - }, - { - "songno": "1237", - "difficulty": "ura", - "note_count": 962, - "density_avg": 7.858136228512342, - "density_peak": 15, - "bpm_avg": 205.3014553014553, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 837, - "color_complexity": 0.01285488391387629 - }, - { - "songno": "238", - "difficulty": "oni", - "note_count": 484, - "density_avg": 6.06639566395664, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 466, - "color_complexity": 0.003516260348992351 - }, - { - "songno": "576", - "difficulty": "oni", - "note_count": 854, - "density_avg": 6.958518518518519, - "density_peak": 13, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 774, - "color_complexity": 0.008246150026396728 - }, - { - "songno": "204", - "difficulty": "oni", - "note_count": 390, - "density_avg": 3.1917948697674747, - "density_peak": 7, - "bpm_avg": 127.81471794871796, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0011555350740271254 - }, - { - "songno": "1021", - "difficulty": "oni", - "note_count": 458, - "density_avg": 4.285380116959064, - "density_peak": 13, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.002751824318386189 - }, - { - "songno": "1035", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.3507788161993775, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.005636438866440603 - }, - { - "songno": "1035", - "difficulty": "ura", - "note_count": 1089, - "density_avg": 8.551766893986361, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1032, - "color_complexity": 0.012806188619968862 - }, - { - "songno": "1034", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.262383964424658, - "density_peak": 11, - "bpm_avg": 185.36418918918918, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 670, - "color_complexity": 0.00449243120435546 - }, - { - "songno": "1020", - "difficulty": "oni", - "note_count": 556, - "density_avg": 5.183516460755705, - "density_peak": 10, - "bpm_avg": 159.95887769784176, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 486, - "color_complexity": 0.0027357075206317543 - }, - { - "songno": "1020", - "difficulty": "ura", - "note_count": 707, - "density_avg": 6.591270031932164, - "density_peak": 12, - "bpm_avg": 162.02029420084858, - "bpm_change": 5, - "scroll_change": 2, - "rhythm_complexity": 693, - "color_complexity": 0.004757860795108542 - }, - { - "songno": "1008", - "difficulty": "oni", - "note_count": 249, - "density_avg": 3.7456410256410257, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0010818908439331689 - }, - { - "songno": "588", - "difficulty": "oni", - "note_count": 861, - "density_avg": 6.837232524964337, - "density_peak": 14, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 819, - "color_complexity": 0.01153366890971254 - }, - { - "songno": "205", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.109133055169217, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.002658451806490057 - }, - { - "songno": "577", - "difficulty": "oni", - "note_count": 803, - "density_avg": 6.8195329087048835, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 675, - "color_complexity": 0.009285326511893845 - }, - { - "songno": "211", - "difficulty": "oni", - "note_count": 864, - "density_avg": 6.9430601496997015, - "density_peak": 11, - "bpm_avg": 161.125, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 830, - "color_complexity": 0.011478577191172106 - }, - { - "songno": "239", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.95959595959596, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.0077838354591836766 - }, - { - "songno": "1236", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.700359892147317, - "density_peak": 20, - "bpm_avg": 242.48248248248248, - "bpm_change": 7, - "scroll_change": 146, - "rhythm_complexity": 905, - "color_complexity": 0.016323152358715592 - }, - { - "songno": "946", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.0014184397163115, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.0020005718754418345 - }, - { - "songno": "952", - "difficulty": "oni", - "note_count": 717, - "density_avg": 6.128205128205129, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.007741479416134963 - }, - { - "songno": "761", - "difficulty": "oni", - "note_count": 902, - "density_avg": 7.567340823970038, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.01348508429319256 - }, - { - "songno": "775", - "difficulty": "oni", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 16, - "bpm_avg": 243.05825242718447, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 700, - "color_complexity": 0.010716255172709585 - }, - { - "songno": "775", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 14, - "bpm_avg": 242.4757281553398, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 745, - "color_complexity": 0.010561460644845198 - }, - { - "songno": "991", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.82349537037037, - "density_peak": 12, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 643, - "color_complexity": 0.005476894034754873 - }, - { - "songno": "749", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.58212161930252, - "density_peak": 15, - "bpm_avg": 186.13175675675674, - "bpm_change": 22, - "scroll_change": 26, - "rhythm_complexity": 840, - "color_complexity": 0.010647856596629493 - }, - { - "songno": "1342", - "difficulty": "oni", - "note_count": 321, - "density_avg": 4.243990384615385, - "density_peak": 8, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0009468668597647406 - }, - { - "songno": "1424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.726132686084143, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 699, - "color_complexity": 0.006500551571248105 - }, - { - "songno": "8", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.8251366120218577, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001714575045893014 - }, - { - "songno": "1356", - "difficulty": "oni", - "note_count": 1120, - "density_avg": 7.648578811369509, - "density_peak": 15, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1036, - "color_complexity": 0.011008075535663414 - }, - { - "songno": "72", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.26815144766147, - "density_peak": 13, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 745, - "color_complexity": 0.008029338470156076 - }, - { - "songno": "1418", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.39136574541053, - "density_peak": 13, - "bpm_avg": 172.07762557077626, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 780, - "color_complexity": 0.010990536271348108 - }, - { - "songno": "198", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.565461847389558, - "density_peak": 9, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0017093391041618571 - }, - { - "songno": "826", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.512437810945274, - "density_peak": 21, - "bpm_avg": 200.07923169267707, - "bpm_change": 2, - "scroll_change": 20, - "rhythm_complexity": 699, - "color_complexity": 0.008065090370174466 - }, - { - "songno": "66", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.93374613003096, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006237777312295145 - }, - { - "songno": "615", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.8845460407738575, - "density_peak": 13, - "bpm_avg": 209.6716621253406, - "bpm_change": 15, - "scroll_change": 9, - "rhythm_complexity": 641, - "color_complexity": 0.0041508155087384545 - }, - { - "songno": "1381", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.69765625, - "density_peak": 14, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.00615265079935022 - }, - { - "songno": "173", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.883720930232558, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 712, - "color_complexity": 0.006189637010333841 - }, - { - "songno": "167", - "difficulty": "oni", - "note_count": 828, - "density_avg": 6.663298872196968, - "density_peak": 14, - "bpm_avg": 201.7512077294686, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 798, - "color_complexity": 0.00619789634739647 - }, - { - "songno": "1395", - "difficulty": "oni", - "note_count": 926, - "density_avg": 6.844050258684406, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 801, - "color_complexity": 0.01583305014615938 - }, - { - "songno": "601", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.8070832099039524, - "density_peak": 9, - "bpm_avg": 169.30492063492076, - "bpm_change": 35, - "scroll_change": 2, - "rhythm_complexity": 304, - "color_complexity": 0.0009495584436399778 - }, - { - "songno": "601", - "difficulty": "ura", - "note_count": 757, - "density_avg": 6.325667767200526, - "density_peak": 12, - "bpm_avg": 173.14684280052856, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 638, - "color_complexity": 0.007174443241356957 - }, - { - "songno": "629", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.310009267840592, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.0073302324515683945 - }, - { - "songno": "1140", - "difficulty": "oni", - "note_count": 562, - "density_avg": 5.053869541204061, - "density_peak": 10, - "bpm_avg": 159.99039145907471, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 504, - "color_complexity": 0.0032252104966734993 - }, - { - "songno": "1140", - "difficulty": "ura", - "note_count": 879, - "density_avg": 7.592165251691859, - "density_peak": 16, - "bpm_avg": 159.812059158135, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 765, - "color_complexity": 0.0063164056042033 - }, - { - "songno": "1154", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.928441837802259, - "density_peak": 14, - "bpm_avg": 239.84745762711864, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 618, - "color_complexity": 0.005391017636986323 - }, - { - "songno": "1168", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.981200909546523, - "density_peak": 8, - "bpm_avg": 129.64721768707474, - "bpm_change": 14, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016828069744445901 - }, - { - "songno": "1168", - "difficulty": "ura", - "note_count": 733, - "density_avg": 6.603522347730304, - "density_peak": 11, - "bpm_avg": 129.88940927694543, - "bpm_change": 66, - "scroll_change": 6, - "rhythm_complexity": 465, - "color_complexity": 0.006026550275146372 - }, - { - "songno": "1183", - "difficulty": "oni", - "note_count": 532, - "density_avg": 4.685636856368563, - "density_peak": 11, - "bpm_avg": 168.1203007518797, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 434, - "color_complexity": 0.002400538246595251 - }, - { - "songno": "417", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.074066757528118, - "density_peak": 9, - "bpm_avg": 160.00004040404042, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.0015723617729505638 - }, - { - "songno": "417", - "difficulty": "ura", - "note_count": 777, - "density_avg": 6.395050243635046, - "density_peak": 11, - "bpm_avg": 160.00002574002573, - "bpm_change": 3, - "scroll_change": 5, - "rhythm_complexity": 749, - "color_complexity": 0.007238797565792423 - }, - { - "songno": "403", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.020080321285141, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 570, - "color_complexity": 0.004050200550464442 - }, - { - "songno": "403", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.144578313253012, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 743, - "color_complexity": 0.006892555903810102 - }, - { - "songno": "1197", - "difficulty": "oni", - "note_count": 602, - "density_avg": 4.318917089678512, - "density_peak": 11, - "bpm_avg": 211.64784053156146, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 486, - "color_complexity": 0.0017625623784054663 - }, - { - "songno": "1197", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.1671065989847715, - "density_peak": 16, - "bpm_avg": 211.78778778778778, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 857, - "color_complexity": 0.012080873725724186 - }, - { - "songno": "365", - "difficulty": "oni", - "note_count": 822, - "density_avg": 7.195959595959596, - "density_peak": 15, - "bpm_avg": 200.4087591240876, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 799, - "color_complexity": 0.011999234431091285 - }, - { - "songno": "359", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.49475890985325, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 300, - "color_complexity": 0.003194577269203926 - }, - { - "songno": "429", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.16969872433587, - "density_peak": 11, - "bpm_avg": 160.0048320413437, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 346, - "color_complexity": 0.0027322792176294425 - }, - { - "songno": "415", - "difficulty": "oni", - "note_count": 521, - "density_avg": 3.6019708510654853, - "density_peak": 8, - "bpm_avg": 139.96679462571976, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 441, - "color_complexity": 0.001474628075984925 - }, - { - "songno": "1181", - "difficulty": "oni", - "note_count": 231, - "density_avg": 4.091787439613526, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 141, - "color_complexity": 0.0006873993156336606 - }, - { - "songno": "367", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.106422018348624, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.006190357760781997 - }, - { - "songno": "1195", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.9287817938420337, - "density_peak": 8, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0010137507865453303 - }, - { - "songno": "401", - "difficulty": "oni", - "note_count": 668, - "density_avg": 5.527186761229315, - "density_peak": 15, - "bpm_avg": 260.0898203592814, - "bpm_change": 4, - "scroll_change": 12, - "rhythm_complexity": 585, - "color_complexity": 0.005183734489235187 - }, - { - "songno": "398", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.923201856148492, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.003282641543197276 - }, - { - "songno": "1142", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.936940298507462, - "density_peak": 9, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0012709410806509788 - }, - { - "songno": "159", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.551603934560249, - "density_peak": 15, - "bpm_avg": 160.03296732026106, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 698, - "color_complexity": 0.006219329504113033 - }, - { - "songno": "171", - "difficulty": "oni", - "note_count": 653, - "density_avg": 6.533159746300676, - "density_peak": 12, - "bpm_avg": 235.19142419601837, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 567, - "color_complexity": 0.00635848433143966 - }, - { - "songno": "1383", - "difficulty": "oni", - "note_count": 1079, - "density_avg": 7.431815907462518, - "density_peak": 16, - "bpm_avg": 156.7701575532901, - "bpm_change": 11, - "scroll_change": 11, - "rhythm_complexity": 971, - "color_complexity": 0.013871993739205354 - }, - { - "songno": "617", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.326363636363637, - "density_peak": 12, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0040817978954081745 - }, - { - "songno": "1397", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "70", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.62962962962963, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.0065436619114178545 - }, - { - "songno": "64", - "difficulty": "oni", - "note_count": 608, - "density_avg": 6.144193061840121, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.00492357033293637 - }, - { - "songno": "1368", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.780729166666666, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010869024745673393 - }, - { - "songno": "824", - "difficulty": "oni", - "note_count": 199, - "density_avg": 2.5830944199210877, - "density_peak": 6, - "bpm_avg": 148.72085427135676, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 161, - "color_complexity": 0.0003074235312836148 - }, - { - "songno": "824", - "difficulty": "ura", - "note_count": 430, - "density_avg": 5.175755954031412, - "density_peak": 10, - "bpm_avg": 148.87081395348835, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 363, - "color_complexity": 0.0032175598758908477 - }, - { - "songno": "1426", - "difficulty": "oni", - "note_count": 479, - "density_avg": 4.875928243637881, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.002172193250509392 - }, - { - "songno": "1354", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.734225327873769, - "density_peak": 13, - "bpm_avg": 179.72653594771046, - "bpm_change": 7, - "scroll_change": 15, - "rhythm_complexity": 734, - "color_complexity": 0.007964919131700072 - }, - { - "songno": "818", - "difficulty": "oni", - "note_count": 846, - "density_avg": 7.1729651162790695, - "density_peak": 16, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 657, - "color_complexity": 0.00918082922932229 - }, - { - "songno": "1432", - "difficulty": "oni", - "note_count": 1053, - "density_avg": 7.269142512116014, - "density_peak": 14, - "bpm_avg": 156.8356600189935, - "bpm_change": 6, - "scroll_change": 20, - "rhythm_complexity": 907, - "color_complexity": 0.013030326912320108 - }, - { - "songno": "987", - "difficulty": "oni", - "note_count": 380, - "density_avg": 4.569760653823701, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.002440377499765448 - }, - { - "songno": "993", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.096801346801346, - "density_peak": 14, - "bpm_avg": 180.09393063583815, - "bpm_change": 35, - "scroll_change": 48, - "rhythm_complexity": 603, - "color_complexity": 0.00686516603828627 - }, - { - "songno": "993", - "difficulty": "ura", - "note_count": 1070, - "density_avg": 7.88102900841604, - "density_peak": 18, - "bpm_avg": 162.01897196261712, - "bpm_change": 42, - "scroll_change": 272, - "rhythm_complexity": 924, - "color_complexity": 0.013241814374083491 - }, - { - "songno": "763", - "difficulty": "oni", - "note_count": 978, - "density_avg": 8.256232664954757, - "density_peak": 17, - "bpm_avg": 194.02607361963192, - "bpm_change": 8, - "scroll_change": 11, - "rhythm_complexity": 874, - "color_complexity": 0.013895492789115544 - }, - { - "songno": "777", - "difficulty": "oni", - "note_count": 739, - "density_avg": 7.797051978277734, - "density_peak": 16, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.013527538876619076 - }, - { - "songno": "944", - "difficulty": "oni", - "note_count": 629, - "density_avg": 4.673945383329588, - "density_peak": 10, - "bpm_avg": 101.57392686804451, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 522, - "color_complexity": 0.0025838360181263077 - }, - { - "songno": "1208", - "difficulty": "oni", - "note_count": 558, - "density_avg": 2.871920801066091, - "density_peak": 5, - "bpm_avg": 113.10578494623665, - "bpm_change": 26, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0009551482149608538 - }, - { - "songno": "1234", - "difficulty": "oni", - "note_count": 916, - "density_avg": 5.901973929236499, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 863, - "color_complexity": 0.004255697428349144 - }, - { - "songno": "1220", - "difficulty": "oni", - "note_count": 405, - "density_avg": 2.868949232585596, - "density_peak": 7, - "bpm_avg": 110, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 343, - "color_complexity": 0.0011273159462396626 - }, - { - "songno": "1220", - "difficulty": "ura", - "note_count": 804, - "density_avg": 5.668625146886017, - "density_peak": 15, - "bpm_avg": 111.71641791044776, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 662, - "color_complexity": 0.008858915966979342 - }, - { - "songno": "549", - "difficulty": "oni", - "note_count": 716, - "density_avg": 6.422453703703703, - "density_peak": 15, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004328081905707195 - }, - { - "songno": "561", - "difficulty": "oni", - "note_count": 471, - "density_avg": 4.8307692307692305, - "density_peak": 12, - "bpm_avg": 196.43312101910828, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 428, - "color_complexity": 0.003748535437129884 - }, - { - "songno": "207", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.037965328834292, - "density_peak": 7, - "bpm_avg": 110.00082882882883, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0020621240315578226 - }, - { - "songno": "213", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.259094942324756, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.002258420190569404 - }, - { - "songno": "575", - "difficulty": "oni", - "note_count": 620, - "density_avg": 5.291607396870555, - "density_peak": 14, - "bpm_avg": 360, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.006999148109652445 - }, - { - "songno": "1036", - "difficulty": "oni", - "note_count": 752, - "density_avg": 4.851612903225806, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.003321776251056654 - }, - { - "songno": "1022", - "difficulty": "oni", - "note_count": 469, - "density_avg": 4.20897435897436, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0013065631456790111 - }, - { - "songno": "1023", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.9256830194989174, - "density_peak": 10, - "bpm_avg": 140.08218390804598, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0012653129320987643 - }, - { - "songno": "1037", - "difficulty": "oni", - "note_count": 985, - "density_avg": 7.836117740652347, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.01393773577281376 - }, - { - "songno": "212", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.296930388686157, - "density_peak": 10, - "bpm_avg": 154.76406533575317, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 487, - "color_complexity": 0.0034473077023386553 - }, - { - "songno": "574", - "difficulty": "oni", - "note_count": 848, - "density_avg": 7.43859649122807, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 826, - "color_complexity": 0.007734122412654237 - }, - { - "songno": "560", - "difficulty": "oni", - "note_count": 640, - "density_avg": 5.005586592178771, - "density_peak": 12, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 607, - "color_complexity": 0.004092341027345833 - }, - { - "songno": "548", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.615460992907801, - "density_peak": 12, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 611, - "color_complexity": 0.004721166844608656 - }, - { - "songno": "1235", - "difficulty": "oni", - "note_count": 985, - "density_avg": 6.457902001380263, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 890, - "color_complexity": 0.007687399638884248 - }, - { - "songno": "1235", - "difficulty": "ura", - "note_count": 1244, - "density_avg": 8.155969634230503, - "density_peak": 19, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1154, - "color_complexity": 0.016763635685183353 - }, - { - "songno": "951", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.9867724867724865, - "density_peak": 9, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.0022818653178819704 - }, - { - "songno": "951", - "difficulty": "ura", - "note_count": 854, - "density_avg": 7.342592592592593, - "density_peak": 13, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.009435180951384889 - }, - { - "songno": "1209", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.398099117447386, - "density_peak": 10, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0025785174201498084 - }, - { - "songno": "945", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.7363184079602, - "density_peak": 9, - "bpm_avg": 193.01470588235293, - "bpm_change": 3, - "scroll_change": 4, - "rhythm_complexity": 487, - "color_complexity": 0.0033306615363511726 - }, - { - "songno": "776", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.69831223628692, - "density_peak": 11, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004772060150827519 - }, - { - "songno": "776", - "difficulty": "ura", - "note_count": 648, - "density_avg": 6.653164556962025, - "density_peak": 13, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.003922080586702115 - }, - { - "songno": "762", - "difficulty": "oni", - "note_count": 659, - "density_avg": 6.059770114942529, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 542, - "color_complexity": 0.0049837290818746 - }, - { - "songno": "992", - "difficulty": "oni", - "note_count": 757, - "density_avg": 6.41090785907859, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.009610421709254004 - }, - { - "songno": "819", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.447102115915364, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.007005063298365982 - }, - { - "songno": "819", - "difficulty": "ura", - "note_count": 1121, - "density_avg": 8.250229990800369, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 89, - "rhythm_complexity": 1099, - "color_complexity": 0.016406242616303725 - }, - { - "songno": "1355", - "difficulty": "oni", - "note_count": 811, - "density_avg": 7.041967728612796, - "density_peak": 14, - "bpm_avg": 180.4588581997534, - "bpm_change": 50, - "scroll_change": 0, - "rhythm_complexity": 626, - "color_complexity": 0.010109033251288277 - }, - { - "songno": "59", - "difficulty": "oni", - "note_count": 266, - "density_avg": 3.6247379454926625, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0012709674618358168 - }, - { - "songno": "1433", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.378170289855072, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 596, - "color_complexity": 0.004304697680107563 - }, - { - "songno": "1427", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.724164825165736, - "density_peak": 14, - "bpm_avg": 172.85785536159602, - "bpm_change": 3, - "scroll_change": 7, - "rhythm_complexity": 774, - "color_complexity": 0.007210905889246595 - }, - { - "songno": "1341", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.022537562604341, - "density_peak": 10, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 36, - "rhythm_complexity": 514, - "color_complexity": 0.0032715521018358376 - }, - { - "songno": "1369", - "difficulty": "oni", - "note_count": 1333, - "density_avg": 8.628180392619107, - "density_peak": 26, - "bpm_avg": 293.294448612153, - "bpm_change": 34, - "scroll_change": 73, - "rhythm_complexity": 1212, - "color_complexity": 0.026552837371460504 - }, - { - "songno": "65", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.283987915407855, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.01022240041848812 - }, - { - "songno": "831", - "difficulty": "oni", - "note_count": 155, - "density_avg": 2.110328638497653, - "density_peak": 4, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 97, - "color_complexity": 0.00013929702017038287 - }, - { - "songno": "831", - "difficulty": "ura", - "note_count": 390, - "density_avg": 4.896103896103897, - "density_peak": 14, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001968236276567831 - }, - { - "songno": "71", - "difficulty": "oni", - "note_count": 506, - "density_avg": 5.021374045801527, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.004396389028277388 - }, - { - "songno": "1396", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "164", - "difficulty": "oni", - "note_count": 702, - "density_avg": 5.973512476007677, - "density_peak": 11, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 644, - "color_complexity": 0.005367313973709004 - }, - { - "songno": "164", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.011644273832373, - "density_peak": 13, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 768, - "color_complexity": 0.008434488632128357 - }, - { - "songno": "616", - "difficulty": "oni", - "note_count": 706, - "density_avg": 6.154729138539452, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 677, - "color_complexity": 0.004885405373502864 - }, - { - "songno": "1382", - "difficulty": "oni", - "note_count": 230, - "density_avg": 2.795138888888889, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 138, - "color_complexity": 0.00041253739551006734 - }, - { - "songno": "1382", - "difficulty": "ura", - "note_count": 408, - "density_avg": 4.8820512820512825, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 305, - "color_complexity": 0.0018377258416491153 - }, - { - "songno": "1157", - "difficulty": "oni", - "note_count": 444, - "density_avg": 4.742541436464088, - "density_peak": 10, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002446646804012332 - }, - { - "songno": "1157", - "difficulty": "ura", - "note_count": 594, - "density_avg": 5.795218954493964, - "density_peak": 10, - "bpm_avg": 173.11915824915826, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 567, - "color_complexity": 0.003914227134039106 - }, - { - "songno": "1143", - "difficulty": "oni", - "note_count": 391, - "density_avg": 4.858786655169103, - "density_peak": 10, - "bpm_avg": 178.6214833759591, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0012928450790294433 - }, - { - "songno": "399", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "399", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "366", - "difficulty": "oni", - "note_count": 382, - "density_avg": 3.0362292051756006, - "density_peak": 7, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 374, - "color_complexity": 0.0008775127155092593 - }, - { - "songno": "366", - "difficulty": "ura", - "note_count": 724, - "density_avg": 5.733333333333333, - "density_peak": 9, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 722, - "color_complexity": 0.004021803271604949 - }, - { - "songno": "400", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "400", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "1194", - "difficulty": "oni", - "note_count": 435, - "density_avg": 4.693275013668671, - "density_peak": 10, - "bpm_avg": 191.95172413793102, - "bpm_change": 1, - "scroll_change": 18, - "rhythm_complexity": 421, - "color_complexity": 0.0027733587817132146 - }, - { - "songno": "1180", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.829068755439513, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 592, - "color_complexity": 0.004626618460704637 - }, - { - "songno": "414", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.750297275733301, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 662, - "color_complexity": 0.00452032040219044 - }, - { - "songno": "414", - "difficulty": "ura", - "note_count": 939, - "density_avg": 7.802787777331747, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 908, - "color_complexity": 0.011284689481677213 - }, - { - "songno": "372", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.7213622291021675, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 668, - "color_complexity": 0.005214235027496703 - }, - { - "songno": "428", - "difficulty": "oni", - "note_count": 840, - "density_avg": 5.928397279609906, - "density_peak": 11, - "bpm_avg": 164.92857142857142, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 763, - "color_complexity": 0.006646954772878754 - }, - { - "songno": "410", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.822945205479452, - "density_peak": 11, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006408985514693502 - }, - { - "songno": "1184", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.4989690721649485, - "density_peak": 14, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 726, - "color_complexity": 0.009521952015316769 - }, - { - "songno": "1190", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.097539012059327, - "density_peak": 14, - "bpm_avg": 146.63976377952756, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 338, - "color_complexity": 0.0022999258747490913 - }, - { - "songno": "404", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.851326566936777, - "density_peak": 13, - "bpm_avg": 169.9844336175398, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 797, - "color_complexity": 0.008049431070957097 - }, - { - "songno": "438", - "difficulty": "oni", - "note_count": 818, - "density_avg": 5.791427477994641, - "density_peak": 14, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.007998437370327547 - }, - { - "songno": "1147", - "difficulty": "oni", - "note_count": 766, - "density_avg": 7.07621247113164, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.009152072851309225 - }, - { - "songno": "1153", - "difficulty": "oni", - "note_count": 294, - "density_avg": 2.5526976603782336, - "density_peak": 6, - "bpm_avg": 112.0011224489796, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.000252077545989206 - }, - { - "songno": "389", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.1273100616016425, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 388, - "color_complexity": 0.0026050518654572937 - }, - { - "songno": "1386", - "difficulty": "oni", - "note_count": 452, - "density_avg": 4.466666666666667, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 398, - "color_complexity": 0.0027950377672401935 - }, - { - "songno": "612", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.303291608715808, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 679, - "color_complexity": 0.005978157255408406 - }, - { - "songno": "160", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.04586483390607, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006200499452198458 - }, - { - "songno": "160", - "difficulty": "ura", - "note_count": 713, - "density_avg": 4.839089347079038, - "density_peak": 16, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 674, - "color_complexity": 0.00693128423392695 - }, - { - "songno": "606", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.532051282051282, - "density_peak": 11, - "bpm_avg": 205.63366336633663, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 465, - "color_complexity": 0.0030682981990958996 - }, - { - "songno": "606", - "difficulty": "ura", - "note_count": 798, - "density_avg": 7.161538461538461, - "density_peak": 15, - "bpm_avg": 207.23684210526315, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 749, - "color_complexity": 0.010069282996383962 - }, - { - "songno": "1392", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.4338235294117645, - "density_peak": 11, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 682, - "color_complexity": 0.005502803813450183 - }, - { - "songno": "1392", - "difficulty": "ura", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 17, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 715, - "color_complexity": 0.01452331502908522 - }, - { - "songno": "148", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.8958393113342895, - "density_peak": 17, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 686, - "color_complexity": 0.010113767476029744 - }, - { - "songno": "1345", - "difficulty": "oni", - "note_count": 581, - "density_avg": 4.254989796765805, - "density_peak": 8, - "bpm_avg": 139.0790533562828, - "bpm_change": 45, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.0021638817153075045 - }, - { - "songno": "1345", - "difficulty": "ura", - "note_count": 832, - "density_avg": 6.093203977468415, - "density_peak": 10, - "bpm_avg": 139.34663461538537, - "bpm_change": 45, - "scroll_change": 1, - "rhythm_complexity": 741, - "color_complexity": 0.0056403792611961845 - }, - { - "songno": "49", - "difficulty": "oni", - "note_count": 619, - "density_avg": 4.7220563847429515, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002946306581031739 - }, - { - "songno": "49", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.835820895522389, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 671, - "color_complexity": 0.005567746728227036 - }, - { - "songno": "809", - "difficulty": "oni", - "note_count": 434, - "density_avg": 4.801960784313726, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.00219817331725675 - }, - { - "songno": "1423", - "difficulty": "oni", - "note_count": 400, - "density_avg": 4.5595854922279795, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0018558804431185695 - }, - { - "songno": "1437", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.769278606965173, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 760, - "color_complexity": 0.009505697225651586 - }, - { - "songno": "1351", - "difficulty": "oni", - "note_count": 1025, - "density_avg": 6.603465851172274, - "density_peak": 13, - "bpm_avg": 307.7531707317073, - "bpm_change": 4, - "scroll_change": 55, - "rhythm_complexity": 912, - "color_complexity": 0.012679539958429393 - }, - { - "songno": "1379", - "difficulty": "oni", - "note_count": 1057, - "density_avg": 7.084450402144772, - "density_peak": 13, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 791, - "color_complexity": 0.013184509036100125 - }, - { - "songno": "835", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.739904988123516, - "density_peak": 14, - "bpm_avg": 227, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.007293012462853437 - }, - { - "songno": "61", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.224270744221638, - "density_peak": 11, - "bpm_avg": 199.80547138047217, - "bpm_change": 6, - "scroll_change": 5, - "rhythm_complexity": 415, - "color_complexity": 0.0031743616536387127 - }, - { - "songno": "821", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.032917532917533, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0030350479749134507 - }, - { - "songno": "766", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.843888888888889, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002595659520017682 - }, - { - "songno": "982", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.161106905867197, - "density_peak": 15, - "bpm_avg": 199.17582159624416, - "bpm_change": 26, - "scroll_change": 24, - "rhythm_complexity": 744, - "color_complexity": 0.011557347918342226 - }, - { - "songno": "1231", - "difficulty": "oni", - "note_count": 645, - "density_avg": 4.683928571428571, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 543, - "color_complexity": 0.0029976610517622594 - }, - { - "songno": "969", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.723751686909583, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021041066572503823 - }, - { - "songno": "1225", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.10645825622744, - "density_peak": 10, - "bpm_avg": 135.00590361445848, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021983715933300133 - }, - { - "songno": "1225", - "difficulty": "ura", - "note_count": 641, - "density_avg": 5.33180576644295, - "density_peak": 12, - "bpm_avg": 135.03413416536702, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0033193741298001116 - }, - { - "songno": "941", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.225446009389672, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.003752197212831999 - }, - { - "songno": "799", - "difficulty": "oni", - "note_count": 531, - "density_avg": 4.2548076923076925, - "density_peak": 8, - "bpm_avg": 199.90583804143125, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.001668554489974818 - }, - { - "songno": "955", - "difficulty": "oni", - "note_count": 900, - "density_avg": 8.084696823869105, - "density_peak": 15, - "bpm_avg": 271.9111111111111, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.010041976962576167 - }, - { - "songno": "1219", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.358890689909964, - "density_peak": 11, - "bpm_avg": 166.09129263913826, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 512, - "color_complexity": 0.0027964857210582145 - }, - { - "songno": "1219", - "difficulty": "ura", - "note_count": 825, - "density_avg": 6.456166641249049, - "density_peak": 12, - "bpm_avg": 167.29315151515152, - "bpm_change": 7, - "scroll_change": 86, - "rhythm_complexity": 794, - "color_complexity": 0.008253724780231682 - }, - { - "songno": "202", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 11, - "bpm_avg": 229.2149019607842, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.004982959733910084 - }, - { - "songno": "202", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 13, - "bpm_avg": 230.97896732026177, - "bpm_change": 7, - "scroll_change": 6, - "rhythm_complexity": 619, - "color_complexity": 0.008060110087944019 - }, - { - "songno": "570", - "difficulty": "oni", - "note_count": 899, - "density_avg": 7.320846905537459, - "density_peak": 15, - "bpm_avg": 194.6496106785317, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 808, - "color_complexity": 0.010651287823167377 - }, - { - "songno": "558", - "difficulty": "oni", - "note_count": 704, - "density_avg": 6.253389434315101, - "density_peak": 15, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.006618036168276772 - }, - { - "songno": "1033", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.036475409836066, - "density_peak": 10, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 402, - "color_complexity": 0.0007345935262122296 - }, - { - "songno": "1033", - "difficulty": "ura", - "note_count": 784, - "density_avg": 7.169426751592357, - "density_peak": 16, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 727, - "color_complexity": 0.009556082350817993 - }, - { - "songno": "1027", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.6757373820173465, - "density_peak": 8, - "bpm_avg": 267.8518252595155, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.0025686427369981985 - }, - { - "songno": "1027", - "difficulty": "ura", - "note_count": 847, - "density_avg": 6.9474783247378005, - "density_peak": 13, - "bpm_avg": 262.02409681227863, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 773, - "color_complexity": 0.0067428453359066704 - }, - { - "songno": "1026", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.5561904761904755, - "density_peak": 9, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.002528991509849881 - }, - { - "songno": "1032", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.715848214285714, - "density_peak": 10, - "bpm_avg": 316.6707530647986, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 523, - "color_complexity": 0.0019617138743353375 - }, - { - "songno": "1032", - "difficulty": "ura", - "note_count": 1074, - "density_avg": 8.870089285714284, - "density_peak": 23, - "bpm_avg": 317.8072625698324, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 973, - "color_complexity": 0.018461684761804573 - }, - { - "songno": "559", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.632826187183033, - "density_peak": 11, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.005906721880753596 - }, - { - "songno": "571", - "difficulty": "oni", - "note_count": 899, - "density_avg": 6.6527169697028, - "density_peak": 13, - "bpm_avg": 226.01601779755273, - "bpm_change": 2, - "scroll_change": 31, - "rhythm_complexity": 842, - "color_complexity": 0.0117320719217324 - }, - { - "songno": "203", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.049520976000035, - "density_peak": 9, - "bpm_avg": 170.98465608465608, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 546, - "color_complexity": 0.003207393256157052 - }, - { - "songno": "203", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.812845761269889, - "density_peak": 12, - "bpm_avg": 170.9886274509804, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 756, - "color_complexity": 0.009111100663275726 - }, - { - "songno": "565", - "difficulty": "oni", - "note_count": 585, - "density_avg": 4.936708860759494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0038411581593529834 - }, - { - "songno": "1218", - "difficulty": "oni", - "note_count": 281, - "density_avg": 3.2233468286099862, - "density_peak": 7, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 238, - "color_complexity": 0.0005612459415740576 - }, - { - "songno": "1218", - "difficulty": "ura", - "note_count": 599, - "density_avg": 6.748177601060305, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.005773923137481609 - }, - { - "songno": "954", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.254587869362364, - "density_peak": 14, - "bpm_avg": 280.5296803652968, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 854, - "color_complexity": 0.007469683954205944 - }, - { - "songno": "954", - "difficulty": "ura", - "note_count": 1259, - "density_avg": 10.426399688958009, - "density_peak": 18, - "bpm_avg": 280.6799046862589, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 1197, - "color_complexity": 0.030354191089788922 - }, - { - "songno": "798", - "difficulty": "oni", - "note_count": 903, - "density_avg": 6.911903686482896, - "density_peak": 15, - "bpm_avg": 190.6234772978959, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 838, - "color_complexity": 0.012583282845687502 - }, - { - "songno": "940", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.815789473684211, - "density_peak": 15, - "bpm_avg": 160.6177606177606, - "bpm_change": 2, - "scroll_change": 39, - "rhythm_complexity": 621, - "color_complexity": 0.007578414847205498 - }, - { - "songno": "968", - "difficulty": "oni", - "note_count": 877, - "density_avg": 6.878431372549019, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 793, - "color_complexity": 0.008657901298085332 - }, - { - "songno": "1230", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.8243204577968526, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 291, - "color_complexity": 0.0015480482903287784 - }, - { - "songno": "997", - "difficulty": "oni", - "note_count": 590, - "density_avg": 5.353088158581116, - "density_peak": 9, - "bpm_avg": 173.92999999999762, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 574, - "color_complexity": 0.0035676447379020533 - }, - { - "songno": "997", - "difficulty": "ura", - "note_count": 817, - "density_avg": 7.412666145018257, - "density_peak": 12, - "bpm_avg": 173.92999999999637, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007633115582408368 - }, - { - "songno": "983", - "difficulty": "oni", - "note_count": 965, - "density_avg": 7.744537147397697, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.012424795118273716 - }, - { - "songno": "773", - "difficulty": "oni", - "note_count": 487, - "density_avg": 5.223913909379468, - "density_peak": 8, - "bpm_avg": 166.05244353182835, - "bpm_change": 16, - "scroll_change": 2, - "rhythm_complexity": 462, - "color_complexity": 0.0030853450543817137 - }, - { - "songno": "820", - "difficulty": "oni", - "note_count": 1096, - "density_avg": 8.154568368778666, - "density_peak": 17, - "bpm_avg": 231.02189781021897, - "bpm_change": 13, - "scroll_change": 16, - "rhythm_complexity": 1036, - "color_complexity": 0.014011522543783014 - }, - { - "songno": "60", - "difficulty": "oni", - "note_count": 986, - "density_avg": 7.268738009882184, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 946, - "color_complexity": 0.01067869338748385 - }, - { - "songno": "60", - "difficulty": "ura", - "note_count": 942, - "density_avg": 6.944372419177503, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 897, - "color_complexity": 0.00877543837012501 - }, - { - "songno": "834", - "difficulty": "oni", - "note_count": 772, - "density_avg": 6.412097117997289, - "density_peak": 14, - "bpm_avg": 257.55440414507774, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 663, - "color_complexity": 0.006697433702415283 - }, - { - "songno": "834", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.99109048522911, - "density_peak": 19, - "bpm_avg": 256.5271191135734, - "bpm_change": 12, - "scroll_change": 3, - "rhythm_complexity": 951, - "color_complexity": 0.021677678208683868 - }, - { - "songno": "74", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.7401869158878505, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 603, - "color_complexity": 0.0029849498006061866 - }, - { - "songno": "74", - "difficulty": "ura", - "note_count": 1007, - "density_avg": 7.540717628705148, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 988, - "color_complexity": 0.010266711597571655 - }, - { - "songno": "1378", - "difficulty": "oni", - "note_count": 913, - "density_avg": 7.310155920775389, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.012625310860513137 - }, - { - "songno": "1436", - "difficulty": "oni", - "note_count": 885, - "density_avg": 5.844629822732013, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.008381398663016416 - }, - { - "songno": "1350", - "difficulty": "oni", - "note_count": 1405, - "density_avg": 10.253251445086708, - "density_peak": 21, - "bpm_avg": 303, - "bpm_change": 0, - "scroll_change": 83, - "rhythm_complexity": 1315, - "color_complexity": 0.033778714032070195 - }, - { - "songno": "808", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.720000000000001, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0037679802029042383 - }, - { - "songno": "48", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.679694862881422, - "density_peak": 8, - "bpm_avg": 114.94999999999894, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.002589514654307961 - }, - { - "songno": "48", - "difficulty": "ura", - "note_count": 761, - "density_avg": 6.765425367362723, - "density_peak": 11, - "bpm_avg": 114.94999999999837, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.003362280746651282 - }, - { - "songno": "1344", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.141179078014185, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 442, - "color_complexity": 0.0006807840676662876 - }, - { - "songno": "1344", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.9379432624113475, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 914, - "color_complexity": 0.008693233077475998 - }, - { - "songno": "1422", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.442182573873539, - "density_peak": 11, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002190098349471223 - }, - { - "songno": "149", - "difficulty": "oni", - "note_count": 437, - "density_avg": 4.0205237084217975, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 311, - "color_complexity": 0.00209076333778264 - }, - { - "songno": "149", - "difficulty": "ura", - "note_count": 600, - "density_avg": 5.520169851380043, - "density_peak": 13, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.0036102428261901593 - }, - { - "songno": "161", - "difficulty": "oni", - "note_count": 336, - "density_avg": 3.7333333333333334, - "density_peak": 7, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.0013565827628428653 - }, - { - "songno": "1393", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.971698113207547, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 436, - "color_complexity": 0.0021725238743622506 - }, - { - "songno": "1393", - "difficulty": "ura", - "note_count": 694, - "density_avg": 6.547169811320755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.005922299786352035 - }, - { - "songno": "607", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.0960901259111995, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0012263374751473608 - }, - { - "songno": "613", - "difficulty": "oni", - "note_count": 489, - "density_avg": 3.5018855007411624, - "density_peak": 10, - "bpm_avg": 181.9869120654395, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 421, - "color_complexity": 0.0016627435161517931 - }, - { - "songno": "1387", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.325037707390649, - "density_peak": 9, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 506, - "color_complexity": 0.0019024655563664391 - }, - { - "songno": "1387", - "difficulty": "ura", - "note_count": 828, - "density_avg": 6.537952114111055, - "density_peak": 12, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.006718393901497159 - }, - { - "songno": "388", - "difficulty": "oni", - "note_count": 797, - "density_avg": 7.966016991504248, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.00866014540466391 - }, - { - "songno": "1152", - "difficulty": "oni", - "note_count": 494, - "density_avg": 5.145833333333333, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.003386602261998105 - }, - { - "songno": "1146", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1146", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "405", - "difficulty": "oni", - "note_count": 488, - "density_avg": 4.880277556692487, - "density_peak": 9, - "bpm_avg": 149.98304303278687, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.0017754095399484093 - }, - { - "songno": "405", - "difficulty": "ura", - "note_count": 889, - "density_avg": 8.890505630941846, - "density_peak": 11, - "bpm_avg": 150.0380787401562, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 861, - "color_complexity": 0.011729459412475754 - }, - { - "songno": "1191", - "difficulty": "oni", - "note_count": 505, - "density_avg": 5.781144781144781, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 487, - "color_complexity": 0.003892441736116305 - }, - { - "songno": "363", - "difficulty": "oni", - "note_count": 737, - "density_avg": 6.38548876118563, - "density_peak": 11, - "bpm_avg": 158.00256445047518, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 646, - "color_complexity": 0.007416656936152684 - }, - { - "songno": "377", - "difficulty": "oni", - "note_count": 361, - "density_avg": 4.356490541422048, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0015329553410808733 - }, - { - "songno": "1185", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.515576778487833, - "density_peak": 20, - "bpm_avg": 196.06851549755302, - "bpm_change": 29, - "scroll_change": 29, - "rhythm_complexity": 509, - "color_complexity": 0 - }, - { - "songno": "411", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.243449362884388, - "density_peak": 10, - "bpm_avg": 137.98865013774105, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0015891950551217044 - }, - { - "songno": "361", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 12, - "bpm_avg": 224.0035555555554, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.005429825589896879 - }, - { - "songno": "361", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 14, - "bpm_avg": 223.99585620915028, - "bpm_change": 5, - "scroll_change": 17, - "rhythm_complexity": 726, - "color_complexity": 0.006034966973018688 - }, - { - "songno": "1193", - "difficulty": "oni", - "note_count": 446, - "density_avg": 4.53677621283255, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.002100814133282944 - }, - { - "songno": "407", - "difficulty": "oni", - "note_count": 959, - "density_avg": 8.196581196581198, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 941, - "color_complexity": 0.010258440000000094 - }, - { - "songno": "413", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.887506092452432, - "density_peak": 10, - "bpm_avg": 138.01525735294103, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 474, - "color_complexity": 0.002721927968452235 - }, - { - "songno": "1187", - "difficulty": "oni", - "note_count": 192, - "density_avg": 3.4224598930481283, - "density_peak": 6, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 170, - "color_complexity": 0.0003872417725260037 - }, - { - "songno": "375", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.309688195991091, - "density_peak": 15, - "bpm_avg": 222.2000000000011, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 678, - "color_complexity": 0.009954832201709802 - }, - { - "songno": "349", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.582089552238805, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.005015391229360386 - }, - { - "songno": "1150", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.166735966735967, - "density_peak": 8, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.001922157761224489 - }, - { - "songno": "1144", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.329027091952489, - "density_peak": 7, - "bpm_avg": 203.18540433925048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 443, - "color_complexity": 0.0011230039449595922 - }, - { - "songno": "1144", - "difficulty": "ura", - "note_count": 1177, - "density_avg": 7.732047961118381, - "density_peak": 15, - "bpm_avg": 202.86108751062022, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 1052, - "color_complexity": 0.015143964260216507 - }, - { - "songno": "1178", - "difficulty": "oni", - "note_count": 357, - "density_avg": 3.82713567839196, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0017277822024307577 - }, - { - "songno": "605", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.069369978417022, - "density_peak": 11, - "bpm_avg": 204.01119196988705, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 747, - "color_complexity": 0.006775862050350308 - }, - { - "songno": "1391", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.342639712534403, - "density_peak": 13, - "bpm_avg": 206.492641261498, - "bpm_change": 26, - "scroll_change": 26, - "rhythm_complexity": 652, - "color_complexity": 0.006252435602047557 - }, - { - "songno": "1391", - "difficulty": "ura", - "note_count": 1015, - "density_avg": 8.459631154037345, - "density_peak": 19, - "bpm_avg": 211.71536945812818, - "bpm_change": 26, - "scroll_change": 28, - "rhythm_complexity": 904, - "color_complexity": 0.015520762037939024 - }, - { - "songno": "163", - "difficulty": "oni", - "note_count": 704, - "density_avg": 5.723577235772358, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 676, - "color_complexity": 0.004528000525338739 - }, - { - "songno": "163", - "difficulty": "ura", - "note_count": 754, - "density_avg": 6.130081300813008, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007651195696750384 - }, - { - "songno": "177", - "difficulty": "oni", - "note_count": 273, - "density_avg": 2.7215447154471546, - "density_peak": 6, - "bpm_avg": 143.6153846153846, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 238, - "color_complexity": 0.0009223871181621666 - }, - { - "songno": "1385", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.3966244725738393, - "density_peak": 7, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 322, - "color_complexity": 0.0008611307229117726 - }, - { - "songno": "611", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.85369532428356, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0018168242793145993 - }, - { - "songno": "89", - "difficulty": "oni", - "note_count": 630, - "density_avg": 6.9792864121685545, - "density_peak": 11, - "bpm_avg": 149.78647619047624, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 613, - "color_complexity": 0.008537524954666779 - }, - { - "songno": "639", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.1597578384888045, - "density_peak": 11, - "bpm_avg": 159.8883452211127, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 641, - "color_complexity": 0.0049019681003699056 - }, - { - "songno": "1352", - "difficulty": "oni", - "note_count": 976, - "density_avg": 6.432490203063769, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.009673730318733411 - }, - { - "songno": "1434", - "difficulty": "oni", - "note_count": 987, - "density_avg": 7.048901000297321, - "density_peak": 17, - "bpm_avg": 246.48276595745295, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 944, - "color_complexity": 0.013522636875938077 - }, - { - "songno": "1420", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.794391025641026, - "density_peak": 11, - "bpm_avg": 106, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 228, - "color_complexity": 0.0008096154319094754 - }, - { - "songno": "1346", - "difficulty": "oni", - "note_count": 731, - "density_avg": 5.2123478260869565, - "density_peak": 13, - "bpm_avg": 246, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 656, - "color_complexity": 0.005445417045367914 - }, - { - "songno": "62", - "difficulty": "oni", - "note_count": 484, - "density_avg": 4.870440251572328, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0024019322369124084 - }, - { - "songno": "822", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.7534246575342465, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.009264710511252189 - }, - { - "songno": "1408", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.885380116959064, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.004298713520987655 - }, - { - "songno": "76", - "difficulty": "oni", - "note_count": 414, - "density_avg": 4.241803278688524, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 335, - "color_complexity": 0.002280557039890196 - }, - { - "songno": "76", - "difficulty": "ura", - "note_count": 604, - "density_avg": 6.163265306122449, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 541, - "color_complexity": 0.00503402827380954 - }, - { - "songno": "771", - "difficulty": "oni", - "note_count": 509, - "density_avg": 3.728937728937729, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002259716636599273 - }, - { - "songno": "771", - "difficulty": "ura", - "note_count": 892, - "density_avg": 6.534798534798535, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.010346595173235348 - }, - { - "songno": "765", - "difficulty": "oni", - "note_count": 1396, - "density_avg": 10.449101796407186, - "density_peak": 21, - "bpm_avg": 297.8510028653295, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 1306, - "color_complexity": 0.02941860481229533 - }, - { - "songno": "765", - "difficulty": "ura", - "note_count": 1582, - "density_avg": 11.841317365269461, - "density_peak": 21, - "bpm_avg": 298.90960809102404, - "bpm_change": 4, - "scroll_change": 10, - "rhythm_complexity": 1485, - "color_complexity": 0.043387231100353994 - }, - { - "songno": "995", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.473100172711572, - "density_peak": 12, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.006521679596126006 - }, - { - "songno": "759", - "difficulty": "oni", - "note_count": 840, - "density_avg": 7.017543859649123, - "density_peak": 14, - "bpm_avg": 196.54761904761904, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 799, - "color_complexity": 0.010942669400665031 - }, - { - "songno": "981", - "difficulty": "oni", - "note_count": 511, - "density_avg": 4.228554778554779, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 462, - "color_complexity": 0.0014429745157498416 - }, - { - "songno": "981", - "difficulty": "ura", - "note_count": 715, - "density_avg": 5.916666666666666, - "density_peak": 11, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 681, - "color_complexity": 0.005236517407400119 - }, - { - "songno": "1226", - "difficulty": "oni", - "note_count": 443, - "density_avg": 3.719566010641685, - "density_peak": 9, - "bpm_avg": 131.99189616252826, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 341, - "color_complexity": 0.0014030523666070758 - }, - { - "songno": "1226", - "difficulty": "ura", - "note_count": 716, - "density_avg": 5.70659106816367, - "density_peak": 9, - "bpm_avg": 131.97696927374292, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 658, - "color_complexity": 0.004716799359479074 - }, - { - "songno": "1232", - "difficulty": "oni", - "note_count": 845, - "density_avg": 6.020356234096692, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.0068927280195447355 - }, - { - "songno": "956", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.708198489751888, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 244, - "color_complexity": 0.0007476113189939049 - }, - { - "songno": "956", - "difficulty": "ura", - "note_count": 444, - "density_avg": 5.948553054662379, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0029731722608024643 - }, - { - "songno": "942", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.065656565656566, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 622, - "color_complexity": 0.004019373659124446 - }, - { - "songno": "215", - "difficulty": "oni", - "note_count": 773, - "density_avg": 6.62382176520994, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.00825285185185184 - }, - { - "songno": "573", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.470668485675307, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 677, - "color_complexity": 0.01010908632546473 - }, - { - "songno": "567", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.112097353169378, - "density_peak": 10, - "bpm_avg": 142.4812673611111, - "bpm_change": 3, - "scroll_change": 36, - "rhythm_complexity": 505, - "color_complexity": 0.0038046491252858384 - }, - { - "songno": "1024", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.809575625680087, - "density_peak": 8, - "bpm_avg": 132.99485861182518, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 352, - "color_complexity": 0.001556605212139685 - }, - { - "songno": "1030", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.509643605870021, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 595, - "color_complexity": 0.004070292505316198 - }, - { - "songno": "1018", - "difficulty": "oni", - "note_count": 575, - "density_avg": 5.05787037037037, - "density_peak": 9, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.0034068980769235363 - }, - { - "songno": "1019", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.457646048109966, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 516, - "color_complexity": 0.0036476983035874555 - }, - { - "songno": "1031", - "difficulty": "oni", - "note_count": 494, - "density_avg": 3.9919191919191914, - "density_peak": 7, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0015457317692153724 - }, - { - "songno": "1031", - "difficulty": "ura", - "note_count": 954, - "density_avg": 7.709090909090909, - "density_peak": 18, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 795, - "color_complexity": 0.011710923280119577 - }, - { - "songno": "566", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.976081798974448, - "density_peak": 12, - "bpm_avg": 168.5343288690476, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 613, - "color_complexity": 0.007144373517678283 - }, - { - "songno": "200", - "difficulty": "oni", - "note_count": 346, - "density_avg": 4.017482061317677, - "density_peak": 7, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0009276976312232294 - }, - { - "songno": "200", - "difficulty": "ura", - "note_count": 530, - "density_avg": 6.153946510110893, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.005688751915759429 - }, - { - "songno": "214", - "difficulty": "oni", - "note_count": 836, - "density_avg": 7.497757847533633, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.011018134776522194 - }, - { - "songno": "572", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.8618657098923626, - "density_peak": 12, - "bpm_avg": 202.66666666666666, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 678, - "color_complexity": 0.0096185216986233 - }, - { - "songno": "943", - "difficulty": "oni", - "note_count": 723, - "density_avg": 6.4257434564709035, - "density_peak": 16, - "bpm_avg": 140.7966804979253, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 593, - "color_complexity": 0.009071796814678519 - }, - { - "songno": "1233", - "difficulty": "oni", - "note_count": 423, - "density_avg": 4.648351648351649, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.001873767970042872 - }, - { - "songno": "1227", - "difficulty": "oni", - "note_count": 987, - "density_avg": 6.811594202898551, - "density_peak": 18, - "bpm_avg": 255.52178318135765, - "bpm_change": 4, - "scroll_change": 17, - "rhythm_complexity": 869, - "color_complexity": 0.00964452988735289 - }, - { - "songno": "1227", - "difficulty": "ura", - "note_count": 1423, - "density_avg": 9.834139599170697, - "density_peak": 22, - "bpm_avg": 258.9248067463106, - "bpm_change": 8, - "scroll_change": 15, - "rhythm_complexity": 1235, - "color_complexity": 0.043274336087493655 - }, - { - "songno": "980", - "difficulty": "oni", - "note_count": 668, - "density_avg": 6.879240277777777, - "density_peak": 12, - "bpm_avg": 177.95399999999867, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 548, - "color_complexity": 0.009504487694870448 - }, - { - "songno": "758", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 7.800658616904501, - "density_peak": 19, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 973, - "color_complexity": 0.014202202064665746 - }, - { - "songno": "994", - "difficulty": "oni", - "note_count": 707, - "density_avg": 6.721330956625074, - "density_peak": 13, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 652, - "color_complexity": 0.00756823602083857 - }, - { - "songno": "764", - "difficulty": "oni", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 18, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 915, - "color_complexity": 0.015127085085754683 - }, - { - "songno": "770", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.8833545577798025, - "density_peak": 12, - "bpm_avg": 190.0111415525114, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.008563301986770076 - }, - { - "songno": "823", - "difficulty": "oni", - "note_count": 656, - "density_avg": 5.473945849977807, - "density_peak": 12, - "bpm_avg": 186.0655487804878, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 606, - "color_complexity": 0.005156101571918044 - }, - { - "songno": "63", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.391256830601093, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0026968286473532726 - }, - { - "songno": "1409", - "difficulty": "oni", - "note_count": 323, - "density_avg": 3.0238297872340425, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.0008282608111890808 - }, - { - "songno": "1421", - "difficulty": "oni", - "note_count": 884, - "density_avg": 7.3027674514663365, - "density_peak": 14, - "bpm_avg": 194.57013574660633, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 769, - "color_complexity": 0.008397186902165423 - }, - { - "songno": "1347", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.503192279138827, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.00510742870214163 - }, - { - "songno": "1353", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.76568848758465, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001585119404761899 - }, - { - "songno": "1353", - "difficulty": "ura", - "note_count": 584, - "density_avg": 6.8550790067720095, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.005471040528058314 - }, - { - "songno": "1435", - "difficulty": "oni", - "note_count": 422, - "density_avg": 5.223066104078763, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.002570878933333334 - }, - { - "songno": "88", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.96455876221774, - "density_peak": 12, - "bpm_avg": 166.00569892473132, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 509, - "color_complexity": 0.004537288316077771 - }, - { - "songno": "610", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.5700934579439245, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 550, - "color_complexity": 0.004806449094815463 - }, - { - "songno": "1384", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.827655536627049, - "density_peak": 14, - "bpm_avg": 246.40949324324822, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 849, - "color_complexity": 0.008786793400270556 - }, - { - "songno": "1390", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.50950179763739, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 591, - "color_complexity": 0.001396942964380191 - }, - { - "songno": "1390", - "difficulty": "ura", - "note_count": 763, - "density_avg": 6.6620441705187465, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 42, - "rhythm_complexity": 652, - "color_complexity": 0.008686661921369524 - }, - { - "songno": "604", - "difficulty": "oni", - "note_count": 229, - "density_avg": 2.5008964955175226, - "density_peak": 5, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00021520105898491113 - }, - { - "songno": "1179", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.803006392169991, - "density_peak": 10, - "bpm_avg": 151.90814196242172, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0026358404403124076 - }, - { - "songno": "1145", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.744084267255098, - "density_peak": 13, - "bpm_avg": 368.3345565749239, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.0068985530022572595 - }, - { - "songno": "1145", - "difficulty": "ura", - "note_count": 1024, - "density_avg": 8.703570520889851, - "density_peak": 16, - "bpm_avg": 365.10408203124933, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 814, - "color_complexity": 0.016398410846007964 - }, - { - "songno": "1151", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.7010574346346052, - "density_peak": 8, - "bpm_avg": 164.10877192982457, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 274, - "color_complexity": 0.0007792538682939821 - }, - { - "songno": "348", - "difficulty": "oni", - "note_count": 577, - "density_avg": 4.695196078431372, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 573, - "color_complexity": 0.002620796728395067 - }, - { - "songno": "348", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.225, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 761, - "color_complexity": 0.0065780997556622095 - }, - { - "songno": "1186", - "difficulty": "oni", - "note_count": 321, - "density_avg": 2.3615234375000003, - "density_peak": 6, - "bpm_avg": 113, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.00048239674822057226 - }, - { - "songno": "412", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.963358778625953, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004905915782312931 - }, - { - "songno": "374", - "difficulty": "oni", - "note_count": 510, - "density_avg": 5.872506970010821, - "density_peak": 11, - "bpm_avg": 180.7050921568633, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 443, - "color_complexity": 0.003949187453729018 - }, - { - "songno": "360", - "difficulty": "oni", - "note_count": 898, - "density_avg": 7.42532299741602, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 838, - "color_complexity": 0.01274466297242181 - }, - { - "songno": "406", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.748883928571429, - "density_peak": 10, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.003863672456314922 - }, - { - "songno": "1192", - "difficulty": "oni", - "note_count": 490, - "density_avg": 5.608187134502924, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.003077949296741548 - }, - { - "songno": "423", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.930926642375808, - "density_peak": 11, - "bpm_avg": 163.00267080745343, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 600, - "color_complexity": 0.005188939088258996 - }, - { - "songno": "345", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.2950688073394496, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 343, - "color_complexity": 0.0010938347276067246 - }, - { - "songno": "351", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.345685547908947, - "density_peak": 14, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.005930428435866911 - }, - { - "songno": "437", - "difficulty": "oni", - "note_count": 594, - "density_avg": 4.1861482381530974, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 566, - "color_complexity": 0.0022255143667800547 - }, - { - "songno": "1148", - "difficulty": "oni", - "note_count": 384, - "density_avg": 3.4962962962962965, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0015761175381449103 - }, - { - "songno": "1148", - "difficulty": "ura", - "note_count": 656, - "density_avg": 5.972839506172839, - "density_peak": 8, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005057351511111088 - }, - { - "songno": "1174", - "difficulty": "oni", - "note_count": 827, - "density_avg": 5.914183551847437, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.008512418611880585 - }, - { - "songno": "386", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.6410256410256405, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 762, - "color_complexity": 0.00443600205268271 - }, - { - "songno": "392", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.74085335737041, - "density_peak": 15, - "bpm_avg": 200.4470588235294, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.0087246400278549 - }, - { - "songno": "1160", - "difficulty": "oni", - "note_count": 615, - "density_avg": 5.321244477172312, - "density_peak": 13, - "bpm_avg": 187.51869918699188, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 560, - "color_complexity": 0.005178837992605135 - }, - { - "songno": "85", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.710644870671397, - "density_peak": 10, - "bpm_avg": 139.63044406023434, - "bpm_change": 39, - "scroll_change": 22, - "rhythm_complexity": 618, - "color_complexity": 0.004258318516839943 - }, - { - "songno": "1389", - "difficulty": "oni", - "note_count": 344, - "density_avg": 3.9564738292011024, - "density_peak": 7, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0011979116004535188 - }, - { - "songno": "91", - "difficulty": "oni", - "note_count": 375, - "density_avg": 2.9239914693398954, - "density_peak": 11, - "bpm_avg": 157.2945066666667, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 243, - "color_complexity": 0.0013348097276337466 - }, - { - "songno": "609", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.302164872578523, - "density_peak": 11, - "bpm_avg": 178.66739606126916, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 361, - "color_complexity": 0.004008381717026706 - }, - { - "songno": "621", - "difficulty": "oni", - "note_count": 1062, - "density_avg": 6.972727272727273, - "density_peak": 14, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1029, - "color_complexity": 0.012982303295915747 - }, - { - "songno": "635", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.954122752634842, - "density_peak": 13, - "bpm_avg": 146.3265306122449, - "bpm_change": 9, - "scroll_change": 7, - "rhythm_complexity": 653, - "color_complexity": 0.006937686603298827 - }, - { - "songno": "52", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.337868130259788, - "density_peak": 13, - "bpm_avg": 195.03200000000328, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.00411598638198618 - }, - { - "songno": "1438", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.586387434554974, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.007446743023849206 - }, - { - "songno": "1410", - "difficulty": "oni", - "note_count": 433, - "density_avg": 5.073697193956213, - "density_peak": 9, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0018708826151030533 - }, - { - "songno": "184", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.248062015503876, - "density_peak": 9, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0027366235950752205 - }, - { - "songno": "184", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.603047313552526, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.005842569301827004 - }, - { - "songno": "1376", - "difficulty": "oni", - "note_count": 275, - "density_avg": 2.328510182207931, - "density_peak": 5, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 241, - "color_complexity": 0.0005411215876251803 - }, - { - "songno": "1362", - "difficulty": "oni", - "note_count": 542, - "density_avg": 6.114162985219604, - "density_peak": 10, - "bpm_avg": 170.5369003690037, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 363, - "color_complexity": 0.0030069315794352927 - }, - { - "songno": "190", - "difficulty": "oni", - "note_count": 929, - "density_avg": 5.495909759732159, - "density_peak": 13, - "bpm_avg": 179.31754574811626, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 774, - "color_complexity": 0.006731735206776709 - }, - { - "songno": "1404", - "difficulty": "oni", - "note_count": 829, - "density_avg": 6.101776649746192, - "density_peak": 16, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.008343272416875415 - }, - { - "songno": "755", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.996951219512195, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.007914424640934259 - }, - { - "songno": "741", - "difficulty": "oni", - "note_count": 386, - "density_avg": 3.8722280887011618, - "density_peak": 8, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0009244815196446407 - }, - { - "songno": "741", - "difficulty": "ura", - "note_count": 665, - "density_avg": 6.157407407407407, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.005117871718394963 - }, - { - "songno": "999", - "difficulty": "oni", - "note_count": 975, - "density_avg": 8.221883925457409, - "density_peak": 17, - "bpm_avg": 206.14871794871794, - "bpm_change": 1, - "scroll_change": 9, - "rhythm_complexity": 894, - "color_complexity": 0.01573210343942902 - }, - { - "songno": "972", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.062267343485617, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.005586088283537377 - }, - { - "songno": "972", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.984459459459459, - "density_peak": 16, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 785, - "color_complexity": 0.010702727817315079 - }, - { - "songno": "1202", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.81549815498155, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.003325408179445369 - }, - { - "songno": "782", - "difficulty": "oni", - "note_count": 522, - "density_avg": 4.2561151079136685, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.001897606182601946 - }, - { - "songno": "1216", - "difficulty": "oni", - "note_count": 989, - "density_avg": 7.197360995990631, - "density_peak": 16, - "bpm_avg": 236.00444893832153, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 897, - "color_complexity": 0.009178932210318904 - }, - { - "songno": "1216", - "difficulty": "ura", - "note_count": 1338, - "density_avg": 9.73717797030886, - "density_peak": 20, - "bpm_avg": 236.00526158445444, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 1209, - "color_complexity": 0.02840435681803498 - }, - { - "songno": "219", - "difficulty": "oni", - "note_count": 588, - "density_avg": 4.763467492260062, - "density_peak": 11, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 545, - "color_complexity": 0.004141928778936775 - }, - { - "songno": "231", - "difficulty": "oni", - "note_count": 198, - "density_avg": 2.4360236220472444, - "density_peak": 6, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00028055962149037863 - }, - { - "songno": "231", - "difficulty": "ura", - "note_count": 523, - "density_avg": 6.434547244094488, - "density_peak": 11, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.005725379774305551 - }, - { - "songno": "543", - "difficulty": "oni", - "note_count": 414, - "density_avg": 3.1892008639308855, - "density_peak": 9, - "bpm_avg": 107, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0014005432322070147 - }, - { - "songno": "1028", - "difficulty": "oni", - "note_count": 624, - "density_avg": 4.91768826619965, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0030533388817775746 - }, - { - "songno": "594", - "difficulty": "oni", - "note_count": 888, - "density_avg": 7.269026548672566, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 829, - "color_complexity": 0.01402671232786871 - }, - { - "songno": "1000", - "difficulty": "oni", - "note_count": 729, - "density_avg": 6.807782101167316, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.007338713203016261 - }, - { - "songno": "1014", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.253097893432466, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0042777064526913645 - }, - { - "songno": "580", - "difficulty": "oni", - "note_count": 436, - "density_avg": 2.856135046611237, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 261, - "color_complexity": 0.0011258812094705893 - }, - { - "songno": "580", - "difficulty": "ura", - "note_count": 733, - "density_avg": 4.801713277903754, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 550, - "color_complexity": 0.004340325903245934 - }, - { - "songno": "1015", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.933683878201988, - "density_peak": 13, - "bpm_avg": 120.80456026058631, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 434, - "color_complexity": 0.0041415570112380146 - }, - { - "songno": "1001", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.9832834331337326, - "density_peak": 9, - "bpm_avg": 153.79611650485438, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 489, - "color_complexity": 0.0032292721999377665 - }, - { - "songno": "595", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.318982387475538, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 726, - "color_complexity": 0.015172048943461684 - }, - { - "songno": "1029", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.6970443349753697, - "density_peak": 7, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 137, - "color_complexity": 0.00028928209589604265 - }, - { - "songno": "224", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.493064574195197, - "density_peak": 13, - "bpm_avg": 155.0160341151386, - "bpm_change": 6, - "scroll_change": 15, - "rhythm_complexity": 367, - "color_complexity": 0.0038494603983574714 - }, - { - "songno": "542", - "difficulty": "oni", - "note_count": 389, - "density_avg": 4.5084009550206545, - "density_peak": 11, - "bpm_avg": 176.2959640102828, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 352, - "color_complexity": 0.0027699698680541426 - }, - { - "songno": "556", - "difficulty": "oni", - "note_count": 344, - "density_avg": 4.494140249759846, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0019195575173746586 - }, - { - "songno": "230", - "difficulty": "oni", - "note_count": 572, - "density_avg": 5.466360856269113, - "density_peak": 10, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 526, - "color_complexity": 0.002592183676218123 - }, - { - "songno": "218", - "difficulty": "oni", - "note_count": 721, - "density_avg": 6.052062105773896, - "density_peak": 12, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006159150684553403 - }, - { - "songno": "218", - "difficulty": "ura", - "note_count": 873, - "density_avg": 7.327947598253275, - "density_peak": 13, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 803, - "color_complexity": 0.009222251215362675 - }, - { - "songno": "1217", - "difficulty": "oni", - "note_count": 468, - "density_avg": 5.339597315436242, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0026303931062499975 - }, - { - "songno": "783", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.853672716539031, - "density_peak": 13, - "bpm_avg": 184.76230889235575, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.005952612910542715 - }, - { - "songno": "797", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.629820051413882, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.004375354192442994 - }, - { - "songno": "1203", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.7831469979296064, - "density_peak": 8, - "bpm_avg": 105.5, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 353, - "color_complexity": 0.001620439267666786 - }, - { - "songno": "967", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.273966493055556, - "density_peak": 10, - "bpm_avg": 139.99099999999945, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.00316696150767669 - }, - { - "songno": "973", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.998938428874735, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.0036980176505468825 - }, - { - "songno": "998", - "difficulty": "oni", - "note_count": 729, - "density_avg": 5.069100391134289, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.0037032911514235274 - }, - { - "songno": "740", - "difficulty": "oni", - "note_count": 546, - "density_avg": 4.9167608942141126, - "density_peak": 13, - "bpm_avg": 227.51318681318511, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 413, - "color_complexity": 0.0038746520210597344 - }, - { - "songno": "754", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.3876096491228065, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 616, - "color_complexity": 0.0039568554825932176 - }, - { - "songno": "1363", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.298859315589354, - "density_peak": 9, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.002909629113272306 - }, - { - "songno": "1405", - "difficulty": "oni", - "note_count": 905, - "density_avg": 8.115489130434783, - "density_peak": 15, - "bpm_avg": 198, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 793, - "color_complexity": 0.01367789493391424 - }, - { - "songno": "191", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "1411", - "difficulty": "oni", - "note_count": 815, - "density_avg": 7.149122807017544, - "density_peak": 16, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 754, - "color_complexity": 0.010987100546798512 - }, - { - "songno": "1411", - "difficulty": "ura", - "note_count": 1030, - "density_avg": 9.035087719298245, - "density_peak": 21, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 871, - "color_complexity": 0.01751565204361806 - }, - { - "songno": "1377", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.2605177173432605, - "density_peak": 11, - "bpm_avg": 175.9732854578097, - "bpm_change": 12, - "scroll_change": 51, - "rhythm_complexity": 488, - "color_complexity": 0.0028268855546321916 - }, - { - "songno": "53", - "difficulty": "oni", - "note_count": 677, - "density_avg": 6.297674418604651, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 668, - "color_complexity": 0.005633050564261022 - }, - { - "songno": "1", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.492187500000001, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.009891807575505564 - }, - { - "songno": "1439", - "difficulty": "oni", - "note_count": 515, - "density_avg": 4.366434378629501, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.003186931904927284 - }, - { - "songno": "47", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.537210756722952, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0036966843633750917 - }, - { - "songno": "152", - "difficulty": "oni", - "note_count": 790, - "density_avg": 6.786941580756014, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 772, - "color_complexity": 0.007224909302394338 - }, - { - "songno": "146", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.326530612244897, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0027306366559499227 - }, - { - "songno": "608", - "difficulty": "oni", - "note_count": 340, - "density_avg": 4.077437987658843, - "density_peak": 8, - "bpm_avg": 123.01835294117646, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0014977887112729207 - }, - { - "songno": "90", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.396129032258065, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 671, - "color_complexity": 0.006354437659333248 - }, - { - "songno": "1388", - "difficulty": "oni", - "note_count": 529, - "density_avg": 6.134893184130213, - "density_peak": 11, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004569550340306123 - }, - { - "songno": "1388", - "difficulty": "ura", - "note_count": 586, - "density_avg": 6.6937875751503, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 546, - "color_complexity": 0.005590770347448972 - }, - { - "songno": "1161", - "difficulty": "oni", - "note_count": 428, - "density_avg": 4.330952380952381, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 375, - "color_complexity": 0.001530776101022984 - }, - { - "songno": "1175", - "difficulty": "oni", - "note_count": 591, - "density_avg": 4.607796610169491, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0028313233753878906 - }, - { - "songno": "387", - "difficulty": "oni", - "note_count": 492, - "density_avg": 4.121170395869191, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.0028687784003459354 - }, - { - "songno": "1149", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.279824561403508, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.002973089013621057 - }, - { - "songno": "1149", - "difficulty": "ura", - "note_count": 921, - "density_avg": 6.867105263157895, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 866, - "color_complexity": 0.008701597588183433 - }, - { - "songno": "350", - "difficulty": "oni", - "note_count": 593, - "density_avg": 4.764846202134337, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 552, - "color_complexity": 0.0031287421234234766 - }, - { - "songno": "436", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.100462962962963, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 453, - "color_complexity": 0.002085368284081056 - }, - { - "songno": "422", - "difficulty": "oni", - "note_count": 642, - "density_avg": 4.787588388192328, - "density_peak": 9, - "bpm_avg": 168.40109034267914, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 626, - "color_complexity": 0.0025335209773418403 - }, - { - "songno": "422", - "difficulty": "ura", - "note_count": 776, - "density_avg": 5.733735468466125, - "density_peak": 12, - "bpm_avg": 168.39948453608247, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 751, - "color_complexity": 0.0068508851411107465 - }, - { - "songno": "344", - "difficulty": "oni", - "note_count": 589, - "density_avg": 5.06171875, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 571, - "color_complexity": 0.0035770335315490403 - }, - { - "songno": "408", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.15936183760187, - "density_peak": 8, - "bpm_avg": 138.00010335917312, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0019142434638521426 - }, - { - "songno": "1188", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.109756097560976, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0014355189115646276 - }, - { - "songno": "434", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.526062062100932, - "density_peak": 10, - "bpm_avg": 134.15181623931622, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 407, - "color_complexity": 0.0019305950588551313 - }, - { - "songno": "352", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.275996112730807, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.00175747217315632 - }, - { - "songno": "346", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.5215517241379315, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006534743216641864 - }, - { - "songno": "420", - "difficulty": "oni", - "note_count": 382, - "density_avg": 4.05105090072067, - "density_peak": 10, - "bpm_avg": 160.0165445026178, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 330, - "color_complexity": 0.002331989717786926 - }, - { - "songno": "1163", - "difficulty": "oni", - "note_count": 690, - "density_avg": 5.5089820359281445, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 601, - "color_complexity": 0.005152595473704029 - }, - { - "songno": "391", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.139559543230016, - "density_peak": 12, - "bpm_avg": 169.00195195195195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 585, - "color_complexity": 0.005039326552726177 - }, - { - "songno": "385", - "difficulty": "oni", - "note_count": 386, - "density_avg": 5.911711711711712, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 371, - "color_complexity": 0.004340141742112481 - }, - { - "songno": "1177", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.056490384615385, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0015148063329031769 - }, - { - "songno": "92", - "difficulty": "oni", - "note_count": 383, - "density_avg": 2.9730593607305935, - "density_peak": 7, - "bpm_avg": 135.9947780678851, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 294, - "color_complexity": 0.0015399932555156637 - }, - { - "songno": "92", - "difficulty": "ura", - "note_count": 612, - "density_avg": 4.6103635462669414, - "density_peak": 9, - "bpm_avg": 135.98039215686273, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0024325994798297043 - }, - { - "songno": "86", - "difficulty": "oni", - "note_count": 651, - "density_avg": 4.6310975609756095, - "density_peak": 12, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0034271167824048198 - }, - { - "songno": "178", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.776917236142749, - "density_peak": 11, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 659, - "color_complexity": 0.005100928970205306 - }, - { - "songno": "178", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.894229309035688, - "density_peak": 12, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 788, - "color_complexity": 0.008269205784819907 - }, - { - "songno": "150", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.965373383395912, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 460, - "color_complexity": 0.003179342186923859 - }, - { - "songno": "150", - "difficulty": "ura", - "note_count": 687, - "density_avg": 6.305381727158949, - "density_peak": 17, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 624, - "color_complexity": 0.005278990123456753 - }, - { - "songno": "144", - "difficulty": "oni", - "note_count": 353, - "density_avg": 4.211799906690268, - "density_peak": 7, - "bpm_avg": 141.95524079320157, - "bpm_change": 16, - "scroll_change": 5, - "rhythm_complexity": 301, - "color_complexity": 0.0015918048010694027 - }, - { - "songno": "3", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.9115044247787614, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0019120605323766514 - }, - { - "songno": "51", - "difficulty": "oni", - "note_count": 454, - "density_avg": 4.906795077581594, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0017135882151237951 - }, - { - "songno": "811", - "difficulty": "oni", - "note_count": 145, - "density_avg": 1.6571428571428573, - "density_peak": 5, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 105, - "color_complexity": 0.00003496439156897107 - }, - { - "songno": "811", - "difficulty": "ura", - "note_count": 468, - "density_avg": 5.348571428571428, - "density_peak": 25, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.000843309872415438 - }, - { - "songno": "45", - "difficulty": "oni", - "note_count": 933, - "density_avg": 7.326442307692307, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 904, - "color_complexity": 0.008993991861728386 - }, - { - "songno": "45", - "difficulty": "ura", - "note_count": 976, - "density_avg": 7.664102564102564, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 947, - "color_complexity": 0.013850611872702267 - }, - { - "songno": "1349", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.602848738635937, - "density_peak": 9, - "bpm_avg": 133.2667910447761, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0024383565456923134 - }, - { - "songno": "805", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.263554571576617, - "density_peak": 11, - "bpm_avg": 300.0189189189189, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 648, - "color_complexity": 0.006582447664600062 - }, - { - "songno": "193", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.74135687732342, - "density_peak": 11, - "bpm_avg": 150.05000000000192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.004252055304796902 - }, - { - "songno": "1407", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.9456140350877194, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 310, - "color_complexity": 0.0012789427836762696 - }, - { - "songno": "1361", - "difficulty": "oni", - "note_count": 387, - "density_avg": 3.3793257423532035, - "density_peak": 6, - "bpm_avg": 127.72093023255815, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 340, - "color_complexity": 0.000699219979472848 - }, - { - "songno": "79", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.00538131288279, - "density_peak": 11, - "bpm_avg": 159.94520426287735, - "bpm_change": 14, - "scroll_change": 8, - "rhythm_complexity": 485, - "color_complexity": 0.003747675989800532 - }, - { - "songno": "1375", - "difficulty": "oni", - "note_count": 190, - "density_avg": 1.8766400710394626, - "density_peak": 4, - "bpm_avg": 70.73902631578949, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 164, - "color_complexity": 0.0001944750770985111 - }, - { - "songno": "839", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.9583333333333335, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 272, - "color_complexity": 0.0008918354565697317 - }, - { - "songno": "1413", - "difficulty": "oni", - "note_count": 622, - "density_avg": 5.219462873673885, - "density_peak": 10, - "bpm_avg": 181.32475884244374, - "bpm_change": 29, - "scroll_change": 28, - "rhythm_complexity": 535, - "color_complexity": 0.003154895573120465 - }, - { - "songno": "1413", - "difficulty": "ura", - "note_count": 866, - "density_avg": 7.222925509249093, - "density_peak": 15, - "bpm_avg": 183.27367205542726, - "bpm_change": 34, - "scroll_change": 38, - "rhythm_complexity": 699, - "color_complexity": 0.01078114234258459 - }, - { - "songno": "187", - "difficulty": "oni", - "note_count": 846, - "density_avg": 6.666619337683021, - "density_peak": 13, - "bpm_avg": 185.46099290780143, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 797, - "color_complexity": 0.010330007279750442 - }, - { - "songno": "187", - "difficulty": "ura", - "note_count": 753, - "density_avg": 5.948886020948067, - "density_peak": 13, - "bpm_avg": 185.39442231075697, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 696, - "color_complexity": 0.009033002101284568 - }, - { - "songno": "742", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.149540229885058, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 567, - "color_complexity": 0.00387217110199955 - }, - { - "songno": "756", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.991386217948718, - "density_peak": 16, - "bpm_avg": 205, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 870, - "color_complexity": 0.014804465446167496 - }, - { - "songno": "1229", - "difficulty": "oni", - "note_count": 969, - "density_avg": 6.884600938967137, - "density_peak": 16, - "bpm_avg": 216.10681114551085, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 898, - "color_complexity": 0.01320371907889871 - }, - { - "songno": "971", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.225974025974026, - "density_peak": 17, - "bpm_avg": 214, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 765, - "color_complexity": 0.012594515438637684 - }, - { - "songno": "959", - "difficulty": "oni", - "note_count": 671, - "density_avg": 5.168538106861948, - "density_peak": 10, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004870882559130469 - }, - { - "songno": "959", - "difficulty": "ura", - "note_count": 969, - "density_avg": 7.433711507293355, - "density_peak": 15, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 826, - "color_complexity": 0.012659436123553755 - }, - { - "songno": "781", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.080459770114942, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 895, - "color_complexity": 0.014007261227643465 - }, - { - "songno": "1215", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.0917941585535464, - "density_peak": 14, - "bpm_avg": 268.32191780821915, - "bpm_change": 62, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010456238520281644 - }, - { - "songno": "1215", - "difficulty": "ura", - "note_count": 1353, - "density_avg": 9.408901251738525, - "density_peak": 18, - "bpm_avg": 276.57058388765705, - "bpm_change": 69, - "scroll_change": 0, - "rhythm_complexity": 1278, - "color_complexity": 0.024616621667793968 - }, - { - "songno": "1201", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.9520568284212696, - "density_peak": 11, - "bpm_avg": 199.97635258358673, - "bpm_change": 12, - "scroll_change": 12, - "rhythm_complexity": 226, - "color_complexity": 0.000788095675923605 - }, - { - "songno": "1201", - "difficulty": "ura", - "note_count": 889, - "density_avg": 7.976402349674755, - "density_peak": 14, - "bpm_avg": 200.0003329583802, - "bpm_change": 18, - "scroll_change": 17, - "rhythm_complexity": 790, - "color_complexity": 0.013375321772669582 - }, - { - "songno": "795", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.025, - "density_peak": 7, - "bpm_avg": 183.42028985507247, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0009213481405473305 - }, - { - "songno": "795", - "difficulty": "ura", - "note_count": 532, - "density_avg": 6.084967320261438, - "density_peak": 11, - "bpm_avg": 182.6315789473684, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 413, - "color_complexity": 0.004021757654829363 - }, - { - "songno": "568", - "difficulty": "oni", - "note_count": 829, - "density_avg": 5.9989222478829864, - "density_peak": 12, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 740, - "color_complexity": 0.007838384394011081 - }, - { - "songno": "540", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.379717986410894, - "density_peak": 12, - "bpm_avg": 168.00325000000015, - "bpm_change": 42, - "scroll_change": 4, - "rhythm_complexity": 453, - "color_complexity": 0.004948341856870142 - }, - { - "songno": "226", - "difficulty": "oni", - "note_count": 691, - "density_avg": 5.991329479768786, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 671, - "color_complexity": 0.006179420370120491 - }, - { - "songno": "226", - "difficulty": "ura", - "note_count": 691, - "density_avg": 5.726519337016574, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.0048015509750566855 - }, - { - "songno": "554", - "difficulty": "oni", - "note_count": 661, - "density_avg": 5.8185113268608415, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 632, - "color_complexity": 0.0046141551464559385 - }, - { - "songno": "583", - "difficulty": "oni", - "note_count": 339, - "density_avg": 2.998027892944747, - "density_peak": 10, - "bpm_avg": 159.98834808259585, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 302, - "color_complexity": 0.0014730143572736357 - }, - { - "songno": "1003", - "difficulty": "oni", - "note_count": 312, - "density_avg": 3.5433628318584067, - "density_peak": 7, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 208, - "color_complexity": 0.0007564534779320977 - }, - { - "songno": "1002", - "difficulty": "oni", - "note_count": 420, - "density_avg": 5.71559633027523, - "density_peak": 10, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 384, - "color_complexity": 0.002528679663731411 - }, - { - "songno": "596", - "difficulty": "oni", - "note_count": 622, - "density_avg": 4.990678466076695, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.004067071640300878 - }, - { - "songno": "233", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.155502392344498, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0012268098724489778 - }, - { - "songno": "555", - "difficulty": "oni", - "note_count": 1290, - "density_avg": 8.231221088733648, - "density_peak": 17, - "bpm_avg": 231.4418604651163, - "bpm_change": 7, - "scroll_change": 4, - "rhythm_complexity": 1220, - "color_complexity": 0.020162583684220053 - }, - { - "songno": "541", - "difficulty": "oni", - "note_count": 473, - "density_avg": 5.149255848799893, - "density_peak": 10, - "bpm_avg": 216.4387315010569, - "bpm_change": 35, - "scroll_change": 9, - "rhythm_complexity": 400, - "color_complexity": 0.002421928650842573 - }, - { - "songno": "569", - "difficulty": "oni", - "note_count": 834, - "density_avg": 6.133682527524497, - "density_peak": 15, - "bpm_avg": 190.77937649880096, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 780, - "color_complexity": 0.009285071302363085 - }, - { - "songno": "794", - "difficulty": "oni", - "note_count": 520, - "density_avg": 6.4465528146742574, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 494, - "color_complexity": 0.0039931374796231545 - }, - { - "songno": "1200", - "difficulty": "oni", - "note_count": 305, - "density_avg": 4.166666666666667, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0011883900799521609 - }, - { - "songno": "1214", - "difficulty": "oni", - "note_count": 606, - "density_avg": 4.523876791657335, - "density_peak": 13, - "bpm_avg": 234.74257425742573, - "bpm_change": 14, - "scroll_change": 16, - "rhythm_complexity": 513, - "color_complexity": 0.0031818917706805806 - }, - { - "songno": "1214", - "difficulty": "ura", - "note_count": 1054, - "density_avg": 7.4336970014910815, - "density_peak": 17, - "bpm_avg": 240.8349146110057, - "bpm_change": 14, - "scroll_change": 18, - "rhythm_complexity": 893, - "color_complexity": 0.011510096546646231 - }, - { - "songno": "780", - "difficulty": "oni", - "note_count": 726, - "density_avg": 4.843509789702684, - "density_peak": 14, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00468491088123424 - }, - { - "songno": "958", - "difficulty": "oni", - "note_count": 740, - "density_avg": 6.312261995430313, - "density_peak": 12, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 612, - "color_complexity": 0.007320138014814796 - }, - { - "songno": "958", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.796496572734197, - "density_peak": 16, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 814, - "color_complexity": 0.014845986752224365 - }, - { - "songno": "970", - "difficulty": "oni", - "note_count": 862, - "density_avg": 5.902920443101713, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 742, - "color_complexity": 0.006692307181676403 - }, - { - "songno": "1228", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.355084745762712, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 503, - "color_complexity": 0.0020265120471938797 - }, - { - "songno": "964", - "difficulty": "oni", - "note_count": 316, - "density_avg": 4.704976997072355, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0011802832414593977 - }, - { - "songno": "757", - "difficulty": "oni", - "note_count": 1129, - "density_avg": 8.906391432863304, - "density_peak": 17, - "bpm_avg": 184.92825509300266, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 1078, - "color_complexity": 0.02022480349227142 - }, - { - "songno": "1374", - "difficulty": "oni", - "note_count": 322, - "density_avg": 2.4859218891916437, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.00039185137463781906 - }, - { - "songno": "186", - "difficulty": "oni", - "note_count": 903, - "density_avg": 8.343283582089551, - "density_peak": 19, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 815, - "color_complexity": 0.013033689978820212 - }, - { - "songno": "1412", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.3760683760683765, - "density_peak": 10, - "bpm_avg": 249.60254372019077, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 585, - "color_complexity": 0.003501775762286951 - }, - { - "songno": "1412", - "difficulty": "ura", - "note_count": 987, - "density_avg": 8.330519918973666, - "density_peak": 17, - "bpm_avg": 247.72036474164133, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 959, - "color_complexity": 0.011959811434796245 - }, - { - "songno": "1406", - "difficulty": "oni", - "note_count": 997, - "density_avg": 7.357430816535702, - "density_peak": 22, - "bpm_avg": 255.6198595787362, - "bpm_change": 5, - "scroll_change": 3, - "rhythm_complexity": 836, - "color_complexity": 0.012847516641651149 - }, - { - "songno": "1360", - "difficulty": "oni", - "note_count": 676, - "density_avg": 4.968256450351837, - "density_peak": 8, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.002824719977946671 - }, - { - "songno": "804", - "difficulty": "oni", - "note_count": 540, - "density_avg": 3.8654852596562095, - "density_peak": 10, - "bpm_avg": 149.13314814814802, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 437, - "color_complexity": 0.002834029395221408 - }, - { - "songno": "804", - "difficulty": "ura", - "note_count": 820, - "density_avg": 5.8698109498483175, - "density_peak": 16, - "bpm_avg": 157.5876829268292, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 734, - "color_complexity": 0.010603336900242089 - }, - { - "songno": "1348", - "difficulty": "oni", - "note_count": 474, - "density_avg": 5.2397959183673475, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.003102418990299837 - }, - { - "songno": "44", - "difficulty": "oni", - "note_count": 455, - "density_avg": 4.257309941520467, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 328, - "color_complexity": 0.0014371882674396018 - }, - { - "songno": "2", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.858883994126285, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.001304997117283953 - }, - { - "songno": "623", - "difficulty": "oni", - "note_count": 364, - "density_avg": 5.037001762558617, - "density_peak": 10, - "bpm_avg": 154.23802197802206, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 305, - "color_complexity": 0.0023195794747126134 - }, - { - "songno": "151", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.638321167883212, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.002730370960155398 - }, - { - "songno": "637", - "difficulty": "oni", - "note_count": 736, - "density_avg": 5.5599622285174695, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.004763446263798519 - }, - { - "songno": "87", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.288145669400578, - "density_peak": 11, - "bpm_avg": 152.0453686200378, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 511, - "color_complexity": 0.003837428390011117 - }, - { - "songno": "179", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.9591618693132125, - "density_peak": 15, - "bpm_avg": 213.36365296803686, - "bpm_change": 11, - "scroll_change": 15, - "rhythm_complexity": 808, - "color_complexity": 0.008317609077654609 - }, - { - "songno": "93", - "difficulty": "oni", - "note_count": 659, - "density_avg": 4.8877979977756105, - "density_peak": 13, - "bpm_avg": 162.99015174506792, - "bpm_change": 18, - "scroll_change": 6, - "rhythm_complexity": 573, - "color_complexity": 0.005791591039194993 - }, - { - "songno": "384", - "difficulty": "oni", - "note_count": 345, - "density_avg": 3.6104651162790695, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.001053859936224488 - }, - { - "songno": "1176", - "difficulty": "oni", - "note_count": 502, - "density_avg": 4.248697916666666, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 464, - "color_complexity": 0.0018802655487143488 - }, - { - "songno": "1162", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.78589263420724, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.0017825193420230704 - }, - { - "songno": "390", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.758041958041957, - "density_peak": 8, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0022402315836734694 - }, - { - "songno": "347", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.666666666666667, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.005925731765801294 - }, - { - "songno": "421", - "difficulty": "oni", - "note_count": 1160, - "density_avg": 7.239944521497919, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1133, - "color_complexity": 0.009281254241263113 - }, - { - "songno": "435", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.653513209668354, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0014969167478685944 - }, - { - "songno": "431", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.95820895522388, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 734, - "color_complexity": 0.010140632783933592 - }, - { - "songno": "425", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.898988800751897, - "density_peak": 11, - "bpm_avg": 170.0056862745098, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 665, - "color_complexity": 0.006579899651231696 - }, - { - "songno": "425", - "difficulty": "ura", - "note_count": 876, - "density_avg": 6.755576491539141, - "density_peak": 12, - "bpm_avg": 170.02246575342468, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 819, - "color_complexity": 0.008822365948660765 - }, - { - "songno": "343", - "difficulty": "oni", - "note_count": 375, - "density_avg": 3.817919416506573, - "density_peak": 10, - "bpm_avg": 144.02287999999993, - "bpm_change": 8, - "scroll_change": 7, - "rhythm_complexity": 328, - "color_complexity": 0.0023856146920736144 - }, - { - "songno": "1199", - "difficulty": "oni", - "note_count": 279, - "density_avg": 2.651315789473684, - "density_peak": 7, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00039626902284807894 - }, - { - "songno": "419", - "difficulty": "oni", - "note_count": 769, - "density_avg": 6.580497512437812, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.00952969950011453 - }, - { - "songno": "394", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.871710526315789, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.00545371061728395 - }, - { - "songno": "1166", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.785100286532952, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 750, - "color_complexity": 0.00822286029332596 - }, - { - "songno": "1172", - "difficulty": "oni", - "note_count": 995, - "density_avg": 8.040585676037484, - "density_peak": 22, - "bpm_avg": 241.3386623115556, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 729, - "color_complexity": 0.011765713239051826 - }, - { - "songno": "380", - "difficulty": "oni", - "note_count": 299, - "density_avg": 3.698567708333333, - "density_peak": 10, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 246, - "color_complexity": 0.000826477353899929 - }, - { - "songno": "155", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.582669196710942, - "density_peak": 11, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 521, - "color_complexity": 0.0029702074307249595 - }, - { - "songno": "141", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "627", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.32128514056225, - "density_peak": 18, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 844, - "color_complexity": 0.013643740370567333 - }, - { - "songno": "97", - "difficulty": "oni", - "note_count": 804, - "density_avg": 5.502368987796122, - "density_peak": 13, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.005160073315990605 - }, - { - "songno": "169", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.556042031523643, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 437, - "color_complexity": 0.002719541472348197 - }, - { - "songno": "83", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.751104565537555, - "density_peak": 12, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.003500847777647112 - }, - { - "songno": "1364", - "difficulty": "oni", - "note_count": 683, - "density_avg": 5.382336956521739, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 614, - "color_complexity": 0.005573890630681125 - }, - { - "songno": "1364", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.628260869565218, - "density_peak": 14, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 856, - "color_complexity": 0.013824094595296977 - }, - { - "songno": "68", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.1951404916509984, - "density_peak": 20, - "bpm_avg": 193.25997425997426, - "bpm_change": 9, - "scroll_change": 18, - "rhythm_complexity": 684, - "color_complexity": 0.007131557028309479 - }, - { - "songno": "828", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.472049689440993, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 519, - "color_complexity": 0.002757052519935577 - }, - { - "songno": "196", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.12019286230545, - "density_peak": 11, - "bpm_avg": 159.7987637362637, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 699, - "color_complexity": 0.005276624785479498 - }, - { - "songno": "1402", - "difficulty": "oni", - "note_count": 484, - "density_avg": 5.041865353037767, - "density_peak": 9, - "bpm_avg": 129.53140495867768, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 439, - "color_complexity": 0.0029445082519504533 - }, - { - "songno": "182", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.1155314865499, - "density_peak": 10, - "bpm_avg": 135.90625, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 561, - "color_complexity": 0.0037731412126623337 - }, - { - "songno": "1370", - "difficulty": "oni", - "note_count": 786, - "density_avg": 6.605042016806723, - "density_peak": 12, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.0065039530563881995 - }, - { - "songno": "1370", - "difficulty": "ura", - "note_count": 1123, - "density_avg": 9.07108239095315, - "density_peak": 20, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 1059, - "color_complexity": 0.023218155344590735 - }, - { - "songno": "1358", - "difficulty": "oni", - "note_count": 565, - "density_avg": 3.6808981657179003, - "density_peak": 7, - "bpm_avg": 103, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.0012289794200269165 - }, - { - "songno": "814", - "difficulty": "oni", - "note_count": 996, - "density_avg": 8.645833333333334, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.016097228731845468 - }, - { - "songno": "40", - "difficulty": "oni", - "note_count": 444, - "density_avg": 5.061313225689626, - "density_peak": 10, - "bpm_avg": 145.01000000000002, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.003436544388238737 - }, - { - "songno": "800", - "difficulty": "oni", - "note_count": 657, - "density_avg": 6.3230075187969925, - "density_peak": 12, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.005861746590915558 - }, - { - "songno": "747", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.87431693989071, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 615, - "color_complexity": 0.0068247013233811915 - }, - { - "songno": "753", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.454812707444287, - "density_peak": 10, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 563, - "color_complexity": 0.00474949881619812 - }, - { - "songno": "784", - "difficulty": "oni", - "note_count": 881, - "density_avg": 7.654279569892473, - "density_peak": 15, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 807, - "color_complexity": 0.013132196554557145 - }, - { - "songno": "1210", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.409149072296865, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0024505255433668826 - }, - { - "songno": "1210", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.527831094049904, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.007820728104686347 - }, - { - "songno": "948", - "difficulty": "oni", - "note_count": 915, - "density_avg": 7.336138518806753, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.010411021576164171 - }, - { - "songno": "1204", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.7977566314625832, - "density_peak": 7, - "bpm_avg": 105.01687272727271, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0009566038523754819 - }, - { - "songno": "790", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3398564905414223, - "density_peak": 6, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 285, - "color_complexity": 0.0011190129123896512 - }, - { - "songno": "960", - "difficulty": "oni", - "note_count": 912, - "density_avg": 6.923336457357076, - "density_peak": 17, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 824, - "color_complexity": 0.010948788171929317 - }, - { - "songno": "960", - "difficulty": "ura", - "note_count": 1240, - "density_avg": 9.413308341143392, - "density_peak": 21, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1100, - "color_complexity": 0.02757118652366326 - }, - { - "songno": "974", - "difficulty": "oni", - "note_count": 216, - "density_avg": 2.049438202247191, - "density_peak": 5, - "bpm_avg": 76, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 189, - "color_complexity": 0 - }, - { - "songno": "223", - "difficulty": "oni", - "note_count": 502, - "density_avg": 5.265597261500406, - "density_peak": 10, - "bpm_avg": 219.91035856573706, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 420, - "color_complexity": 0.0035746818287955393 - }, - { - "songno": "545", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.558155740961462, - "density_peak": 8, - "bpm_avg": 232.39000000000038, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.0033004309608055194 - }, - { - "songno": "551", - "difficulty": "oni", - "note_count": 445, - "density_avg": 4.486744893524555, - "density_peak": 8, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016074770172839485 - }, - { - "songno": "551", - "difficulty": "ura", - "note_count": 553, - "density_avg": 5.575662755323772, - "density_peak": 10, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0033299986814814757 - }, - { - "songno": "237", - "difficulty": "oni", - "note_count": 665, - "density_avg": 4.705188679245282, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.003544677151816613 - }, - { - "songno": "579", - "difficulty": "oni", - "note_count": 588, - "density_avg": 5.402990229789272, - "density_peak": 11, - "bpm_avg": 128.26971088435374, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 520, - "color_complexity": 0.003964036631514234 - }, - { - "songno": "579", - "difficulty": "ura", - "note_count": 566, - "density_avg": 5.200837534116884, - "density_peak": 11, - "bpm_avg": 127.67909893992928, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 528, - "color_complexity": 0.0035817216406916637 - }, - { - "songno": "1012", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.424503882657462, - "density_peak": 16, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.01011744099631783 - }, - { - "songno": "1012", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.341242450388266, - "density_peak": 20, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 889, - "color_complexity": 0.014029091892053891 - }, - { - "songno": "586", - "difficulty": "oni", - "note_count": 397, - "density_avg": 4.5567610062893085, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.002075338630209768 - }, - { - "songno": "592", - "difficulty": "oni", - "note_count": 583, - "density_avg": 5.730928104575163, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 536, - "color_complexity": 0.006021851365487564 - }, - { - "songno": "1006", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.9443374598807885, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.0055697224802468935 - }, - { - "songno": "1007", - "difficulty": "oni", - "note_count": 187, - "density_avg": 2.1062404870624047, - "density_peak": 5, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 139, - "color_complexity": 0.00019671832027643094 - }, - { - "songno": "593", - "difficulty": "oni", - "note_count": 787, - "density_avg": 8.943181818181818, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 736, - "color_complexity": 0.011659247594643603 - }, - { - "songno": "587", - "difficulty": "oni", - "note_count": 406, - "density_avg": 5.278, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0031014543347437254 - }, - { - "songno": "1013", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.473381294964029, - "density_peak": 12, - "bpm_avg": 252, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0032918294702747454 - }, - { - "songno": "578", - "difficulty": "oni", - "note_count": 543, - "density_avg": 4.608849490699526, - "density_peak": 10, - "bpm_avg": 195.6503130755065, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 376, - "color_complexity": 0.0024798459154622577 - }, - { - "songno": "550", - "difficulty": "oni", - "note_count": 745, - "density_avg": 6.349431818181818, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.007397296575500027 - }, - { - "songno": "236", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.235159817351598, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0007795086805555548 - }, - { - "songno": "222", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.395323919400793, - "density_peak": 10, - "bpm_avg": 175.5353282442743, - "bpm_change": 16, - "scroll_change": 8, - "rhythm_complexity": 519, - "color_complexity": 0.0028397254514889556 - }, - { - "songno": "222", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 6.710418197558462, - "density_peak": 17, - "bpm_avg": 176.33152999999916, - "bpm_change": 23, - "scroll_change": 8, - "rhythm_complexity": 910, - "color_complexity": 0.01085106024672434 - }, - { - "songno": "544", - "difficulty": "oni", - "note_count": 609, - "density_avg": 5.933744722312439, - "density_peak": 11, - "bpm_avg": 178.6576354679803, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 584, - "color_complexity": 0.004578889320477496 - }, - { - "songno": "975", - "difficulty": "oni", - "note_count": 839, - "density_avg": 6.337274220032842, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 742, - "color_complexity": 0.0076307409603680425 - }, - { - "songno": "961", - "difficulty": "oni", - "note_count": 918, - "density_avg": 8.033080424886192, - "density_peak": 15, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 856, - "color_complexity": 0.011603203928179734 - }, - { - "songno": "1205", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.43354943273906, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 407, - "color_complexity": 0.0027253798759862146 - }, - { - "songno": "949", - "difficulty": "oni", - "note_count": 503, - "density_avg": 4.584635416666667, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.002234156158771279 - }, - { - "songno": "1211", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.132812499999999, - "density_peak": 8, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0018306425635870687 - }, - { - "songno": "785", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.447837150127226, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.007753697556988684 - }, - { - "songno": "746", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.910623427961922, - "density_peak": 15, - "bpm_avg": 139.28680981595093, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 588, - "color_complexity": 0.005363917713302166 - }, - { - "songno": "801", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.4278450363196127, - "density_peak": 6, - "bpm_avg": 121, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0007325713087555813 - }, - { - "songno": "41", - "difficulty": "oni", - "note_count": 676, - "density_avg": 6.364094143404489, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.0074799023930460905 - }, - { - "songno": "815", - "difficulty": "oni", - "note_count": 934, - "density_avg": 7.861952861952862, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 882, - "color_complexity": 0.0106341135190762 - }, - { - "songno": "55", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.846264113892979, - "density_peak": 12, - "bpm_avg": 140.10400000000269, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 719, - "color_complexity": 0.008034533456349005 - }, - { - "songno": "1359", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.0253004427577475, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 339, - "color_complexity": 0.0010969438400292904 - }, - { - "songno": "183", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.594776931447225, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 963, - "color_complexity": 0.011046133392594271 - }, - { - "songno": "1417", - "difficulty": "oni", - "note_count": 416, - "density_avg": 4.481622306717364, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 387, - "color_complexity": 0.00197118978587963 - }, - { - "songno": "1371", - "difficulty": "oni", - "note_count": 597, - "density_avg": 4.846032992930087, - "density_peak": 11, - "bpm_avg": 207.70519262981574, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 505, - "color_complexity": 0.0033778797897327587 - }, - { - "songno": "1371", - "difficulty": "ura", - "note_count": 819, - "density_avg": 6.640251078854452, - "density_peak": 13, - "bpm_avg": 214.42612942612942, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 721, - "color_complexity": 0.009180812697600552 - }, - { - "songno": "1365", - "difficulty": "oni", - "note_count": 636, - "density_avg": 5.235418359057677, - "density_peak": 12, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.004342289394910552 - }, - { - "songno": "1403", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.846960167714885, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.0027071726989258238 - }, - { - "songno": "197", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.200582829185416, - "density_peak": 9, - "bpm_avg": 167.0040606060606, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0017859149852279255 - }, - { - "songno": "197", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.491809826922916, - "density_peak": 12, - "bpm_avg": 167.0055294117647, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.005326583001696681 - }, - { - "songno": "82", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.775363793859752, - "density_peak": 8, - "bpm_avg": 111.05051835853128, - "bpm_change": 5, - "scroll_change": 6, - "rhythm_complexity": 424, - "color_complexity": 0.001945637675925473 - }, - { - "songno": "96", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.951510388308949, - "density_peak": 13, - "bpm_avg": 136.28221649484536, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 693, - "color_complexity": 0.0064522079293448395 - }, - { - "songno": "168", - "difficulty": "oni", - "note_count": 926, - "density_avg": 7.593528368794326, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.009431230001141383 - }, - { - "songno": "140", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.383458646616542, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.002023183832199547 - }, - { - "songno": "140", - "difficulty": "ura", - "note_count": 900, - "density_avg": 6.7669172932330826, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 837, - "color_complexity": 0.008599765361353855 - }, - { - "songno": "626", - "difficulty": "oni", - "note_count": 682, - "density_avg": 4.895284115829499, - "density_peak": 11, - "bpm_avg": 207.99706744868035, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 562, - "color_complexity": 0.004039241809345363 - }, - { - "songno": "626", - "difficulty": "ura", - "note_count": 1038, - "density_avg": 7.450593712948709, - "density_peak": 15, - "bpm_avg": 208.53082851637765, - "bpm_change": 25, - "scroll_change": 4, - "rhythm_complexity": 903, - "color_complexity": 0.017847570993143443 - }, - { - "songno": "154", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.42570281124498, - "density_peak": 12, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 713, - "color_complexity": 0.004604810736362368 - }, - { - "songno": "154", - "difficulty": "ura", - "note_count": 715, - "density_avg": 6.125836680053547, - "density_peak": 17, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 667, - "color_complexity": 0.004752308184206484 - }, - { - "songno": "1173", - "difficulty": "oni", - "note_count": 819, - "density_avg": 7.508840864440079, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 763, - "color_complexity": 0.009592316471023363 - }, - { - "songno": "381", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.955742312204971, - "density_peak": 9, - "bpm_avg": 179.26491646778044, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 401, - "color_complexity": 0.001423618560845573 - }, - { - "songno": "395", - "difficulty": "oni", - "note_count": 604, - "density_avg": 5.716088328075709, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.004769519402131342 - }, - { - "songno": "1167", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.776421090204933, - "density_peak": 12, - "bpm_avg": 166.64849721706867, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 486, - "color_complexity": 0.002126566604359518 - }, - { - "songno": "418", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.251494768310911, - "density_peak": 12, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 537, - "color_complexity": 0.005891019249115084 - }, - { - "songno": "1198", - "difficulty": "oni", - "note_count": 708, - "density_avg": 6.7420152690763615, - "density_peak": 12, - "bpm_avg": 171.34139830508477, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 649, - "color_complexity": 0.005377823739366038 - }, - { - "songno": "424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.748614021903536, - "density_peak": 12, - "bpm_avg": 175.00762416107392, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 696, - "color_complexity": 0.00652014459445998 - }, - { - "songno": "342", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.507109004739336, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032503275206611573 - }, - { - "songno": "356", - "difficulty": "oni", - "note_count": 570, - "density_avg": 6.824712643678161, - "density_peak": 12, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.004513945578231293 - }, - { - "songno": "430", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.0641087130295768, - "density_peak": 7, - "bpm_avg": 129.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 286, - "color_complexity": 0.0004704779765432086 - }, - { - "songno": "340", - "difficulty": "oni", - "note_count": 538, - "density_avg": 5.512441783100465, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.004311606674063811 - }, - { - "songno": "432", - "difficulty": "oni", - "note_count": 794, - "density_avg": 6.116246498599439, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 753, - "color_complexity": 0.00808079305414643 - }, - { - "songno": "354", - "difficulty": "oni", - "note_count": 570, - "density_avg": 5.3977272727272725, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.002888912925905895 - }, - { - "songno": "368", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.104602510460251, - "density_peak": 6, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.0006784779177676553 - }, - { - "songno": "368", - "difficulty": "ura", - "note_count": 816, - "density_avg": 6.828451882845188, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.0035706481632653024 - }, - { - "songno": "383", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.607514805076435, - "density_peak": 13, - "bpm_avg": 124.02398130841125, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 460, - "color_complexity": 0.002628668752946948 - }, - { - "songno": "1171", - "difficulty": "oni", - "note_count": 647, - "density_avg": 5.283593170007424, - "density_peak": 9, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0036800716326530897 - }, - { - "songno": "1171", - "difficulty": "ura", - "note_count": 870, - "density_avg": 7.096774193548388, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 782, - "color_complexity": 0.010293913885739461 - }, - { - "songno": "1165", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.764462809917355, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 488, - "color_complexity": 0.005490928601838688 - }, - { - "songno": "397", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.792592592592592, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004892909413672529 - }, - { - "songno": "1159", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.665311653116531, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 623, - "color_complexity": 0.0063370985099839156 - }, - { - "songno": "624", - "difficulty": "oni", - "note_count": 476, - "density_avg": 5.086846152415104, - "density_peak": 11, - "bpm_avg": 158.9903844537815, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 387, - "color_complexity": 0.0035114897220843784 - }, - { - "songno": "142", - "difficulty": "oni", - "note_count": 374, - "density_avg": 3.850873679269398, - "density_peak": 8, - "bpm_avg": 160.04160427807486, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0010417564725212153 - }, - { - "songno": "156", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.245303225722078, - "density_peak": 9, - "bpm_avg": 129.97355555555555, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 674, - "color_complexity": 0.004324273473088193 - }, - { - "songno": "156", - "difficulty": "ura", - "note_count": 999, - "density_avg": 6.84974891829589, - "density_peak": 11, - "bpm_avg": 129.95784784784786, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 877, - "color_complexity": 0.00870851332771651 - }, - { - "songno": "630", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.127625186769604, - "density_peak": 14, - "bpm_avg": 197.98951048951048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 793, - "color_complexity": 0.00996794114110347 - }, - { - "songno": "618", - "difficulty": "oni", - "note_count": 450, - "density_avg": 2.959557859413143, - "density_peak": 7, - "bpm_avg": 104.98897777777778, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 342, - "color_complexity": 0.0011989808990196733 - }, - { - "songno": "80", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.150596370938169, - "density_peak": 12, - "bpm_avg": 164.99647887323943, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009185321955568263 - }, - { - "songno": "80", - "difficulty": "ura", - "note_count": 948, - "density_avg": 7.956297370480498, - "density_peak": 13, - "bpm_avg": 164.41244725738397, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.012215325438206293 - }, - { - "songno": "94", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.136403720205955, - "density_peak": 15, - "bpm_avg": 190.85495, - "bpm_change": 9, - "scroll_change": 2, - "rhythm_complexity": 951, - "color_complexity": 0.01409292164827618 - }, - { - "songno": "1373", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.383277456224622, - "density_peak": 9, - "bpm_avg": 144.39680719794342, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 361, - "color_complexity": 0.0013883730557553342 - }, - { - "songno": "1415", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.285714285714286, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 330, - "color_complexity": 0.0013117731039504706 - }, - { - "songno": "181", - "difficulty": "oni", - "note_count": 958, - "density_avg": 7.24543879472693, - "density_peak": 15, - "bpm_avg": 200.79999999999768, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 869, - "color_complexity": 0.013764598164013467 - }, - { - "songno": "181", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.562106847253574, - "density_peak": 21, - "bpm_avg": 200.79999999999728, - "bpm_change": 0, - "scroll_change": 97, - "rhythm_complexity": 919, - "color_complexity": 0.015268327419339723 - }, - { - "songno": "1401", - "difficulty": "oni", - "note_count": 919, - "density_avg": 6.608714043993231, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.009734468185586955 - }, - { - "songno": "1367", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.767708779443255, - "density_peak": 21, - "bpm_avg": 218.9724770642202, - "bpm_change": 14, - "scroll_change": 63, - "rhythm_complexity": 665, - "color_complexity": 0.011174130110903025 - }, - { - "songno": "43", - "difficulty": "oni", - "note_count": 546, - "density_avg": 5.379310344827586, - "density_peak": 12, - "bpm_avg": 198.24175824175825, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 483, - "color_complexity": 0.003468089974759997 - }, - { - "songno": "43", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.536945812807882, - "density_peak": 17, - "bpm_avg": 201.09803921568627, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 687, - "color_complexity": 0.009081133132484391 - }, - { - "songno": "803", - "difficulty": "oni", - "note_count": 1024, - "density_avg": 7.528644499586435, - "density_peak": 13, - "bpm_avg": 222.22000000000105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 974, - "color_complexity": 0.013885935984222594 - }, - { - "songno": "5", - "difficulty": "oni", - "note_count": 848, - "density_avg": 6.189554119655987, - "density_peak": 14, - "bpm_avg": 172.70386792452828, - "bpm_change": 16, - "scroll_change": 15, - "rhythm_complexity": 729, - "color_complexity": 0.0062142659194311944 - }, - { - "songno": "817", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.2587846317066695, - "density_peak": 15, - "bpm_avg": 200.01450980392158, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 687, - "color_complexity": 0.008140177011060406 - }, - { - "songno": "750", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "988", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.1264667535853965, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 746, - "color_complexity": 0.006123601198822141 - }, - { - "songno": "778", - "difficulty": "oni", - "note_count": 788, - "density_avg": 7.6928243116510995, - "density_peak": 17, - "bpm_avg": 226.3365989847717, - "bpm_change": 18, - "scroll_change": 66, - "rhythm_complexity": 624, - "color_complexity": 0.008934335726636976 - }, - { - "songno": "1207", - "difficulty": "oni", - "note_count": 759, - "density_avg": 6.469717362045761, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 744, - "color_complexity": 0.005742742061520157 - }, - { - "songno": "793", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.625766871165644, - "density_peak": 8, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0024683435457593067 - }, - { - "songno": "793", - "difficulty": "ura", - "note_count": 591, - "density_avg": 5.891871165644172, - "density_peak": 12, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0043461886976781695 - }, - { - "songno": "1213", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.464236760124611, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 420, - "color_complexity": 0.0032040001926913735 - }, - { - "songno": "1213", - "difficulty": "ura", - "note_count": 768, - "density_avg": 6.555514018691588, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.008329307549597185 - }, - { - "songno": "977", - "difficulty": "oni", - "note_count": 892, - "density_avg": 7.692403932082216, - "density_peak": 13, - "bpm_avg": 193, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 841, - "color_complexity": 0.010780358781325997 - }, - { - "songno": "963", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.6890756302521, - "density_peak": 10, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 631, - "color_complexity": 0.00395600312500001 - }, - { - "songno": "552", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.3936928971411735, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 489, - "color_complexity": 0.003873716591605892 - }, - { - "songno": "546", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.668952785064181, - "density_peak": 13, - "bpm_avg": 189.66839215686267, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 733, - "color_complexity": 0.007380945314223218 - }, - { - "songno": "220", - "difficulty": "oni", - "note_count": 774, - "density_avg": 6.923662737987307, - "density_peak": 14, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 705, - "color_complexity": 0.007850868394418726 - }, - { - "songno": "208", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.975757575757576, - "density_peak": 7, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 318, - "color_complexity": 0.0010996217679012325 - }, - { - "songno": "591", - "difficulty": "oni", - "note_count": 550, - "density_avg": 6.497445721583653, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.006230203253456314 - }, - { - "songno": "1011", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.038678835289004, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00509121393193868 - }, - { - "songno": "585", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.694927188900561, - "density_peak": 12, - "bpm_avg": 171.13227168949766, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 816, - "color_complexity": 0.006166390185178144 - }, - { - "songno": "1039", - "difficulty": "oni", - "note_count": 979, - "density_avg": 7.178130511463845, - "density_peak": 17, - "bpm_avg": 185.6435137895812, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 910, - "color_complexity": 0.010419887219519058 - }, - { - "songno": "1038", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.156794425087108, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 472, - "color_complexity": 0.0030464437414256286 - }, - { - "songno": "1010", - "difficulty": "oni", - "note_count": 472, - "density_avg": 4.495238095238095, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 421, - "color_complexity": 0.003210095557433995 - }, - { - "songno": "1004", - "difficulty": "oni", - "note_count": 482, - "density_avg": 5.816699282452707, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.004243220327186805 - }, - { - "songno": "209", - "difficulty": "oni", - "note_count": 580, - "density_avg": 5.109935043617381, - "density_peak": 10, - "bpm_avg": 179.98424137931033, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 551, - "color_complexity": 0.002004213840175491 - }, - { - "songno": "547", - "difficulty": "oni", - "note_count": 549, - "density_avg": 4.129386206614364, - "density_peak": 8, - "bpm_avg": 174.987650273224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.00258447784042387 - }, - { - "songno": "221", - "difficulty": "oni", - "note_count": 673, - "density_avg": 4.823610013175231, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.003594547763971267 - }, - { - "songno": "221", - "difficulty": "ura", - "note_count": 800, - "density_avg": 5.6978266561927216, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.0055468972917958265 - }, - { - "songno": "553", - "difficulty": "oni", - "note_count": 797, - "density_avg": 5.524078525641025, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 741, - "color_complexity": 0.002769547858070646 - }, - { - "songno": "553", - "difficulty": "ura", - "note_count": 1208, - "density_avg": 8.37275641025641, - "density_peak": 17, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1152, - "color_complexity": 0.017505897085976867 - }, - { - "songno": "962", - "difficulty": "oni", - "note_count": 335, - "density_avg": 3.7120799273387832, - "density_peak": 7, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0008922093844860172 - }, - { - "songno": "976", - "difficulty": "oni", - "note_count": 524, - "density_avg": 4.435978835978836, - "density_peak": 11, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.003019821877315528 - }, - { - "songno": "1212", - "difficulty": "oni", - "note_count": 251, - "density_avg": 2.894414414414414, - "density_peak": 8, - "bpm_avg": 191.23505976095618, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 219, - "color_complexity": 0.0006565829361958133 - }, - { - "songno": "1212", - "difficulty": "ura", - "note_count": 567, - "density_avg": 6.538378378378378, - "density_peak": 13, - "bpm_avg": 190.64550264550263, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 549, - "color_complexity": 0.005807141929427852 - }, - { - "songno": "786", - "difficulty": "oni", - "note_count": 988, - "density_avg": 7.388888888888889, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 943, - "color_complexity": 0.013753718828957654 - }, - { - "songno": "792", - "difficulty": "oni", - "note_count": 429, - "density_avg": 4.927469879518072, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 397, - "color_complexity": 0.002623869131572016 - }, - { - "songno": "1206", - "difficulty": "oni", - "note_count": 817, - "density_avg": 5.805305542396968, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 747, - "color_complexity": 0.006040146188259872 - }, - { - "songno": "779", - "difficulty": "oni", - "note_count": 983, - "density_avg": 8.610558712121211, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 967, - "color_complexity": 0.01307278424703783 - }, - { - "songno": "745", - "difficulty": "oni", - "note_count": 877, - "density_avg": 8.949047686620432, - "density_peak": 16, - "bpm_avg": 147.37856328392246, - "bpm_change": 8, - "scroll_change": 5, - "rhythm_complexity": 764, - "color_complexity": 0.013001368247462165 - }, - { - "songno": "989", - "difficulty": "oni", - "note_count": 702, - "density_avg": 6.253164556962026, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.006953269428008632 - }, - { - "songno": "751", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.920083682008368, - "density_peak": 11, - "bpm_avg": 149, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.005570093432646433 - }, - { - "songno": "816", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.925, - "density_peak": 13, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 629, - "color_complexity": 0.0071276549487336045 - }, - { - "songno": "816", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.660633484162897, - "density_peak": 18, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 911, - "color_complexity": 0.01703051006851917 - }, - { - "songno": "56", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.710526315789474, - "density_peak": 12, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006675279915123506 - }, - { - "songno": "42", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.7340382630016777, - "density_peak": 6, - "bpm_avg": 96.05787499999998, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.0007873908348305684 - }, - { - "songno": "1428", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.209947643979057, - "density_peak": 10, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.004437146804600891 - }, - { - "songno": "1400", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.088499550763702, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 245, - "color_complexity": 0.0006296764500277547 - }, - { - "songno": "194", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.905559368565545, - "density_peak": 13, - "bpm_avg": 245.759413202934, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 677, - "color_complexity": 0.00810657808974594 - }, - { - "songno": "1366", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.9596284023631747, - "density_peak": 7, - "bpm_avg": 206.02371490280777, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 412, - "color_complexity": 0.0016158759196483428 - }, - { - "songno": "1366", - "difficulty": "ura", - "note_count": 752, - "density_avg": 6.431189111397639, - "density_peak": 14, - "bpm_avg": 206.02291223404254, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 724, - "color_complexity": 0.005002507144932206 - }, - { - "songno": "180", - "difficulty": "oni", - "note_count": 786, - "density_avg": 5.620981988502224, - "density_peak": 13, - "bpm_avg": 185.98715012722644, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 701, - "color_complexity": 0.004677427540990335 - }, - { - "songno": "1414", - "difficulty": "oni", - "note_count": 421, - "density_avg": 3.869485294117647, - "density_peak": 11, - "bpm_avg": 145.90261282660333, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 398, - "color_complexity": 0.0035130826419481854 - }, - { - "songno": "1414", - "difficulty": "ura", - "note_count": 524, - "density_avg": 4.8161764705882355, - "density_peak": 12, - "bpm_avg": 148.7476145038168, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 479, - "color_complexity": 0.004992614716281524 - }, - { - "songno": "95", - "difficulty": "oni", - "note_count": 610, - "density_avg": 5.58260602083915, - "density_peak": 11, - "bpm_avg": 240.00159016393457, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 565, - "color_complexity": 0.0037189892920778535 - }, - { - "songno": "95", - "difficulty": "ura", - "note_count": 861, - "density_avg": 7.879711121217227, - "density_peak": 15, - "bpm_avg": 239.9980371660861, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 838, - "color_complexity": 0.009163695198045368 - }, - { - "songno": "81", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.669449701998124, - "density_peak": 12, - "bpm_avg": 150.1746025877999, - "bpm_change": 15, - "scroll_change": 4, - "rhythm_complexity": 416, - "color_complexity": 0.003117697003649981 - }, - { - "songno": "157", - "difficulty": "oni", - "note_count": 329, - "density_avg": 4.061728395061729, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0010233865435518624 - }, - { - "songno": "625", - "difficulty": "oni", - "note_count": 710, - "density_avg": 5.0643356643356645, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 23, - "rhythm_complexity": 544, - "color_complexity": 0.004051370988278961 - }, - { - "songno": "1158", - "difficulty": "oni", - "note_count": 680, - "density_avg": 5.405405405405405, - "density_peak": 11, - "bpm_avg": 149.83455882352942, - "bpm_change": 2, - "scroll_change": 152, - "rhythm_complexity": 555, - "color_complexity": 0.005146425544873622 - }, - { - "songno": "1164", - "difficulty": "oni", - "note_count": 725, - "density_avg": 5.320785984848484, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.005186734133242906 - }, - { - "songno": "396", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.939102564102564, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.005629562145887713 - }, - { - "songno": "1170", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.102138879561543, - "density_peak": 12, - "bpm_avg": 175.9030065359477, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 719, - "color_complexity": 0.006791863812185975 - }, - { - "songno": "355", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.893704850361197, - "density_peak": 15, - "bpm_avg": 234.4431137724551, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 804, - "color_complexity": 0.007280447263794931 - }, - { - "songno": "341", - "difficulty": "oni", - "note_count": 481, - "density_avg": 4.598470363288719, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 451, - "color_complexity": 0.0030258919556248364 - }, - { - "songno": "427", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.54169888586397, - "density_peak": 14, - "bpm_avg": 171.74774774774775, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 712, - "color_complexity": 0.01151430760134732 - }, - { - "songno": "468", - "difficulty": "oni", - "note_count": 292, - "density_avg": 3.8334358974358973, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0011207831735573044 - }, - { - "songno": "440", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.612581128307539, - "density_peak": 11, - "bpm_avg": 159.9543378995434, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 580, - "color_complexity": 0.005339377185140268 - }, - { - "songno": "454", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.716612868898978, - "density_peak": 13, - "bpm_avg": 185.44401544401543, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.0080543376503791 - }, - { - "songno": "332", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.893865243432331, - "density_peak": 7, - "bpm_avg": 128.00653562653562, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0008580983056978052 - }, - { - "songno": "483", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.939965694682676, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 22, - "rhythm_complexity": 546, - "color_complexity": 0.0042729495382928 - }, - { - "songno": "1117", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.05748884639898, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0017342894868998518 - }, - { - "songno": "1103", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.794805194805194, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0017068116335411908 - }, - { - "songno": "1103", - "difficulty": "ura", - "note_count": 699, - "density_avg": 7.2557017543859645, - "density_peak": 15, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.006939321632125484 - }, - { - "songno": "497", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.994999999999999, - "density_peak": 9, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 522, - "color_complexity": 0.003669970311111108 - }, - { - "songno": "118", - "difficulty": "oni", - "note_count": 366, - "density_avg": 3.8199608610567513, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0015429870175956057 - }, - { - "songno": "118", - "difficulty": "ura", - "note_count": 743, - "density_avg": 7.744625407166123, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 725, - "color_complexity": 0.00658672465723715 - }, - { - "songno": "642", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.330386740331492, - "density_peak": 12, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.003803308079232605 - }, - { - "songno": "124", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.973137697516931, - "density_peak": 10, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.0038597305257116778 - }, - { - "songno": "25", - "difficulty": "oni", - "note_count": 306, - "density_avg": 3.151415094339623, - "density_peak": 7, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 200, - "color_complexity": 0.0002712413709014524 - }, - { - "songno": "1329", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.863192182410423, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 663, - "color_complexity": 0.006160795551172387 - }, - { - "songno": "1329", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.645408163265306, - "density_peak": 19, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 829, - "color_complexity": 0.016536003856181765 - }, - { - "songno": "865", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.591022727272727, - "density_peak": 10, - "bpm_avg": 134.6699999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.002745650613135159 - }, - { - "songno": "31", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.74304347826087, - "density_peak": 13, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.006213240279046773 - }, - { - "songno": "19", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.577897974853846, - "density_peak": 10, - "bpm_avg": 140.006446991404, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 642, - "color_complexity": 0.0046518737926312306 - }, - { - "songno": "1315", - "difficulty": "oni", - "note_count": 569, - "density_avg": 6.446630888491353, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 554, - "color_complexity": 0.003647510369425553 - }, - { - "songno": "681", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.2405033238366565, - "density_peak": 11, - "bpm_avg": 349.53657789613845, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.006770403176708602 - }, - { - "songno": "681", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.553418803418803, - "density_peak": 13, - "bpm_avg": 349.61712871287125, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 874, - "color_complexity": 0.013146867034298846 - }, - { - "songno": "859", - "difficulty": "oni", - "note_count": 821, - "density_avg": 7.278368794326242, - "density_peak": 16, - "bpm_avg": 174.78684531059685, - "bpm_change": 3, - "scroll_change": 12, - "rhythm_complexity": 680, - "color_complexity": 0.012195921288757045 - }, - { - "songno": "695", - "difficulty": "oni", - "note_count": 901, - "density_avg": 8.029591334318068, - "density_peak": 13, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 852, - "color_complexity": 0.010235725579828603 - }, - { - "songno": "1301", - "difficulty": "oni", - "note_count": 270, - "density_avg": 3.205128205128205, - "density_peak": 6, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 232, - "color_complexity": 0.0007651638374485593 - }, - { - "songno": "736", - "difficulty": "oni", - "note_count": 498, - "density_avg": 3.924600638977636, - "density_peak": 8, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.002857194018570982 - }, - { - "songno": "736", - "difficulty": "ura", - "note_count": 829, - "density_avg": 6.533120340788072, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 687, - "color_complexity": 0.009636496234714059 - }, - { - "songno": "722", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.7697589141275545, - "density_peak": 15, - "bpm_avg": 210.98557692307693, - "bpm_change": 17, - "scroll_change": 7, - "rhythm_complexity": 771, - "color_complexity": 0.008627312496384442 - }, - { - "songno": "911", - "difficulty": "oni", - "note_count": 550, - "density_avg": 4.521674140508221, - "density_peak": 9, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.00304304982072175 - }, - { - "songno": "911", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.848281016442452, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.007040081648242609 - }, - { - "songno": "905", - "difficulty": "oni", - "note_count": 747, - "density_avg": 6.766304347826087, - "density_peak": 17, - "bpm_avg": 243.80856760374832, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 684, - "color_complexity": 0.013035318604540649 - }, - { - "songno": "1249", - "difficulty": "oni", - "note_count": 809, - "density_avg": 6.241366642174872, - "density_peak": 13, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 743, - "color_complexity": 0.008287972475140527 - }, - { - "songno": "1249", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 8.921368765926465, - "density_peak": 19, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1001, - "color_complexity": 0.019728057499140254 - }, - { - "songno": "1261", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "939", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1275", - "difficulty": "oni", - "note_count": 512, - "density_avg": 4.447339847991314, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 476, - "color_complexity": 0.0029049006846869076 - }, - { - "songno": "1088", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.4275303643724695, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0009625791821487533 - }, - { - "songno": "1088", - "difficulty": "ura", - "note_count": 669, - "density_avg": 7.181435487265839, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 661, - "color_complexity": 0.004905382530864201 - }, - { - "songno": "252", - "difficulty": "oni", - "note_count": 802, - "density_avg": 5.370859728506788, - "density_peak": 12, - "bpm_avg": 177.60000000000267, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.005244939571555594 - }, - { - "songno": "534", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.682173228182733, - "density_peak": 9, - "bpm_avg": 160.12050541516214, - "bpm_change": 33, - "scroll_change": 2, - "rhythm_complexity": 476, - "color_complexity": 0.0026761583506185365 - }, - { - "songno": "520", - "difficulty": "oni", - "note_count": 1071, - "density_avg": 6.69375, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1024, - "color_complexity": 0.005957452838151928 - }, - { - "songno": "520", - "difficulty": "ura", - "note_count": 1408, - "density_avg": 8.8, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1339, - "color_complexity": 0.014006391813888871 - }, - { - "songno": "246", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.19240790655885, - "density_peak": 7, - "bpm_avg": 179, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 365, - "color_complexity": 0.0009459781568985699 - }, - { - "songno": "291", - "difficulty": "oni", - "note_count": 722, - "density_avg": 4.458657335161869, - "density_peak": 10, - "bpm_avg": 138.49015235457057, - "bpm_change": 65, - "scroll_change": 5, - "rhythm_complexity": 570, - "color_complexity": 0.003939506226192449 - }, - { - "songno": "1063", - "difficulty": "oni", - "note_count": 233, - "density_avg": 3.126412429378531, - "density_peak": 7, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0005572428665910098 - }, - { - "songno": "1077", - "difficulty": "oni", - "note_count": 661, - "density_avg": 4.362489557226399, - "density_peak": 8, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0021825557321554574 - }, - { - "songno": "1077", - "difficulty": "ura", - "note_count": 978, - "density_avg": 6.454636591478696, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 933, - "color_complexity": 0.008111015328558846 - }, - { - "songno": "285", - "difficulty": "oni", - "note_count": 831, - "density_avg": 4.739777777777777, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.003950487947050744 - }, - { - "songno": "285", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 5.703703703703703, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 930, - "color_complexity": 0.007952864150925951 - }, - { - "songno": "1076", - "difficulty": "oni", - "note_count": 268, - "density_avg": 3.172149695387293, - "density_peak": 7, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 252, - "color_complexity": 0.0007572133486028209 - }, - { - "songno": "284", - "difficulty": "oni", - "note_count": 480, - "density_avg": 4.188481675392671, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0020017827356111403 - }, - { - "songno": "284", - "difficulty": "ura", - "note_count": 688, - "density_avg": 6.083112290008842, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 656, - "color_complexity": 0.007194786523731172 - }, - { - "songno": "1062", - "difficulty": "oni", - "note_count": 411, - "density_avg": 4.765217391304348, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.0023948800302751533 - }, - { - "songno": "247", - "difficulty": "oni", - "note_count": 463, - "density_avg": 5.401666666666666, - "density_peak": 12, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.003573478522824629 - }, - { - "songno": "253", - "difficulty": "oni", - "note_count": 485, - "density_avg": 5.574712643678161, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.003843793398841019 - }, - { - "songno": "253", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.341991341991342, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 604, - "color_complexity": 0.006129374814814834 - }, - { - "songno": "535", - "difficulty": "oni", - "note_count": 410, - "density_avg": 4.874341610233258, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.0018738400167455378 - }, - { - "songno": "1089", - "difficulty": "oni", - "note_count": 461, - "density_avg": 5.274367436743675, - "density_peak": 8, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 396, - "color_complexity": 0.002109912667673027 - }, - { - "songno": "1274", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.409819121447028, - "density_peak": 11, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 571, - "color_complexity": 0.00229482111491551 - }, - { - "songno": "1274", - "difficulty": "ura", - "note_count": 906, - "density_avg": 6.203875968992248, - "density_peak": 13, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 855, - "color_complexity": 0.006991300047894472 - }, - { - "songno": "938", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.30130548302872, - "density_peak": 11, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.004930845866851957 - }, - { - "songno": "938", - "difficulty": "ura", - "note_count": 893, - "density_avg": 7.305657093124455, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.011765853918948962 - }, - { - "songno": "1260", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "1248", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.7716588986949344, - "density_peak": 11, - "bpm_avg": 128.1006160164271, - "bpm_change": 9, - "scroll_change": 26, - "rhythm_complexity": 365, - "color_complexity": 0.0023718757897255582 - }, - { - "songno": "910", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.592857142857143, - "density_peak": 14, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 10, - "rhythm_complexity": 607, - "color_complexity": 0.0070297102040816455 - }, - { - "songno": "723", - "difficulty": "oni", - "note_count": 818, - "density_avg": 7.316013628620102, - "density_peak": 17, - "bpm_avg": 208.86308068459658, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 766, - "color_complexity": 0.01543448357574908 - }, - { - "songno": "737", - "difficulty": "oni", - "note_count": 851, - "density_avg": 7.058681780924423, - "density_peak": 14, - "bpm_avg": 255.14688601645125, - "bpm_change": 6, - "scroll_change": 14, - "rhythm_complexity": 812, - "color_complexity": 0.009798307375454942 - }, - { - "songno": "1300", - "difficulty": "oni", - "note_count": 277, - "density_avg": 3.3390985324947593, - "density_peak": 6, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 247, - "color_complexity": 0.0007231685106202011 - }, - { - "songno": "694", - "difficulty": "oni", - "note_count": 304, - "density_avg": 2.4184271476732855, - "density_peak": 5, - "bpm_avg": 86.27661842105262, - "bpm_change": 11, - "scroll_change": 1, - "rhythm_complexity": 134, - "color_complexity": 0.0005287222518615498 - }, - { - "songno": "858", - "difficulty": "oni", - "note_count": 756, - "density_avg": 8.116055889434469, - "density_peak": 19, - "bpm_avg": 258.07473544973544, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 606, - "color_complexity": 0.01259380808891444 - }, - { - "songno": "680", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.306436781609195, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 776, - "color_complexity": 0.01018153529428208 - }, - { - "songno": "1314", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.5234415249871205, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0015259255319242464 - }, - { - "songno": "18", - "difficulty": "oni", - "note_count": 233, - "density_avg": 2.3241161616161614, - "density_peak": 6, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 195, - "color_complexity": 0.00044659974301822084 - }, - { - "songno": "864", - "difficulty": "oni", - "note_count": 882, - "density_avg": 5.9638297297297305, - "density_peak": 12, - "bpm_avg": 150.11000000000038, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 773, - "color_complexity": 0.0071132767572012635 - }, - { - "songno": "1328", - "difficulty": "oni", - "note_count": 1020, - "density_avg": 7.639776181874257, - "density_peak": 15, - "bpm_avg": 167.97058823529412, - "bpm_change": 9, - "scroll_change": 1, - "rhythm_complexity": 866, - "color_complexity": 0.012699294447011882 - }, - { - "songno": "131", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.1615676359039195, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 840, - "color_complexity": 0.009776475112071855 - }, - { - "songno": "496", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.5812236286919825, - "density_peak": 12, - "bpm_avg": 142.92192192192192, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 613, - "color_complexity": 0.004533200876904673 - }, - { - "songno": "1102", - "difficulty": "oni", - "note_count": 263, - "density_avg": 3.8770077007700774, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 229, - "color_complexity": 0.0004279434841514448 - }, - { - "songno": "1116", - "difficulty": "oni", - "note_count": 412, - "density_avg": 4.790697674418604, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0024907495874056927 - }, - { - "songno": "1116", - "difficulty": "ura", - "note_count": 600, - "density_avg": 6.976744186046512, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.00560416025449816 - }, - { - "songno": "482", - "difficulty": "oni", - "note_count": 346, - "density_avg": 2.9666666666666663, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0006757930263849239 - }, - { - "songno": "482", - "difficulty": "ura", - "note_count": 513, - "density_avg": 4.398554913294797, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 480, - "color_complexity": 0.0035907131067730576 - }, - { - "songno": "455", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.1903055443863675, - "density_peak": 13, - "bpm_avg": 126.00394557823128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 381, - "color_complexity": 0.001977270342343761 - }, - { - "songno": "333", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.486187845303867, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 193, - "color_complexity": 0.00022257125724363814 - }, - { - "songno": "441", - "difficulty": "oni", - "note_count": 951, - "density_avg": 7.644336795390784, - "density_peak": 19, - "bpm_avg": 241.40495268138804, - "bpm_change": 9, - "scroll_change": 29, - "rhythm_complexity": 831, - "color_complexity": 0.01139316057942693 - }, - { - "songno": "469", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.18925831202046, - "density_peak": 8, - "bpm_avg": 105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 442, - "color_complexity": 0.001774896406877779 - }, - { - "songno": "319", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.28423676012461, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0027857307485154507 - }, - { - "songno": "331", - "difficulty": "oni", - "note_count": 794, - "density_avg": 7.565777217437103, - "density_peak": 25, - "bpm_avg": 234.34867758186388, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.011788821284054146 - }, - { - "songno": "457", - "difficulty": "oni", - "note_count": 683, - "density_avg": 4.904137947063638, - "density_peak": 10, - "bpm_avg": 165.31679355783308, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 634, - "color_complexity": 0.005521762476981634 - }, - { - "songno": "457", - "difficulty": "ura", - "note_count": 1142, - "density_avg": 8.036951747666846, - "density_peak": 18, - "bpm_avg": 166.5690455341506, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 913, - "color_complexity": 0.011444538633832872 - }, - { - "songno": "443", - "difficulty": "oni", - "note_count": 480, - "density_avg": 3.9844357976653693, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 441, - "color_complexity": 0.0021895043268307965 - }, - { - "songno": "1100", - "difficulty": "oni", - "note_count": 627, - "density_avg": 4.823076923076922, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 579, - "color_complexity": 0.0021371049502445848 - }, - { - "songno": "1100", - "difficulty": "ura", - "note_count": 1107, - "density_avg": 8.179802955665025, - "density_peak": 17, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 999, - "color_complexity": 0.013102841020408195 - }, - { - "songno": "480", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.398998330550919, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.0018797628022121156 - }, - { - "songno": "1114", - "difficulty": "oni", - "note_count": 369, - "density_avg": 4.786699507389163, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.0010793154580246889 - }, - { - "songno": "133", - "difficulty": "oni", - "note_count": 544, - "density_avg": 5.0057545623698445, - "density_peak": 10, - "bpm_avg": 144.92279411764707, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0032187253988867075 - }, - { - "songno": "127", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.927693018955154, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 639, - "color_complexity": 0.005087802207716049 - }, - { - "songno": "641", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.359351596313936, - "density_peak": 13, - "bpm_avg": 183.46736596736596, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.007526604336568293 - }, - { - "songno": "32", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.0825386386057225, - "density_peak": 11, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002612798357609391 - }, - { - "songno": "26", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.028589263420724, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.002527332777864558 - }, - { - "songno": "866", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.45085665999179, - "density_peak": 13, - "bpm_avg": 217.26135013623974, - "bpm_change": 43, - "scroll_change": 48, - "rhythm_complexity": 613, - "color_complexity": 0.009144396327225066 - }, - { - "songno": "866", - "difficulty": "ura", - "note_count": 1059, - "density_avg": 7.81759859835489, - "density_peak": 19, - "bpm_avg": 219.09038054768666, - "bpm_change": 45, - "scroll_change": 50, - "rhythm_complexity": 951, - "color_complexity": 0.01660116475855062 - }, - { - "songno": "1302", - "difficulty": "oni", - "note_count": 224, - "density_avg": 3.0713947990543735, - "density_peak": 6, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 198, - "color_complexity": 0.0005196148454731401 - }, - { - "songno": "1316", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.258333333333334, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 337, - "color_complexity": 0.0013286353470143718 - }, - { - "songno": "709", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.732472324723247, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 387, - "color_complexity": 0.0016200186091317227 - }, - { - "songno": "721", - "difficulty": "oni", - "note_count": 923, - "density_avg": 7.917892156862746, - "density_peak": 15, - "bpm_avg": 204.88082340195015, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.012838028494088861 - }, - { - "songno": "721", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 9.548801870251314, - "density_peak": 26, - "bpm_avg": 204.24164524421593, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1051, - "color_complexity": 0.022632751140664233 - }, - { - "songno": "735", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.531003382187148, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.003388610484622033 - }, - { - "songno": "735", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 8.267568583239383, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 48, - "rhythm_complexity": 952, - "color_complexity": 0.01657038160020572 - }, - { - "songno": "906", - "difficulty": "oni", - "note_count": 696, - "density_avg": 7.472659176029962, - "density_peak": 15, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 624, - "color_complexity": 0.00839009090689488 - }, - { - "songno": "1276", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.493214019388516, - "density_peak": 13, - "bpm_avg": 216.7317972715736, - "bpm_change": 5, - "scroll_change": 8, - "rhythm_complexity": 688, - "color_complexity": 0.007771442995791033 - }, - { - "songno": "1276", - "difficulty": "ura", - "note_count": 982, - "density_avg": 8.089534992079024, - "density_peak": 17, - "bpm_avg": 217.068641802444, - "bpm_change": 5, - "scroll_change": 10, - "rhythm_complexity": 796, - "color_complexity": 0.015560678058738977 - }, - { - "songno": "1262", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "279", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.401634877384196, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 681, - "color_complexity": 0.0056647583111110985 - }, - { - "songno": "523", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.7142857142857144, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.001784775393817142 - }, - { - "songno": "537", - "difficulty": "oni", - "note_count": 889, - "density_avg": 6.808141878274888, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.0073329498418997115 - }, - { - "songno": "537", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.313939393939394, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 1024, - "color_complexity": 0.013760207343649366 - }, - { - "songno": "251", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.363757416230901, - "density_peak": 13, - "bpm_avg": 186.34351949420443, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 902, - "color_complexity": 0.00947505778911815 - }, - { - "songno": "1048", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.0745706892495885, - "density_peak": 16, - "bpm_avg": 303.39435774309726, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 731, - "color_complexity": 0.0073422698513376265 - }, - { - "songno": "1048", - "difficulty": "ura", - "note_count": 1210, - "density_avg": 8.823806163255703, - "density_peak": 20, - "bpm_avg": 306.797520661157, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 1104, - "color_complexity": 0.02650355526827244 - }, - { - "songno": "286", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.269201444823582, - "density_peak": 15, - "bpm_avg": 208.30490236382323, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 907, - "color_complexity": 0.014135846372470484 - }, - { - "songno": "1074", - "difficulty": "oni", - "note_count": 275, - "density_avg": 1.7748151589665229, - "density_peak": 5, - "bpm_avg": 130.66709090909075, - "bpm_change": 11, - "scroll_change": 7, - "rhythm_complexity": 207, - "color_complexity": 0.00027986797386202303 - }, - { - "songno": "1060", - "difficulty": "oni", - "note_count": 500, - "density_avg": 5.930470347648262, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.002777855949231541 - }, - { - "songno": "1061", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.065082508250826, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 420, - "color_complexity": 0.0025310427215227017 - }, - { - "songno": "1061", - "difficulty": "ura", - "note_count": 641, - "density_avg": 7.439235080778107, - "density_peak": 16, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.006176335937067828 - }, - { - "songno": "293", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.9115131578947375, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.003279314286055951 - }, - { - "songno": "287", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.9213917525773185, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 599, - "color_complexity": 0.002723945555555559 - }, - { - "songno": "1075", - "difficulty": "oni", - "note_count": 412, - "density_avg": 3.9806763285024154, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.001552322414077725 - }, - { - "songno": "1049", - "difficulty": "oni", - "note_count": 904, - "density_avg": 7.082621082621083, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.011640283195851569 - }, - { - "songno": "536", - "difficulty": "oni", - "note_count": 799, - "density_avg": 6.234971098265896, - "density_peak": 11, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.006309692173469361 - }, - { - "songno": "250", - "difficulty": "oni", - "note_count": 431, - "density_avg": 4.221134020618557, - "density_peak": 7, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.001356092488888879 - }, - { - "songno": "278", - "difficulty": "oni", - "note_count": 453, - "density_avg": 4.724022346368715, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 427, - "color_complexity": 0.00194132242501966 - }, - { - "songno": "278", - "difficulty": "ura", - "note_count": 541, - "density_avg": 5.648023862788963, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 496, - "color_complexity": 0.003116365466390776 - }, - { - "songno": "1263", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1277", - "difficulty": "oni", - "note_count": 491, - "density_avg": 5.385740402193784, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 428, - "color_complexity": 0.002492755502040824 - }, - { - "songno": "913", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.1119047619047615, - "density_peak": 8, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0012284065765495128 - }, - { - "songno": "907", - "difficulty": "oni", - "note_count": 782, - "density_avg": 6.61590524534687, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 766, - "color_complexity": 0.0077117502362762935 - }, - { - "songno": "734", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.751937984496124, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 970, - "color_complexity": 0.012236749636918528 - }, - { - "songno": "720", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.019466316710411, - "density_peak": 16, - "bpm_avg": 163.7781875658588, - "bpm_change": 13, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.01109974827783315 - }, - { - "songno": "1317", - "difficulty": "oni", - "note_count": 1234, - "density_avg": 9.02537216828479, - "density_peak": 23, - "bpm_avg": 226, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1091, - "color_complexity": 0.017659061497894216 - }, - { - "songno": "1303", - "difficulty": "oni", - "note_count": 331, - "density_avg": 3.787117117117117, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 262, - "color_complexity": 0.000637195013216569 - }, - { - "songno": "1303", - "difficulty": "ura", - "note_count": 548, - "density_avg": 6.26990990990991, - "density_peak": 10, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0038538314767354843 - }, - { - "songno": "697", - "difficulty": "oni", - "note_count": 944, - "density_avg": 8.292297899427117, - "density_peak": 15, - "bpm_avg": 207, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.01912440595191157 - }, - { - "songno": "1465", - "difficulty": "oni", - "note_count": 779, - "density_avg": 5.435659246575343, - "density_peak": 10, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.004299677582128451 - }, - { - "songno": "1465", - "difficulty": "ura", - "note_count": 1226, - "density_avg": 8.51098807495741, - "density_peak": 15, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 1153, - "color_complexity": 0.020153963714935035 - }, - { - "songno": "867", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.747089947089947, - "density_peak": 13, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 128, - "rhythm_complexity": 711, - "color_complexity": 0.010588617046977307 - }, - { - "songno": "27", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.489850746268657, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0021718089383166426 - }, - { - "songno": "33", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 8.508038585209004, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1084, - "color_complexity": 0.02041182051630919 - }, - { - "songno": "126", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.4937901482506324, - "density_peak": 9, - "bpm_avg": 131.52388333333312, - "bpm_change": 48, - "scroll_change": 5, - "rhythm_complexity": 286, - "color_complexity": 0.0013998820823004033 - }, - { - "songno": "640", - "difficulty": "oni", - "note_count": 614, - "density_avg": 5.6095332671300895, - "density_peak": 11, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 519, - "color_complexity": 0.004641319526988624 - }, - { - "songno": "898", - "difficulty": "oni", - "note_count": 580, - "density_avg": 3.877495908984278, - "density_peak": 9, - "bpm_avg": 150.02112068965528, - "bpm_change": 19, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.001957649136187011 - }, - { - "songno": "898", - "difficulty": "ura", - "note_count": 938, - "density_avg": 6.368815541641498, - "density_peak": 15, - "bpm_avg": 149.99675906183387, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.00939578637419635 - }, - { - "songno": "654", - "difficulty": "oni", - "note_count": 616, - "density_avg": 3.92536183938386, - "density_peak": 10, - "bpm_avg": 186.79998376623294, - "bpm_change": 41, - "scroll_change": 6, - "rhythm_complexity": 470, - "color_complexity": 0.0028585566705724417 - }, - { - "songno": "132", - "difficulty": "oni", - "note_count": 563, - "density_avg": 4.691666666666667, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.002632860677335451 - }, - { - "songno": "668", - "difficulty": "oni", - "note_count": 156, - "density_avg": 3.177829262914469, - "density_peak": 7, - "bpm_avg": 135.98147435897434, - "bpm_change": 11, - "scroll_change": 13, - "rhythm_complexity": 127, - "color_complexity": 0.0008434745846855931 - }, - { - "songno": "1115", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.168462926836902, - "density_peak": 9, - "bpm_avg": 174.25453874538744, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 508, - "color_complexity": 0.00322141847576798 - }, - { - "songno": "481", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.73644578313253, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 517, - "color_complexity": 0.0047526776359383405 - }, - { - "songno": "481", - "difficulty": "ura", - "note_count": 475, - "density_avg": 4.053714859437751, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.0018344381725787617 - }, - { - "songno": "495", - "difficulty": "oni", - "note_count": 993, - "density_avg": 7.860899067005938, - "density_peak": 13, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 791, - "color_complexity": 0.012232142048901003 - }, - { - "songno": "1101", - "difficulty": "oni", - "note_count": 495, - "density_avg": 5.7894736842105265, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 465, - "color_complexity": 0.0032142460871756066 - }, - { - "songno": "1129", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.159734126855776, - "density_peak": 15, - "bpm_avg": 296.9753340184995, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 923, - "color_complexity": 0.009354891517815087 - }, - { - "songno": "1129", - "difficulty": "ura", - "note_count": 1365, - "density_avg": 10.044231329042274, - "density_peak": 20, - "bpm_avg": 296.7956043956044, - "bpm_change": 2, - "scroll_change": 15, - "rhythm_complexity": 1282, - "color_complexity": 0.02926541851588723 - }, - { - "songno": "442", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.122371364653243, - "density_peak": 12, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 20, - "rhythm_complexity": 734, - "color_complexity": 0.009553534772088045 - }, - { - "songno": "324", - "difficulty": "oni", - "note_count": 697, - "density_avg": 4.525265259199076, - "density_peak": 10, - "bpm_avg": 268.00206599713056, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 620, - "color_complexity": 0.003041911468725504 - }, - { - "songno": "324", - "difficulty": "ura", - "note_count": 765, - "density_avg": 4.966754552779474, - "density_peak": 12, - "bpm_avg": 268.00470588235294, - "bpm_change": 1, - "scroll_change": 22, - "rhythm_complexity": 692, - "color_complexity": 0.006480207457907696 - }, - { - "songno": "456", - "difficulty": "oni", - "note_count": 1052, - "density_avg": 6.975627240143369, - "density_peak": 15, - "bpm_avg": 296, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 1020, - "color_complexity": 0.0104755202393025 - }, - { - "songno": "452", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.981268011527377, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.009637653491878782 - }, - { - "songno": "446", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.244131455399061, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 623, - "color_complexity": 0.006658715071534216 - }, - { - "songno": "308", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.795676429567643, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.00253320567901235 - }, - { - "songno": "1105", - "difficulty": "oni", - "note_count": 463, - "density_avg": 4.185310734463277, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002284756822053213 - }, - { - "songno": "491", - "difficulty": "oni", - "note_count": 932, - "density_avg": 6.502331793527954, - "density_peak": 14, - "bpm_avg": 161.98175965665223, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 856, - "color_complexity": 0.00782917512138684 - }, - { - "songno": "1111", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.501388888888889, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.002801646771296996 - }, - { - "songno": "1139", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.968747990482927, - "density_peak": 11, - "bpm_avg": 152.99175824175825, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 604, - "color_complexity": 0.0052596733884919394 - }, - { - "songno": "136", - "difficulty": "oni", - "note_count": 814, - "density_avg": 7.643192488262911, - "density_peak": 16, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 764, - "color_complexity": 0.010545037209956436 - }, - { - "songno": "888", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.460512681214576, - "density_peak": 11, - "bpm_avg": 144.99224422442217, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.0030275976389252494 - }, - { - "songno": "650", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.469626168224299, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.0041490764891975365 - }, - { - "songno": "644", - "difficulty": "oni", - "note_count": 526, - "density_avg": 3.742728343561653, - "density_peak": 10, - "bpm_avg": 195.00511406844106, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 490, - "color_complexity": 0.00343634256456614 - }, - { - "songno": "122", - "difficulty": "oni", - "note_count": 321, - "density_avg": 3.6626159554730977, - "density_peak": 8, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.001234696834722224 - }, - { - "songno": "678", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.8727205610926547, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0009340853032533977 - }, - { - "songno": "693", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.2436549692893575, - "density_peak": 10, - "bpm_avg": 181.52077328646715, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 494, - "color_complexity": 0.003001491882724897 - }, - { - "songno": "1307", - "difficulty": "oni", - "note_count": 616, - "density_avg": 5.09201318555651, - "density_peak": 10, - "bpm_avg": 146.6896103896104, - "bpm_change": 12, - "scroll_change": 5, - "rhythm_complexity": 584, - "color_complexity": 0.0037493678072959163 - }, - { - "songno": "1313", - "difficulty": "oni", - "note_count": 528, - "density_avg": 6.195515695067265, - "density_peak": 11, - "bpm_avg": 178.7064393939394, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 478, - "color_complexity": 0.004343619469181911 - }, - { - "songno": "687", - "difficulty": "oni", - "note_count": 567, - "density_avg": 3.9722033898305087, - "density_peak": 9, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 423, - "color_complexity": 0.00212110526565366 - }, - { - "songno": "37", - "difficulty": "oni", - "note_count": 701, - "density_avg": 4.963402298850575, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.004542184760286857 - }, - { - "songno": "877", - "difficulty": "oni", - "note_count": 399, - "density_avg": 2.915068493150685, - "density_peak": 6, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0006517097687074822 - }, - { - "songno": "1449", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.530859832068721, - "density_peak": 15, - "bpm_avg": 136.7059413580248, - "bpm_change": 16, - "scroll_change": 14, - "rhythm_complexity": 584, - "color_complexity": 0.005670735901267075 - }, - { - "songno": "724", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.593963254593176, - "density_peak": 13, - "bpm_avg": 193.7581241956242, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 716, - "color_complexity": 0.007963062210979383 - }, - { - "songno": "730", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.04524886877828, - "density_peak": 11, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 638, - "color_complexity": 0.0032692740965143156 - }, - { - "songno": "730", - "difficulty": "ura", - "note_count": 1037, - "density_avg": 7.681481481481482, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1024, - "color_complexity": 0.011726198575945777 - }, - { - "songno": "1298", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.149059334298119, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.004107696043726675 - }, - { - "songno": "1273", - "difficulty": "oni", - "note_count": 559, - "density_avg": 4.3843137254901965, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.00328769555464253 - }, - { - "songno": "1267", - "difficulty": "oni", - "note_count": 460, - "density_avg": 4.924574209245741, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0025164288827408967 - }, - { - "songno": "917", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.838535080038504, - "density_peak": 10, - "bpm_avg": 145.02262365591397, - "bpm_change": 6, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0033781766485795534 - }, - { - "songno": "526", - "difficulty": "oni", - "note_count": 714, - "density_avg": 5.871710526315789, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.006141511181211432 - }, - { - "songno": "268", - "difficulty": "oni", - "note_count": 378, - "density_avg": 4.1902325581395345, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0021932849596014987 - }, - { - "songno": "1071", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.9375, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.008914481841283513 - }, - { - "songno": "283", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.639147061016703, - "density_peak": 14, - "bpm_avg": 205.49019607843138, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 653, - "color_complexity": 0.007625387708608697 - }, - { - "songno": "283", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.669944985562987, - "density_peak": 18, - "bpm_avg": 205.3053053053053, - "bpm_change": 4, - "scroll_change": 13, - "rhythm_complexity": 872, - "color_complexity": 0.01671678965963029 - }, - { - "songno": "297", - "difficulty": "oni", - "note_count": 624, - "density_avg": 5.595547309833024, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.003784621852709177 - }, - { - "songno": "1065", - "difficulty": "oni", - "note_count": 336, - "density_avg": 4.592, - "density_peak": 8, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0009060710100874766 - }, - { - "songno": "1059", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.345862335653519, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 378, - "color_complexity": 0.0019647515162428087 - }, - { - "songno": "1058", - "difficulty": "oni", - "note_count": 795, - "density_avg": 6.5645371577574965, - "density_peak": 11, - "bpm_avg": 189.76815094339622, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 783, - "color_complexity": 0.00496280243878555 - }, - { - "songno": "1058", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.233376792698826, - "density_peak": 13, - "bpm_avg": 189.7895890410959, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 820, - "color_complexity": 0.00983635725238653 - }, - { - "songno": "296", - "difficulty": "oni", - "note_count": 587, - "density_avg": 6.103056269637246, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.003780445755006863 - }, - { - "songno": "1064", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.6298761904761907, - "density_peak": 9, - "bpm_avg": 164.81599999999935, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0009446727030675987 - }, - { - "songno": "1070", - "difficulty": "oni", - "note_count": 573, - "density_avg": 4.2308186195826645, - "density_peak": 8, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.0023749551743585374 - }, - { - "songno": "269", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.350411700975081, - "density_peak": 16, - "bpm_avg": 153.24000000000194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.00800766673684429 - }, - { - "songno": "255", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.924686192468619, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0028616076480792695 - }, - { - "songno": "527", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "241", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.6587995337995336, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.0012068473393913384 - }, - { - "songno": "1266", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "719", - "difficulty": "oni", - "note_count": 839, - "density_avg": 5.97153024911032, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.006764592762703618 - }, - { - "songno": "725", - "difficulty": "oni", - "note_count": 498, - "density_avg": 4.2872689814712395, - "density_peak": 8, - "bpm_avg": 167.41385542168666, - "bpm_change": 15, - "scroll_change": 10, - "rhythm_complexity": 443, - "color_complexity": 0.0017903915766308703 - }, - { - "songno": "22", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.3395061728395055, - "density_peak": 10, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 544, - "color_complexity": 0.004619385588120113 - }, - { - "songno": "36", - "difficulty": "oni", - "note_count": 368, - "density_avg": 2.5309236947791165, - "density_peak": 8, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0006423521938571453 - }, - { - "songno": "686", - "difficulty": "oni", - "note_count": 925, - "density_avg": 7.2146962233169125, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 876, - "color_complexity": 0.011704902266348089 - }, - { - "songno": "1312", - "difficulty": "oni", - "note_count": 360, - "density_avg": 4.335078534031414, - "density_peak": 7, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0013944065741496629 - }, - { - "songno": "1312", - "difficulty": "ura", - "note_count": 526, - "density_avg": 6.056570713391739, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 495, - "color_complexity": 0.002340517933844544 - }, - { - "songno": "1306", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.591201027617212, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 475, - "color_complexity": 0.0030538636486317824 - }, - { - "songno": "645", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.683760683760684, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006414190609269058 - }, - { - "songno": "645", - "difficulty": "ura", - "note_count": 832, - "density_avg": 7.300333810205055, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 816, - "color_complexity": 0.009342611821617549 - }, - { - "songno": "123", - "difficulty": "oni", - "note_count": 528, - "density_avg": 5.995604395604396, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 518, - "color_complexity": 0.0045457546914036626 - }, - { - "songno": "137", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "651", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.9873396065012825, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.00553034806308897 - }, - { - "songno": "889", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.066865375062096, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.002981817735605234 - }, - { - "songno": "1138", - "difficulty": "oni", - "note_count": 448, - "density_avg": 5.3096296296296295, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.003017227591582135 - }, - { - "songno": "1110", - "difficulty": "oni", - "note_count": 251, - "density_avg": 3.164316239316239, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0004965848950098353 - }, - { - "songno": "484", - "difficulty": "oni", - "note_count": 520, - "density_avg": 4.227642276422764, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 40, - "rhythm_complexity": 455, - "color_complexity": 0.0028291318569163963 - }, - { - "songno": "1104", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.403447789220843, - "density_peak": 16, - "bpm_avg": 193.87020262216922, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 780, - "color_complexity": 0.014285011267083994 - }, - { - "songno": "309", - "difficulty": "oni", - "note_count": 618, - "density_avg": 5.3794604812109235, - "density_peak": 11, - "bpm_avg": 154.40082524271844, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 519, - "color_complexity": 0.003937963855438437 - }, - { - "songno": "309", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.625254662687328, - "density_peak": 15, - "bpm_avg": 154.5685388127854, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 757, - "color_complexity": 0.01123083437064483 - }, - { - "songno": "321", - "difficulty": "oni", - "note_count": 639, - "density_avg": 5.020324508966695, - "density_peak": 10, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.003100579766717255 - }, - { - "songno": "447", - "difficulty": "oni", - "note_count": 494, - "density_avg": 4.526693227091633, - "density_peak": 9, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 448, - "color_complexity": 0.0021139227356413745 - }, - { - "songno": "447", - "difficulty": "ura", - "note_count": 666, - "density_avg": 6.066534653465347, - "density_peak": 10, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.004969979980555542 - }, - { - "songno": "453", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.92126329787234, - "density_peak": 11, - "bpm_avg": 156.29999999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 968, - "color_complexity": 0.009461813131184854 - }, - { - "songno": "335", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.878111511478374, - "density_peak": 16, - "bpm_avg": 205.3310502283105, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 863, - "color_complexity": 0.011918825632733525 - }, - { - "songno": "445", - "difficulty": "oni", - "note_count": 663, - "density_avg": 5.738245614035087, - "density_peak": 11, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 592, - "color_complexity": 0.002741165773605207 - }, - { - "songno": "323", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "337", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.954337899543379, - "density_peak": 10, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 530, - "color_complexity": 0.00540433278911567 - }, - { - "songno": "451", - "difficulty": "oni", - "note_count": 675, - "density_avg": 6.030499075785582, - "density_peak": 12, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.006355690813494686 - }, - { - "songno": "451", - "difficulty": "ura", - "note_count": 904, - "density_avg": 8.076401725200245, - "density_peak": 20, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.016481866291770234 - }, - { - "songno": "479", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.143258426966293, - "density_peak": 10, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 452, - "color_complexity": 0.002890690486212669 - }, - { - "songno": "1112", - "difficulty": "oni", - "note_count": 297, - "density_avg": 3.234262948207171, - "density_peak": 7, - "bpm_avg": 82, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 180, - "color_complexity": 0.0006824491879567726 - }, - { - "songno": "1106", - "difficulty": "oni", - "note_count": 860, - "density_avg": 6.653993663498415, - "density_peak": 16, - "bpm_avg": 229.84186046511627, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 775, - "color_complexity": 0.01017047065329758 - }, - { - "songno": "492", - "difficulty": "oni", - "note_count": 145, - "density_avg": 2.1286701208981, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 85, - "color_complexity": 0.0001495424017940449 - }, - { - "songno": "121", - "difficulty": "oni", - "note_count": 961, - "density_avg": 6.779719459795932, - "density_peak": 12, - "bpm_avg": 160.00915712799167, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 892, - "color_complexity": 0.009872271932460493 - }, - { - "songno": "647", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.119283746556475, - "density_peak": 11, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.0075567133961082205 - }, - { - "songno": "653", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.74982332155477, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.006002838991383211 - }, - { - "songno": "135", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.124043176566487, - "density_peak": 7, - "bpm_avg": 127.82057971014493, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 307, - "color_complexity": 0.0014613397656190884 - }, - { - "songno": "135", - "difficulty": "ura", - "note_count": 423, - "density_avg": 5.056435546920649, - "density_peak": 9, - "bpm_avg": 128.03806146572103, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 405, - "color_complexity": 0.002892080706412024 - }, - { - "songno": "109", - "difficulty": "oni", - "note_count": 478, - "density_avg": 4.8141300263059, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.002880150077937775 - }, - { - "songno": "109", - "difficulty": "ura", - "note_count": 497, - "density_avg": 5.192826510721248, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0032293518594411477 - }, - { - "songno": "1310", - "difficulty": "oni", - "note_count": 598, - "density_avg": 5.3257986064533664, - "density_peak": 9, - "bpm_avg": 261.52732441471574, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 575, - "color_complexity": 0.004213323953528848 - }, - { - "songno": "1310", - "difficulty": "ura", - "note_count": 985, - "density_avg": 7.9181984335657365, - "density_peak": 19, - "bpm_avg": 254.14044670050765, - "bpm_change": 9, - "scroll_change": 5, - "rhythm_complexity": 956, - "color_complexity": 0.019816319412825162 - }, - { - "songno": "684", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.283624493743577, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 720, - "color_complexity": 0.008447770747929774 - }, - { - "songno": "1304", - "difficulty": "oni", - "note_count": 575, - "density_avg": 4.523519870235199, - "density_peak": 9, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.0023624683895295574 - }, - { - "songno": "1304", - "difficulty": "ura", - "note_count": 949, - "density_avg": 7.38047704950892, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.009710451252269789 - }, - { - "songno": "848", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.65424076832215, - "density_peak": 7, - "bpm_avg": 180.95689655172413, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 331, - "color_complexity": 0.001347099303615295 - }, - { - "songno": "20", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.491734221728307, - "density_peak": 15, - "bpm_avg": 172.07752941176471, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 699, - "color_complexity": 0.007847222396499294 - }, - { - "songno": "860", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.362857142857142, - "density_peak": 19, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.011084398681655753 - }, - { - "songno": "1338", - "difficulty": "oni", - "note_count": 944, - "density_avg": 6.865454545454545, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 902, - "color_complexity": 0.010048223995663687 - }, - { - "songno": "34", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.754545454545455, - "density_peak": 11, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0020538075597567305 - }, - { - "songno": "874", - "difficulty": "oni", - "note_count": 647, - "density_avg": 4.785740160601408, - "density_peak": 11, - "bpm_avg": 133.0293663060278, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 560, - "color_complexity": 0.003804069931307931 - }, - { - "songno": "733", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.9326823271883042, - "density_peak": 9, - "bpm_avg": 132.03435714285703, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0014474566408557068 - }, - { - "songno": "727", - "difficulty": "oni", - "note_count": 719, - "density_avg": 6.166666666666667, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007623319369613549 - }, - { - "songno": "928", - "difficulty": "oni", - "note_count": 787, - "density_avg": 6.369061652818427, - "density_peak": 16, - "bpm_avg": 156.3456162642948, - "bpm_change": 7, - "scroll_change": 9, - "rhythm_complexity": 670, - "color_complexity": 0.008903162415004665 - }, - { - "songno": "1264", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1264", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "914", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.440860215053763, - "density_peak": 15, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 629, - "color_complexity": 0.00678543800602485 - }, - { - "songno": "1258", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "257", - "difficulty": "oni", - "note_count": 574, - "density_avg": 5.18734793187348, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.003024306608009598 - }, - { - "songno": "243", - "difficulty": "oni", - "note_count": 999, - "density_avg": 7.826923076923077, - "density_peak": 17, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 920, - "color_complexity": 0.0158010503577592 - }, - { - "songno": "525", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.87701317715959, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.005645533537414956 - }, - { - "songno": "1099", - "difficulty": "oni", - "note_count": 753, - "density_avg": 6.486905582356996, - "density_peak": 17, - "bpm_avg": 245.84993359893758, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 610, - "color_complexity": 0.011756473364341697 - }, - { - "songno": "519", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.8282548229615285, - "density_peak": 13, - "bpm_avg": 193.53182666666666, - "bpm_change": 8, - "scroll_change": 4, - "rhythm_complexity": 695, - "color_complexity": 0.007047309575744179 - }, - { - "songno": "519", - "difficulty": "ura", - "note_count": 1045, - "density_avg": 8.120701719993063, - "density_peak": 16, - "bpm_avg": 193.6839043062201, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 957, - "color_complexity": 0.014275378863811972 - }, - { - "songno": "1066", - "difficulty": "oni", - "note_count": 1008, - "density_avg": 8.023880597014927, - "density_peak": 17, - "bpm_avg": 223.83333333333334, - "bpm_change": 2, - "scroll_change": 60, - "rhythm_complexity": 921, - "color_complexity": 0.013031484161489732 - }, - { - "songno": "294", - "difficulty": "oni", - "note_count": 456, - "density_avg": 5.076683607331519, - "density_peak": 10, - "bpm_avg": 169.01565789473682, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0034697152173827597 - }, - { - "songno": "280", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.439428885227897, - "density_peak": 9, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.002407244655127435 - }, - { - "songno": "1072", - "difficulty": "oni", - "note_count": 974, - "density_avg": 6.608182247274705, - "density_peak": 12, - "bpm_avg": 265.2977412731006, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 884, - "color_complexity": 0.0070010094576651374 - }, - { - "songno": "1072", - "difficulty": "ura", - "note_count": 1400, - "density_avg": 9.495571695489103, - "density_peak": 23, - "bpm_avg": 269.7139285714286, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 1277, - "color_complexity": 0.0335805889531643 - }, - { - "songno": "281", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.730113636363637, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 511, - "color_complexity": 0.0042082094969739334 - }, - { - "songno": "281", - "difficulty": "ura", - "note_count": 568, - "density_avg": 4.8, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004120663794395485 - }, - { - "songno": "1073", - "difficulty": "oni", - "note_count": 398, - "density_avg": 3.7932121829710144, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.0012424587810011976 - }, - { - "songno": "1067", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.974137931034483, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.006562313074548445 - }, - { - "songno": "1067", - "difficulty": "ura", - "note_count": 518, - "density_avg": 4.441586280814576, - "density_peak": 12, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.00247671069063878 - }, - { - "songno": "518", - "difficulty": "oni", - "note_count": 987, - "density_avg": 8.803048502151556, - "density_peak": 20, - "bpm_avg": 242.59473150962512, - "bpm_change": 23, - "scroll_change": 201, - "rhythm_complexity": 899, - "color_complexity": 0.018626343258294577 - }, - { - "songno": "1098", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.4555314533622563, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 117, - "color_complexity": 0.0015401502067561236 - }, - { - "songno": "242", - "difficulty": "oni", - "note_count": 377, - "density_avg": 3.3248131539611356, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0009504215126543182 - }, - { - "songno": "524", - "difficulty": "oni", - "note_count": 725, - "density_avg": 6.220714018022406, - "density_peak": 13, - "bpm_avg": 177.29444137930983, - "bpm_change": 66, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.00586770711563485 - }, - { - "songno": "530", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.465020576131686, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0020684337247432526 - }, - { - "songno": "256", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.751552795031056, - "density_peak": 9, - "bpm_avg": 147.41721854304635, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 262, - "color_complexity": 0.0016181926166362723 - }, - { - "songno": "256", - "difficulty": "ura", - "note_count": 416, - "density_avg": 5.143740340030912, - "density_peak": 10, - "bpm_avg": 150.8653846153846, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 354, - "color_complexity": 0.0024673533825034562 - }, - { - "songno": "1259", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "915", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.3522033898305086, - "density_peak": 7, - "bpm_avg": 93, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0008326252898563732 - }, - { - "songno": "1271", - "difficulty": "oni", - "note_count": 395, - "density_avg": 3.6056453883996116, - "density_peak": 7, - "bpm_avg": 104.6088101265824, - "bpm_change": 19, - "scroll_change": 2, - "rhythm_complexity": 342, - "color_complexity": 0.0016478852131883524 - }, - { - "songno": "1271", - "difficulty": "ura", - "note_count": 705, - "density_avg": 6.42036702121103, - "density_peak": 12, - "bpm_avg": 103.91668085106386, - "bpm_change": 25, - "scroll_change": 2, - "rhythm_complexity": 621, - "color_complexity": 0.003912253740360649 - }, - { - "songno": "929", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.489709013484741, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 717, - "color_complexity": 0.008077239489795926 - }, - { - "songno": "726", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.781094527363184, - "density_peak": 10, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0026125022149435817 - }, - { - "songno": "732", - "difficulty": "oni", - "note_count": 327, - "density_avg": 3.4112489803198, - "density_peak": 6, - "bpm_avg": 128.002874617737, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 312, - "color_complexity": 0.0008848248717018 - }, - { - "songno": "875", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.645539906103287, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004144921585630589 - }, - { - "songno": "35", - "difficulty": "oni", - "note_count": 315, - "density_avg": 3.23855421686747, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 240, - "color_complexity": 0.0006133637138780425 - }, - { - "songno": "1339", - "difficulty": "oni", - "note_count": 433, - "density_avg": 4.926052332195677, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002240042845895285 - }, - { - "songno": "861", - "difficulty": "oni", - "note_count": 416, - "density_avg": 5.10063694267516, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.001895326770581583 - }, - { - "songno": "21", - "difficulty": "oni", - "note_count": 835, - "density_avg": 7.665267282395746, - "density_peak": 12, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 791, - "color_complexity": 0.010350692863008938 - }, - { - "songno": "849", - "difficulty": "oni", - "note_count": 1210, - "density_avg": 8.016327577363652, - "density_peak": 21, - "bpm_avg": 293.9834710743802, - "bpm_change": 9, - "scroll_change": 15, - "rhythm_complexity": 1082, - "color_complexity": 0.032368213694464 - }, - { - "songno": "1305", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.909838472834068, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.003986833247174614 - }, - { - "songno": "685", - "difficulty": "oni", - "note_count": 885, - "density_avg": 7.6991813655950425, - "density_peak": 19, - "bpm_avg": 217.13902372881356, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 821, - "color_complexity": 0.011592309992935527 - }, - { - "songno": "1311", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.347980997624703, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 380, - "color_complexity": 0.0023727944962687662 - }, - { - "songno": "1311", - "difficulty": "ura", - "note_count": 897, - "density_avg": 7.463153724247228, - "density_peak": 27, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 763, - "color_complexity": 0.0067704685133135835 - }, - { - "songno": "108", - "difficulty": "oni", - "note_count": 882, - "density_avg": 6.468000000000001, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.009115015090832046 - }, - { - "songno": "652", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.469015003261578, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.002473152164784899 - }, - { - "songno": "652", - "difficulty": "ura", - "note_count": 614, - "density_avg": 5.206784083496412, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 531, - "color_complexity": 0.002866896583522302 - }, - { - "songno": "134", - "difficulty": "oni", - "note_count": 635, - "density_avg": 6.1092246745897, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.005163154842975053 - }, - { - "songno": "120", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.216357950447204, - "density_peak": 20, - "bpm_avg": 206.61401307189553, - "bpm_change": 15, - "scroll_change": 224, - "rhythm_complexity": 543, - "color_complexity": 0.004980770586693651 - }, - { - "songno": "646", - "difficulty": "oni", - "note_count": 456, - "density_avg": 3.5800807537012114, - "density_peak": 8, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0015286650613049817 - }, - { - "songno": "646", - "difficulty": "ura", - "note_count": 756, - "density_avg": 5.935397039030955, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.008138518238598654 - }, - { - "songno": "493", - "difficulty": "oni", - "note_count": 552, - "density_avg": 3.9239193083573487, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 450, - "color_complexity": 0.0017604967403042494 - }, - { - "songno": "493", - "difficulty": "ura", - "note_count": 1035, - "density_avg": 7.357348703170029, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.012013295995585432 - }, - { - "songno": "1107", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.535869996036465, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 814, - "color_complexity": 0.007554047567047632 - }, - { - "songno": "1113", - "difficulty": "oni", - "note_count": 561, - "density_avg": 4.46087786259542, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 553, - "color_complexity": 0.0028368573020750966 - }, - { - "songno": "487", - "difficulty": "oni", - "note_count": 556, - "density_avg": 4.5315763787213275, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0027883777378602532 - }, - { - "songno": "487", - "difficulty": "ura", - "note_count": 806, - "density_avg": 6.569155685700342, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 784, - "color_complexity": 0.007836578406899344 - }, - { - "songno": "478", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.020559210526316, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0026770483889597546 - }, - { - "songno": "336", - "difficulty": "oni", - "note_count": 1304, - "density_avg": 11.808920081503283, - "density_peak": 21, - "bpm_avg": 291.5184049079755, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1255, - "color_complexity": 0.03172641728093539 - }, - { - "songno": "450", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "322", - "difficulty": "oni", - "note_count": 607, - "density_avg": 4.979395030714651, - "density_peak": 13, - "bpm_avg": 149.54920922570017, - "bpm_change": 15, - "scroll_change": 15, - "rhythm_complexity": 560, - "color_complexity": 0.005248271768336951 - } -] \ No newline at end of file diff --git a/output/lightgbm2/features_lgbm.txt b/output/lightgbm2/features_lgbm.txt deleted file mode 100644 index c3200c2..0000000 --- a/output/lightgbm2/features_lgbm.txt +++ /dev/null @@ -1,8 +0,0 @@ -bpm_avg -bpm_change -color_complexity -density_avg -density_peak -note_count -rhythm_complexity -scroll_change diff --git a/output/lightgbm2/model_lgbm.pkl b/output/lightgbm2/model_lgbm.pkl deleted file mode 100644 index 9c39f4e..0000000 Binary files a/output/lightgbm2/model_lgbm.pkl and /dev/null differ diff --git a/output/lightgbm2/scaler_lgbm.pkl b/output/lightgbm2/scaler_lgbm.pkl deleted file mode 100644 index 04d9232..0000000 Binary files a/output/lightgbm2/scaler_lgbm.pkl and /dev/null differ diff --git a/output/lightgbm2/temp.json b/output/lightgbm2/temp.json deleted file mode 100644 index f62e775..0000000 --- a/output/lightgbm2/temp.json +++ /dev/null @@ -1,17594 +0,0 @@ -[ - { - "songno": "449", - "difficulty": "oni", - "note_count": 784, - "density_avg": 5.587527839643652, - "density_peak": 12, - "bpm_avg": 280.46938775510205, - "bpm_change": 2, - "scroll_change": 22, - "rhythm_complexity": 670, - "color_complexity": 0.006692674014408041 - }, - { - "songno": "307", - "difficulty": "oni", - "note_count": 604, - "density_avg": 4.531287297527706, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.004356983446119197 - }, - { - "songno": "461", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.787089080466525, - "density_peak": 13, - "bpm_avg": 185.9635159817354, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 604, - "color_complexity": 0.004993864138842205 - }, - { - "songno": "313", - "difficulty": "oni", - "note_count": 427, - "density_avg": 3.6810344827586206, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.001489031508400551 - }, - { - "songno": "1136", - "difficulty": "oni", - "note_count": 360, - "density_avg": 3.814569536423841, - "density_peak": 7, - "bpm_avg": 96, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0009429447111111097 - }, - { - "songno": "1122", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.956597239601169, - "density_peak": 12, - "bpm_avg": 284.18774045801524, - "bpm_change": 7, - "scroll_change": 16, - "rhythm_complexity": 574, - "color_complexity": 0.004677826484192639 - }, - { - "songno": "1122", - "difficulty": "ura", - "note_count": 1108, - "density_avg": 8.070413061908537, - "density_peak": 19, - "bpm_avg": 283.00328519855594, - "bpm_change": 15, - "scroll_change": 20, - "rhythm_complexity": 994, - "color_complexity": 0.025356178647564762 - }, - { - "songno": "887", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.6222865412445735, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.0068026821675988775 - }, - { - "songno": "139", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.310763888888889, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 621, - "color_complexity": 0.004459180190854104 - }, - { - "songno": "139", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.30859375, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 742, - "color_complexity": 0.008277929116327007 - }, - { - "songno": "663", - "difficulty": "oni", - "note_count": 476, - "density_avg": 4.109953034614047, - "density_peak": 9, - "bpm_avg": 130.0222563025208, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0018006687913481438 - }, - { - "songno": "105", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.0236184143527267, - "density_peak": 7, - "bpm_avg": 139.7528813559323, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 251, - "color_complexity": 0.000919907220485541 - }, - { - "songno": "105", - "difficulty": "ura", - "note_count": 676, - "density_avg": 5.773915390119896, - "density_peak": 10, - "bpm_avg": 140.52822485207096, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 589, - "color_complexity": 0.00501915309149266 - }, - { - "songno": "111", - "difficulty": "oni", - "note_count": 777, - "density_avg": 4.7050971079637005, - "density_peak": 10, - "bpm_avg": 135.94851994851996, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.0034587090618026814 - }, - { - "songno": "677", - "difficulty": "oni", - "note_count": 792, - "density_avg": 7.97583081570997, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.011505421296296236 - }, - { - "songno": "1308", - "difficulty": "oni", - "note_count": 773, - "density_avg": 5.771693790767178, - "density_peak": 13, - "bpm_avg": 239.01681759379042, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 727, - "color_complexity": 0.004041496952479993 - }, - { - "songno": "1308", - "difficulty": "ura", - "note_count": 1090, - "density_avg": 8.134814687221887, - "density_peak": 17, - "bpm_avg": 238.0091743119266, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 1038, - "color_complexity": 0.012863064027688232 - }, - { - "songno": "844", - "difficulty": "oni", - "note_count": 853, - "density_avg": 7.192956349206349, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.009678652688977774 - }, - { - "songno": "10", - "difficulty": "oni", - "note_count": 552, - "density_avg": 6.224101479915433, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0053731713053946 - }, - { - "songno": "688", - "difficulty": "oni", - "note_count": 707, - "density_avg": 5.590339370071598, - "density_peak": 13, - "bpm_avg": 175.99777934936353, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 654, - "color_complexity": 0.0068829446479436295 - }, - { - "songno": "850", - "difficulty": "oni", - "note_count": 872, - "density_avg": 6.794553847245661, - "density_peak": 17, - "bpm_avg": 274.81462155963305, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 703, - "color_complexity": 0.011439028910402393 - }, - { - "songno": "38", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.823086574654956, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.006105417539154131 - }, - { - "songno": "1334", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.035211267605634, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0029164289624079654 - }, - { - "songno": "878", - "difficulty": "oni", - "note_count": 806, - "density_avg": 6.302813376391915, - "density_peak": 16, - "bpm_avg": 255.37493796526053, - "bpm_change": 18, - "scroll_change": 29, - "rhythm_complexity": 676, - "color_complexity": 0.00676603514709561 - }, - { - "songno": "1452", - "difficulty": "oni", - "note_count": 316, - "density_avg": 9.328413284132841, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.00370360888888889 - }, - { - "songno": "1452", - "difficulty": "ura", - "note_count": 364, - "density_avg": 10.7255985267035, - "density_peak": 16, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.005922417777777777 - }, - { - "songno": "1446", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.135464535464536, - "density_peak": 12, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 287, - "color_complexity": 0.0022338303464472424 - }, - { - "songno": "1320", - "difficulty": "oni", - "note_count": 808, - "density_avg": 5.597655209166001, - "density_peak": 10, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 660, - "color_complexity": 0.004510001949763438 - }, - { - "songno": "1320", - "difficulty": "ura", - "note_count": 1111, - "density_avg": 8.00387919091161, - "density_peak": 17, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1020, - "color_complexity": 0.017274985877227887 - }, - { - "songno": "717", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.051711580480699, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.003257797200705463 - }, - { - "songno": "717", - "difficulty": "ura", - "note_count": 888, - "density_avg": 5.859679767103348, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.0064979530110355664 - }, - { - "songno": "1283", - "difficulty": "oni", - "note_count": 292, - "density_avg": 2.5710691823899374, - "density_peak": 6, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007190323891200115 - }, - { - "songno": "1297", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.889774696707105, - "density_peak": 14, - "bpm_avg": 139, - "bpm_change": 0, - "scroll_change": 71, - "rhythm_complexity": 690, - "color_complexity": 0.00893526861494559 - }, - { - "songno": "703", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.337966985230235, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.004553366071901534 - }, - { - "songno": "930", - "difficulty": "oni", - "note_count": 830, - "density_avg": 6.856171039844509, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009572243853901754 - }, - { - "songno": "924", - "difficulty": "oni", - "note_count": 350, - "density_avg": 4.697134566557852, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 338, - "color_complexity": 0.001804688302505356 - }, - { - "songno": "1268", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.332533672783506, - "density_peak": 10, - "bpm_avg": 219.96846280991733, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 552, - "color_complexity": 0.0032868798750415457 - }, - { - "songno": "1268", - "difficulty": "ura", - "note_count": 862, - "density_avg": 7.597758720560962, - "density_peak": 16, - "bpm_avg": 219.97786542923433, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 788, - "color_complexity": 0.010894191901963987 - }, - { - "songno": "1240", - "difficulty": "oni", - "note_count": 362, - "density_avg": 4.114535519125683, - "density_peak": 8, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 341, - "color_complexity": 0.0012868878780337735 - }, - { - "songno": "1240", - "difficulty": "ura", - "note_count": 657, - "density_avg": 7.467540983606558, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 623, - "color_complexity": 0.006901208079133739 - }, - { - "songno": "918", - "difficulty": "oni", - "note_count": 687, - "density_avg": 5.564132231404959, - "density_peak": 10, - "bpm_avg": 147, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.0037093791356749206 - }, - { - "songno": "1254", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.10387323943662, - "density_peak": 10, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.002324958780785769 - }, - { - "songno": "273", - "difficulty": "oni", - "note_count": 536, - "density_avg": 3.8068181818181817, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 509, - "color_complexity": 0.0013844103014602775 - }, - { - "songno": "273", - "difficulty": "ura", - "note_count": 763, - "density_avg": 5.419034090909091, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.005901183240301944 - }, - { - "songno": "1081", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.2018633540372665, - "density_peak": 13, - "bpm_avg": 185.72062084257206, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0036115374738737846 - }, - { - "songno": "1081", - "difficulty": "ura", - "note_count": 876, - "density_avg": 8.061349693251532, - "density_peak": 17, - "bpm_avg": 184.7945205479452, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 795, - "color_complexity": 0.011201968041594108 - }, - { - "songno": "515", - "difficulty": "oni", - "note_count": 488, - "density_avg": 3.964351424306376, - "density_peak": 9, - "bpm_avg": 126.00137295081967, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0017224712869179865 - }, - { - "songno": "501", - "difficulty": "oni", - "note_count": 962, - "density_avg": 6.846975088967972, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.010496300000000026 - }, - { - "songno": "1095", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.266752577319587, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.0017214377433399854 - }, - { - "songno": "267", - "difficulty": "oni", - "note_count": 417, - "density_avg": 3.8167169707310875, - "density_peak": 7, - "bpm_avg": 122.98940047961632, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0013931846914091836 - }, - { - "songno": "298", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.162656400384986, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0036774421583104394 - }, - { - "songno": "1042", - "difficulty": "oni", - "note_count": 885, - "density_avg": 6.954813359528488, - "density_peak": 17, - "bpm_avg": 235.72881355932202, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 861, - "color_complexity": 0.014998699115480149 - }, - { - "songno": "1042", - "difficulty": "ura", - "note_count": 1172, - "density_avg": 9.210216110019646, - "density_peak": 22, - "bpm_avg": 235.13651877133105, - "bpm_change": 6, - "scroll_change": 30, - "rhythm_complexity": 1080, - "color_complexity": 0.026092071293037866 - }, - { - "songno": "1056", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.061631944444445, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.003389508968475695 - }, - { - "songno": "1056", - "difficulty": "ura", - "note_count": 981, - "density_avg": 7.238281250000001, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 822, - "color_complexity": 0.011152284174905557 - }, - { - "songno": "1057", - "difficulty": "oni", - "note_count": 693, - "density_avg": 6.188912614318521, - "density_peak": 9, - "bpm_avg": 189.978354978355, - "bpm_change": 2, - "scroll_change": 38, - "rhythm_complexity": 676, - "color_complexity": 0.004701383799728597 - }, - { - "songno": "1043", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.87114845066276, - "density_peak": 15, - "bpm_avg": 281.053324099723, - "bpm_change": 17, - "scroll_change": 20, - "rhythm_complexity": 645, - "color_complexity": 0.006450077902468618 - }, - { - "songno": "1043", - "difficulty": "ura", - "note_count": 1170, - "density_avg": 9.514187932514444, - "density_peak": 23, - "bpm_avg": 277.8562564102565, - "bpm_change": 21, - "scroll_change": 25, - "rhythm_complexity": 1012, - "color_complexity": 0.018544465114083062 - }, - { - "songno": "299", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.454986894298035, - "density_peak": 9, - "bpm_avg": 150.05410835214448, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0015806091145694461 - }, - { - "songno": "1094", - "difficulty": "oni", - "note_count": 787, - "density_avg": 5.777579365079365, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007064537493320363 - }, - { - "songno": "500", - "difficulty": "oni", - "note_count": 672, - "density_avg": 4.774736842105264, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.0038177443787500687 - }, - { - "songno": "500", - "difficulty": "ura", - "note_count": 931, - "density_avg": 6.615, - "density_peak": 13, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 843, - "color_complexity": 0.010551994809414898 - }, - { - "songno": "266", - "difficulty": "oni", - "note_count": 727, - "density_avg": 6.058333333333333, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.00523845953455764 - }, - { - "songno": "266", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.3, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 822, - "color_complexity": 0.010420249000243716 - }, - { - "songno": "514", - "difficulty": "oni", - "note_count": 814, - "density_avg": 5.973215923683728, - "density_peak": 14, - "bpm_avg": 165.7002457002457, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 686, - "color_complexity": 0.008519774499891938 - }, - { - "songno": "1080", - "difficulty": "oni", - "note_count": 875, - "density_avg": 5.780068330267169, - "density_peak": 13, - "bpm_avg": 196.92365714285708, - "bpm_change": 16, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.007146615914553868 - }, - { - "songno": "1080", - "difficulty": "ura", - "note_count": 1195, - "density_avg": 7.821022092578282, - "density_peak": 20, - "bpm_avg": 191.14794979079488, - "bpm_change": 19, - "scroll_change": 42, - "rhythm_complexity": 1022, - "color_complexity": 0.02013975013518078 - }, - { - "songno": "1255", - "difficulty": "oni", - "note_count": 901, - "density_avg": 7.908777777777777, - "density_peak": 16, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 824, - "color_complexity": 0.011367388067806112 - }, - { - "songno": "919", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.641447554794225, - "density_peak": 14, - "bpm_avg": 196.55979166666668, - "bpm_change": 10, - "scroll_change": 1, - "rhythm_complexity": 602, - "color_complexity": 0.007553145746370371 - }, - { - "songno": "1241", - "difficulty": "oni", - "note_count": 460, - "density_avg": 5.357854406130269, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002625198626415662 - }, - { - "songno": "1269", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.548521256931608, - "density_peak": 8, - "bpm_avg": 169.7357512953368, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0012765241259185696 - }, - { - "songno": "925", - "difficulty": "oni", - "note_count": 402, - "density_avg": 4.852367688022284, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 350, - "color_complexity": 0.0020141831385599505 - }, - { - "songno": "931", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.924268492805577, - "density_peak": 10, - "bpm_avg": 139.81105610561056, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 519, - "color_complexity": 0.005182473838445212 - }, - { - "songno": "702", - "difficulty": "oni", - "note_count": 827, - "density_avg": 7.370254629629629, - "density_peak": 15, - "bpm_avg": 307.0689238210399, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 744, - "color_complexity": 0.010723288557717443 - }, - { - "songno": "1296", - "difficulty": "oni", - "note_count": 599, - "density_avg": 5.878953107960741, - "density_peak": 14, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 530, - "color_complexity": 0.0047220630883788636 - }, - { - "songno": "1282", - "difficulty": "oni", - "note_count": 358, - "density_avg": 2.767731699836277, - "density_peak": 5, - "bpm_avg": 69.51117318435755, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 326, - "color_complexity": 0.0005071411899862813 - }, - { - "songno": "716", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.299784017278617, - "density_peak": 10, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0030277657896664446 - }, - { - "songno": "716", - "difficulty": "ura", - "note_count": 916, - "density_avg": 7.0161702127659575, - "density_peak": 16, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 746, - "color_complexity": 0.01051877614218145 - }, - { - "songno": "1447", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.366637706342311, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 546, - "color_complexity": 0.006275856002078183 - }, - { - "songno": "1321", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.743093922651934, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.00468243012509637 - }, - { - "songno": "879", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.804987298038817, - "density_peak": 13, - "bpm_avg": 164.54063926940913, - "bpm_change": 2, - "scroll_change": 13, - "rhythm_complexity": 780, - "color_complexity": 0.009281100492511754 - }, - { - "songno": "1335", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.9738489871086555, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.0024204684315892594 - }, - { - "songno": "39", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.2819332566168, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.006067056407061526 - }, - { - "songno": "851", - "difficulty": "oni", - "note_count": 1141, - "density_avg": 9.109780439121757, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1082, - "color_complexity": 0.01834452672849811 - }, - { - "songno": "689", - "difficulty": "oni", - "note_count": 558, - "density_avg": 4.79549436795995, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0020224802461305666 - }, - { - "songno": "689", - "difficulty": "ura", - "note_count": 940, - "density_avg": 7.842851356824625, - "density_peak": 14, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 900, - "color_complexity": 0.013325826574036262 - }, - { - "songno": "11", - "difficulty": "oni", - "note_count": 338, - "density_avg": 3.979100529100529, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.0008495953896165008 - }, - { - "songno": "845", - "difficulty": "oni", - "note_count": 632, - "density_avg": 4.764193168433451, - "density_peak": 13, - "bpm_avg": 187.29113924050634, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 582, - "color_complexity": 0.006825138251077646 - }, - { - "songno": "845", - "difficulty": "ura", - "note_count": 1075, - "density_avg": 8.097293056100431, - "density_peak": 20, - "bpm_avg": 206.55627906976744, - "bpm_change": 5, - "scroll_change": 72, - "rhythm_complexity": 968, - "color_complexity": 0.015127150063685387 - }, - { - "songno": "1309", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.473444228071022, - "density_peak": 9, - "bpm_avg": 145.52260162601624, - "bpm_change": 9, - "scroll_change": 11, - "rhythm_complexity": 507, - "color_complexity": 0.0025885878426359895 - }, - { - "songno": "1309", - "difficulty": "ura", - "note_count": 939, - "density_avg": 6.772973581443851, - "density_peak": 16, - "bpm_avg": 147.59201277955273, - "bpm_change": 10, - "scroll_change": 12, - "rhythm_complexity": 808, - "color_complexity": 0.012227426595713463 - }, - { - "songno": "110", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.871428571428571, - "density_peak": 14, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 702, - "color_complexity": 0.010021341608405222 - }, - { - "songno": "676", - "difficulty": "oni", - "note_count": 437, - "density_avg": 3.884444444444444, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0012223281719922372 - }, - { - "songno": "676", - "difficulty": "ura", - "note_count": 667, - "density_avg": 5.644001208824418, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.004799657806185799 - }, - { - "songno": "662", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.276267529665588, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.005613621807659088 - }, - { - "songno": "892", - "difficulty": "oni", - "note_count": 1109, - "density_avg": 8.24299599771298, - "density_peak": 15, - "bpm_avg": 265.04057709648333, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 1000, - "color_complexity": 0.017453126502744783 - }, - { - "songno": "886", - "difficulty": "oni", - "note_count": 349, - "density_avg": 3.0673191749591764, - "density_peak": 7, - "bpm_avg": 139.99272206303726, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0008546809154483517 - }, - { - "songno": "138", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.964285714285714, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.0052534405955924155 - }, - { - "songno": "1123", - "difficulty": "oni", - "note_count": 264, - "density_avg": 2.663677130044843, - "density_peak": 5, - "bpm_avg": 67.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.0004318712794196085 - }, - { - "songno": "1137", - "difficulty": "oni", - "note_count": 770, - "density_avg": 5.96590909090909, - "density_peak": 11, - "bpm_avg": 207.61363636363637, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 756, - "color_complexity": 0.0055544305555555035 - }, - { - "songno": "474", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.821248411934069, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.0022008104828447643 - }, - { - "songno": "312", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4820512820512826, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 265, - "color_complexity": 0.00043966209876543236 - }, - { - "songno": "306", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.377229080932785, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.004581235945311708 - }, - { - "songno": "460", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.4239677744209467, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 253, - "color_complexity": 0.0011835257969693843 - }, - { - "songno": "448", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.055865921787709, - "density_peak": 8, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 398, - "color_complexity": 0.0019192825468789222 - }, - { - "songno": "448", - "difficulty": "ura", - "note_count": 639, - "density_avg": 5.759329608938548, - "density_peak": 13, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 580, - "color_complexity": 0.005227028111131027 - }, - { - "songno": "338", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.713574660633484, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.008195218080555547 - }, - { - "songno": "310", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.914736164736165, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 562, - "color_complexity": 0.004902071568412837 - }, - { - "songno": "310", - "difficulty": "ura", - "note_count": 710, - "density_avg": 7.074895531983285, - "density_peak": 16, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.009715980223240543 - }, - { - "songno": "462", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.825484764542937, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 664, - "color_complexity": 0.005425073578737284 - }, - { - "songno": "304", - "difficulty": "oni", - "note_count": 656, - "density_avg": 4.984802431610943, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.0035966554705215378 - }, - { - "songno": "489", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.153253652058433, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 285, - "color_complexity": 0.0009261243454858258 - }, - { - "songno": "1109", - "difficulty": "oni", - "note_count": 778, - "density_avg": 5.1274600469468465, - "density_peak": 10, - "bpm_avg": 172.2172236503856, - "bpm_change": 4, - "scroll_change": 8, - "rhythm_complexity": 708, - "color_complexity": 0.005392071893761451 - }, - { - "songno": "1121", - "difficulty": "oni", - "note_count": 937, - "density_avg": 6.805207262761218, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.008424583068823538 - }, - { - "songno": "1121", - "difficulty": "ura", - "note_count": 1103, - "density_avg": 7.990295574918845, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 104, - "rhythm_complexity": 1014, - "color_complexity": 0.013420207514881202 - }, - { - "songno": "1135", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3827481256964647, - "density_peak": 7, - "bpm_avg": 139.6446575, - "bpm_change": 74, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0008244971762495653 - }, - { - "songno": "890", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.878893093491634, - "density_peak": 23, - "bpm_avg": 215.56481662591685, - "bpm_change": 3, - "scroll_change": 63, - "rhythm_complexity": 692, - "color_complexity": 0.007223462340697105 - }, - { - "songno": "648", - "difficulty": "oni", - "note_count": 425, - "density_avg": 3.8259835665300748, - "density_peak": 9, - "bpm_avg": 150.34588235294117, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 309, - "color_complexity": 0.0025337343700833877 - }, - { - "songno": "648", - "difficulty": "ura", - "note_count": 635, - "density_avg": 5.716469564109641, - "density_peak": 10, - "bpm_avg": 149.4, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 567, - "color_complexity": 0.004614408200336598 - }, - { - "songno": "884", - "difficulty": "oni", - "note_count": 296, - "density_avg": 2.6636248415716097, - "density_peak": 5, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 270, - "color_complexity": 0.00038172729747033797 - }, - { - "songno": "884", - "difficulty": "ura", - "note_count": 429, - "density_avg": 3.7884328358208954, - "density_peak": 8, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 406, - "color_complexity": 0.0013675083212830042 - }, - { - "songno": "112", - "difficulty": "oni", - "note_count": 658, - "density_avg": 5.253023532916294, - "density_peak": 12, - "bpm_avg": 150.69908814589667, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.0034954625712895386 - }, - { - "songno": "106", - "difficulty": "oni", - "note_count": 608, - "density_avg": 4.595680751173709, - "density_peak": 11, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.004163864524037761 - }, - { - "songno": "106", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.323102310231022, - "density_peak": 12, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.006499025666789507 - }, - { - "songno": "660", - "difficulty": "oni", - "note_count": 746, - "density_avg": 5.8419371458011335, - "density_peak": 11, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 681, - "color_complexity": 0.004872810662308923 - }, - { - "songno": "13", - "difficulty": "oni", - "note_count": 652, - "density_avg": 4.789964306753993, - "density_peak": 15, - "bpm_avg": 183.73312883435582, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 542, - "color_complexity": 0.0035775893385438058 - }, - { - "songno": "847", - "difficulty": "oni", - "note_count": 217, - "density_avg": 2.449382716049383, - "density_peak": 5, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 125, - "color_complexity": 0.00026225457549773254 - }, - { - "songno": "1323", - "difficulty": "oni", - "note_count": 678, - "density_avg": 4.792146596858639, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.00418911277686577 - }, - { - "songno": "1445", - "difficulty": "oni", - "note_count": 313, - "density_avg": 4.553788217747949, - "density_peak": 8, - "bpm_avg": 195.099999999999, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.001053518496089843 - }, - { - "songno": "1451", - "difficulty": "oni", - "note_count": 276, - "density_avg": 8, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 274, - "color_complexity": 0.0013629999999999988 - }, - { - "songno": "1451", - "difficulty": "ura", - "note_count": 334, - "density_avg": 9.657831325301206, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 332, - "color_complexity": 0.0029699999999999974 - }, - { - "songno": "1337", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.466033390903857, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 504, - "color_complexity": 0.0021567929970507274 - }, - { - "songno": "728", - "difficulty": "oni", - "note_count": 633, - "density_avg": 4.306122448979592, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 572, - "color_complexity": 0.003516002661600338 - }, - { - "songno": "1294", - "difficulty": "oni", - "note_count": 307, - "density_avg": 3.547011952191235, - "density_peak": 7, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 269, - "color_complexity": 0.0007957672930532399 - }, - { - "songno": "700", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.693309650680877, - "density_peak": 14, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 560, - "color_complexity": 0.009112909883393238 - }, - { - "songno": "700", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.220959147424512, - "density_peak": 15, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 795, - "color_complexity": 0.015829611055823777 - }, - { - "songno": "714", - "difficulty": "oni", - "note_count": 816, - "density_avg": 5.767393317306, - "density_peak": 11, - "bpm_avg": 127.99754901960785, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 679, - "color_complexity": 0.005419349720496814 - }, - { - "songno": "1280", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.208042328042328, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 259, - "color_complexity": 0.001251865558932129 - }, - { - "songno": "927", - "difficulty": "oni", - "note_count": 817, - "density_avg": 6.923728813559322, - "density_peak": 15, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.009524370009981157 - }, - { - "songno": "933", - "difficulty": "oni", - "note_count": 754, - "density_avg": 6.135792228429214, - "density_peak": 13, - "bpm_avg": 184.24403183023873, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 695, - "color_complexity": 0.006941030233059149 - }, - { - "songno": "1257", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "1243", - "difficulty": "oni", - "note_count": 172, - "density_avg": 2.2941943604574355, - "density_peak": 5, - "bpm_avg": 112.20731395348835, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 98, - "color_complexity": 0.00023208879038365057 - }, - { - "songno": "264", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.067368421052631, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.0013331775341541565 - }, - { - "songno": "264", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.386149003147953, - "density_peak": 17, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 931, - "color_complexity": 0.007155499542542846 - }, - { - "songno": "502", - "difficulty": "oni", - "note_count": 648, - "density_avg": 4.473912409542694, - "density_peak": 12, - "bpm_avg": 244.02237654320987, - "bpm_change": 19, - "scroll_change": 35, - "rhythm_complexity": 569, - "color_complexity": 0.0035150165391702073 - }, - { - "songno": "1096", - "difficulty": "oni", - "note_count": 411, - "density_avg": 3.2178797525898206, - "density_peak": 7, - "bpm_avg": 139.9713868613138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 276, - "color_complexity": 0.000493655691089331 - }, - { - "songno": "1082", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.614365411436541, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.0023097318888378746 - }, - { - "songno": "1082", - "difficulty": "ura", - "note_count": 448, - "density_avg": 4.0613668061366806, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 194, - "color_complexity": 0.0011019428908422544 - }, - { - "songno": "270", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.9876288659793815, - "density_peak": 11, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.004469801528064703 - }, - { - "songno": "270", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.711340206185566, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.004662824928395057 - }, - { - "songno": "1069", - "difficulty": "oni", - "note_count": 766, - "density_avg": 5.894855166450497, - "density_peak": 13, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.0068770676731100535 - }, - { - "songno": "1055", - "difficulty": "oni", - "note_count": 318, - "density_avg": 3.0607287088842856, - "density_peak": 6, - "bpm_avg": 118.64779874213836, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 297, - "color_complexity": 0.0003497159012737784 - }, - { - "songno": "1041", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.706870828030499, - "density_peak": 18, - "bpm_avg": 227.62018730489075, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 812, - "color_complexity": 0.012832984602094512 - }, - { - "songno": "1040", - "difficulty": "oni", - "note_count": 1085, - "density_avg": 8.242753623188408, - "density_peak": 18, - "bpm_avg": 213.5483870967742, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 965, - "color_complexity": 0.015968218300661995 - }, - { - "songno": "1054", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.720156555772994, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0025290626378815 - }, - { - "songno": "1068", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.863992707383774, - "density_peak": 14, - "bpm_avg": 255.12566844919786, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.005791964138130194 - }, - { - "songno": "517", - "difficulty": "oni", - "note_count": 814, - "density_avg": 6.397373929590866, - "density_peak": 14, - "bpm_avg": 181.8095823095823, - "bpm_change": 1, - "scroll_change": 32, - "rhythm_complexity": 749, - "color_complexity": 0.006798216927391931 - }, - { - "songno": "1083", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.861538461538461, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0029674998115468347 - }, - { - "songno": "265", - "difficulty": "oni", - "note_count": 1414, - "density_avg": 8.299364326843058, - "density_peak": 15, - "bpm_avg": 214.70616690240453, - "bpm_change": 25, - "scroll_change": 20, - "rhythm_complexity": 1331, - "color_complexity": 0.018173703563239794 - }, - { - "songno": "1097", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.7577276524644945, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001849195302450555 - }, - { - "songno": "1097", - "difficulty": "ura", - "note_count": 621, - "density_avg": 6.7275, - "density_peak": 18, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 549, - "color_complexity": 0.005603147077769407 - }, - { - "songno": "503", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.702320758171336, - "density_peak": 17, - "bpm_avg": 191.78205128205127, - "bpm_change": 19, - "scroll_change": 18, - "rhythm_complexity": 771, - "color_complexity": 0.014996263091616608 - }, - { - "songno": "259", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.331684981684981, - "density_peak": 13, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 689, - "color_complexity": 0.00801465114055647 - }, - { - "songno": "1242", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.888470112174466, - "density_peak": 12, - "bpm_avg": 168.0115107913669, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 670, - "color_complexity": 0.00495241123441391 - }, - { - "songno": "1256", - "difficulty": "oni", - "note_count": 611, - "density_avg": 4.783050375063426, - "density_peak": 13, - "bpm_avg": 198.7643207855974, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 554, - "color_complexity": 0.0027301159464871287 - }, - { - "songno": "1256", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.820404786723998, - "density_peak": 16, - "bpm_avg": 199.37337337337337, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 914, - "color_complexity": 0.016703133633069436 - }, - { - "songno": "932", - "difficulty": "oni", - "note_count": 618, - "density_avg": 4.336842105263158, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 523, - "color_complexity": 0.002924875537246298 - }, - { - "songno": "926", - "difficulty": "oni", - "note_count": 379, - "density_avg": 4.4018583042973285, - "density_peak": 9, - "bpm_avg": 195.778364116095, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 344, - "color_complexity": 0.0024355778533635616 - }, - { - "songno": "926", - "difficulty": "ura", - "note_count": 486, - "density_avg": 5.644599303135889, - "density_peak": 14, - "bpm_avg": 196.70781893004116, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 473, - "color_complexity": 0.003387862559838752 - }, - { - "songno": "1281", - "difficulty": "oni", - "note_count": 227, - "density_avg": 2.445791245791246, - "density_peak": 5, - "bpm_avg": 64, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0002404172203017832 - }, - { - "songno": "715", - "difficulty": "oni", - "note_count": 868, - "density_avg": 6.799333333333333, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.01134628875880108 - }, - { - "songno": "701", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.786726323639075, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 752, - "color_complexity": 0.005823289006124861 - }, - { - "songno": "1295", - "difficulty": "oni", - "note_count": 189, - "density_avg": 3.0687679083094554, - "density_peak": 6, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 164, - "color_complexity": 0.00026016401427469103 - }, - { - "songno": "1295", - "difficulty": "ura", - "note_count": 452, - "density_avg": 6.969614512471655, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 394, - "color_complexity": 0.004021272310681372 - }, - { - "songno": "1450", - "difficulty": "oni", - "note_count": 208, - "density_avg": 6.540880503144654, - "density_peak": 10, - "bpm_avg": 184.6153846153846, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 206, - "color_complexity": 0.0015812777777777787 - }, - { - "songno": "1450", - "difficulty": "ura", - "note_count": 356, - "density_avg": 11.142410015649453, - "density_peak": 21, - "bpm_avg": 198.87640449438203, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.003905555555555551 - }, - { - "songno": "1336", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.838721804511278, - "density_peak": 9, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0024054803628501026 - }, - { - "songno": "1322", - "difficulty": "oni", - "note_count": 796, - "density_avg": 6.39871382636656, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007560471510146754 - }, - { - "songno": "846", - "difficulty": "oni", - "note_count": 1075, - "density_avg": 7.6326606875934235, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 1028, - "color_complexity": 0.012019652202160877 - }, - { - "songno": "852", - "difficulty": "oni", - "note_count": 646, - "density_avg": 6.333332008926779, - "density_peak": 11, - "bpm_avg": 150.0066563467492, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.005626239483722758 - }, - { - "songno": "12", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.996341168568955, - "density_peak": 13, - "bpm_avg": 166.52425044091711, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 414, - "color_complexity": 0.004864000452060178 - }, - { - "songno": "107", - "difficulty": "oni", - "note_count": 557, - "density_avg": 5.21118234134049, - "density_peak": 11, - "bpm_avg": 182.99942549371633, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.002788441409346582 - }, - { - "songno": "661", - "difficulty": "oni", - "note_count": 343, - "density_avg": 4.0077412373195, - "density_peak": 9, - "bpm_avg": 174.98749271137027, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 295, - "color_complexity": 0.0018034653512230387 - }, - { - "songno": "675", - "difficulty": "oni", - "note_count": 675, - "density_avg": 5.425038639876353, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 650, - "color_complexity": 0.005424337539556581 - }, - { - "songno": "113", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.348435814455232, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 520, - "color_complexity": 0.004471486876451478 - }, - { - "songno": "649", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.002106741573034, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005403401206080654 - }, - { - "songno": "891", - "difficulty": "oni", - "note_count": 637, - "density_avg": 5.5142600574712635, - "density_peak": 13, - "bpm_avg": 120.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 578, - "color_complexity": 0.004390081260147561 - }, - { - "songno": "1134", - "difficulty": "oni", - "note_count": 579, - "density_avg": 4.92947912277412, - "density_peak": 14, - "bpm_avg": 245.72967184801368, - "bpm_change": 43, - "scroll_change": 53, - "rhythm_complexity": 506, - "color_complexity": 0.0037710761659396357 - }, - { - "songno": "1120", - "difficulty": "oni", - "note_count": 569, - "density_avg": 3.848777688254768, - "density_peak": 13, - "bpm_avg": 224.25061511423542, - "bpm_change": 19, - "scroll_change": 16, - "rhythm_complexity": 424, - "color_complexity": 0.002806086031184233 - }, - { - "songno": "1120", - "difficulty": "ura", - "note_count": 1316, - "density_avg": 8.672958041803211, - "density_peak": 19, - "bpm_avg": 230.7918693009118, - "bpm_change": 31, - "scroll_change": 20, - "rhythm_complexity": 1140, - "color_complexity": 0.027594331254300268 - }, - { - "songno": "1108", - "difficulty": "oni", - "note_count": 994, - "density_avg": 7.341574428318002, - "density_peak": 17, - "bpm_avg": 189.52328973843058, - "bpm_change": 4, - "scroll_change": 3, - "rhythm_complexity": 895, - "color_complexity": 0.01436886916690537 - }, - { - "songno": "488", - "difficulty": "oni", - "note_count": 721, - "density_avg": 5.4534740545294635, - "density_peak": 11, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.005557804243332835 - }, - { - "songno": "463", - "difficulty": "oni", - "note_count": 1262, - "density_avg": 10.51228654727197, - "density_peak": 21, - "bpm_avg": 289.3502377179081, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1206, - "color_complexity": 0.02688671604938281 - }, - { - "songno": "305", - "difficulty": "oni", - "note_count": 404, - "density_avg": 2.9793510324483776, - "density_peak": 7, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 334, - "color_complexity": 0.0011269350488797814 - }, - { - "songno": "311", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.8063881238942265, - "density_peak": 11, - "bpm_avg": 139.97432432432433, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.0036900919925151624 - }, - { - "songno": "477", - "difficulty": "oni", - "note_count": 823, - "density_avg": 7.382794117647059, - "density_peak": 16, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007441174932292236 - }, - { - "songno": "339", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.7045606595527065, - "density_peak": 7, - "bpm_avg": 203.93999999999994, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 195, - "color_complexity": 0.0013393247619027753 - }, - { - "songno": "473", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.60376647834275, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 645, - "color_complexity": 0.00546303918146272 - }, - { - "songno": "315", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.775949367088607, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002333632622222223 - }, - { - "songno": "301", - "difficulty": "oni", - "note_count": 635, - "density_avg": 4.890992167101827, - "density_peak": 9, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.0024983523777777814 - }, - { - "songno": "301", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.021614583333334, - "density_peak": 14, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 880, - "color_complexity": 0.008932103429302611 - }, - { - "songno": "467", - "difficulty": "oni", - "note_count": 282, - "density_avg": 3.4825301204819277, - "density_peak": 9, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0013235945910575755 - }, - { - "songno": "1124", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.5416666666666665, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 199, - "color_complexity": 0.0006831732207862458 - }, - { - "songno": "1130", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.805547663494926, - "density_peak": 13, - "bpm_avg": 129.99072072072084, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.0020258420005310647 - }, - { - "songno": "1118", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.732288946910357, - "density_peak": 7, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 288, - "color_complexity": 0.0007325935245541832 - }, - { - "songno": "498", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.275883838383838, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 400, - "color_complexity": 0.003376567696496029 - }, - { - "songno": "117", - "difficulty": "oni", - "note_count": 535, - "density_avg": 5.356246848066588, - "density_peak": 11, - "bpm_avg": 251.99521495327105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 462, - "color_complexity": 0.004222161853333101 - }, - { - "songno": "671", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.450273224043716, - "density_peak": 8, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0012054266683730259 - }, - { - "songno": "671", - "difficulty": "ura", - "note_count": 677, - "density_avg": 5.697158469945356, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 605, - "color_complexity": 0.005413294539821419 - }, - { - "songno": "103", - "difficulty": "oni", - "note_count": 610, - "density_avg": 6.009514854555188, - "density_peak": 13, - "bpm_avg": 154.01629508196717, - "bpm_change": 16, - "scroll_change": 1, - "rhythm_complexity": 477, - "color_complexity": 0.005826070741159816 - }, - { - "songno": "895", - "difficulty": "oni", - "note_count": 173, - "density_avg": 2.6657026360705482, - "density_peak": 5, - "bpm_avg": 124.72254335260115, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 150, - "color_complexity": 0.00019134521669944668 - }, - { - "songno": "881", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.192570869990225, - "density_peak": 11, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 598, - "color_complexity": 0.0057253069467954314 - }, - { - "songno": "881", - "difficulty": "ura", - "note_count": 1072, - "density_avg": 8.383186705767352, - "density_peak": 14, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 984, - "color_complexity": 0.012190500794968669 - }, - { - "songno": "1440", - "difficulty": "oni", - "note_count": 517, - "density_avg": 4.226158038147139, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 482, - "color_complexity": 0.0014626288888888938 - }, - { - "songno": "1440", - "difficulty": "ura", - "note_count": 783, - "density_avg": 6.400544959128065, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 707, - "color_complexity": 0.008214471133786864 - }, - { - "songno": "1326", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.7503373819163293, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 348, - "color_complexity": 0.0018581379520222529 - }, - { - "songno": "1332", - "difficulty": "oni", - "note_count": 313, - "density_avg": 3.2317886178861785, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 283, - "color_complexity": 0.0008785929815157734 - }, - { - "songno": "16", - "difficulty": "oni", - "note_count": 1158, - "density_avg": 7.917948717948717, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 1144, - "color_complexity": 0.018309384984222153 - }, - { - "songno": "856", - "difficulty": "oni", - "note_count": 1069, - "density_avg": 8.325545171339565, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 26, - "rhythm_complexity": 1040, - "color_complexity": 0.016318527571019367 - }, - { - "songno": "856", - "difficulty": "ura", - "note_count": 1217, - "density_avg": 9.390432098765432, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 61, - "rhythm_complexity": 1138, - "color_complexity": 0.02326034249281563 - }, - { - "songno": "842", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4280104712041886, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005455513520408136 - }, - { - "songno": "842", - "difficulty": "ura", - "note_count": 400, - "density_avg": 4.712041884816754, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0022741689577120945 - }, - { - "songno": "705", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.421748544910672, - "density_peak": 11, - "bpm_avg": 159.99186011904925, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 640, - "color_complexity": 0.0043446264976376905 - }, - { - "songno": "711", - "difficulty": "oni", - "note_count": 329, - "density_avg": 3.3989155251141554, - "density_peak": 9, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.001112275485585283 - }, - { - "songno": "711", - "difficulty": "ura", - "note_count": 579, - "density_avg": 5.981678082191781, - "density_peak": 11, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004185147433958592 - }, - { - "songno": "1285", - "difficulty": "oni", - "note_count": 262, - "density_avg": 2.8172043010752685, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.00034787009731670446 - }, - { - "songno": "739", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.305287587517423, - "density_peak": 13, - "bpm_avg": 145.00850456621015, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 827, - "color_complexity": 0.006125403478426269 - }, - { - "songno": "1252", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.505896730068671, - "density_peak": 8, - "bpm_avg": 121.04021428571414, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0013462417466670125 - }, - { - "songno": "1246", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.708483754512635, - "density_peak": 11, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005117602631330323 - }, - { - "songno": "922", - "difficulty": "oni", - "note_count": 653, - "density_avg": 4.737033006891549, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 585, - "color_complexity": 0.0023023720266436647 - }, - { - "songno": "936", - "difficulty": "oni", - "note_count": 165, - "density_avg": 4.2076502732240435, - "density_peak": 8, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 151, - "color_complexity": 0.0008537801738766207 - }, - { - "songno": "936", - "difficulty": "ura", - "note_count": 298, - "density_avg": 7.436720142602495, - "density_peak": 12, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.0031363811111111174 - }, - { - "songno": "507", - "difficulty": "oni", - "note_count": 713, - "density_avg": 6.050690493928884, - "density_peak": 11, - "bpm_avg": 162.96774193548387, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 688, - "color_complexity": 0.005449118371276925 - }, - { - "songno": "507", - "difficulty": "ura", - "note_count": 820, - "density_avg": 6.958718380114565, - "density_peak": 16, - "bpm_avg": 163.04634146341462, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 786, - "color_complexity": 0.008775243848637624 - }, - { - "songno": "261", - "difficulty": "oni", - "note_count": 596, - "density_avg": 4.68339670468948, - "density_peak": 10, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 448, - "color_complexity": 0.0032035497958133943 - }, - { - "songno": "275", - "difficulty": "oni", - "note_count": 471, - "density_avg": 3.7983870967741935, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0014629954324407563 - }, - { - "songno": "275", - "difficulty": "ura", - "note_count": 579, - "density_avg": 4.669354838709678, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032396907410827207 - }, - { - "songno": "1087", - "difficulty": "oni", - "note_count": 432, - "density_avg": 4.593417721518987, - "density_peak": 8, - "bpm_avg": 126, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0009177726570637099 - }, - { - "songno": "513", - "difficulty": "oni", - "note_count": 902, - "density_avg": 8.046009389671362, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.00931081721731946 - }, - { - "songno": "1050", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.37177643444115, - "density_peak": 13, - "bpm_avg": 254.4884287454324, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 681, - "color_complexity": 0.00750678215702546 - }, - { - "songno": "1044", - "difficulty": "oni", - "note_count": 354, - "density_avg": 4.137662337662339, - "density_peak": 9, - "bpm_avg": 134.8093220338983, - "bpm_change": 2, - "scroll_change": 10, - "rhythm_complexity": 299, - "color_complexity": 0.001672735809948981 - }, - { - "songno": "1078", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.1607511737089204, - "density_peak": 8, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.001620308782656562 - }, - { - "songno": "1079", - "difficulty": "oni", - "note_count": 720, - "density_avg": 4.84370257966616, - "density_peak": 8, - "bpm_avg": 152.2111111111111, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.003269103869082218 - }, - { - "songno": "1045", - "difficulty": "oni", - "note_count": 867, - "density_avg": 6.920790960247057, - "density_peak": 12, - "bpm_avg": 194.20876585928488, - "bpm_change": 16, - "scroll_change": 16, - "rhythm_complexity": 773, - "color_complexity": 0.008916370348287475 - }, - { - "songno": "1051", - "difficulty": "oni", - "note_count": 749, - "density_avg": 7.204677320222285, - "density_peak": 15, - "bpm_avg": 224.78480640854474, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 699, - "color_complexity": 0.00986952735460736 - }, - { - "songno": "248", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.8250728862973755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.005878941111111095 - }, - { - "songno": "248", - "difficulty": "ura", - "note_count": 942, - "density_avg": 8.215116279069766, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 891, - "color_complexity": 0.012005669489796008 - }, - { - "songno": "274", - "difficulty": "oni", - "note_count": 654, - "density_avg": 4.980907668231612, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.003646207172941537 - }, - { - "songno": "274", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.826291079812206, - "density_peak": 9, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.005340539587654338 - }, - { - "songno": "512", - "difficulty": "oni", - "note_count": 456, - "density_avg": 4.061068702290077, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0020193846947050348 - }, - { - "songno": "1086", - "difficulty": "oni", - "note_count": 913, - "density_avg": 8.151785714285714, - "density_peak": 17, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 850, - "color_complexity": 0.012738948317727986 - }, - { - "songno": "1092", - "difficulty": "oni", - "note_count": 824, - "density_avg": 5.540486409155937, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 802, - "color_complexity": 0.00375172717596914 - }, - { - "songno": "506", - "difficulty": "oni", - "note_count": 250, - "density_avg": 3.7887229774905276, - "density_peak": 8, - "bpm_avg": 139.016, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 218, - "color_complexity": 0.0010185472151319195 - }, - { - "songno": "506", - "difficulty": "ura", - "note_count": 348, - "density_avg": 5.022071307300509, - "density_peak": 9, - "bpm_avg": 138.16666666666666, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 314, - "color_complexity": 0.0018775119784505694 - }, - { - "songno": "260", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.701195219123506, - "density_peak": 10, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 460, - "color_complexity": 0.0031646464661656587 - }, - { - "songno": "937", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.756818181818183, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.0026147915360533627 - }, - { - "songno": "1247", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.199855530614306, - "density_peak": 15, - "bpm_avg": 117.65747800586507, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 590, - "color_complexity": 0.0072310435349687225 - }, - { - "songno": "738", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.632268632268633, - "density_peak": 12, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0035795386094999554 - }, - { - "songno": "1284", - "difficulty": "oni", - "note_count": 334, - "density_avg": 3.595138888888889, - "density_peak": 7, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 318, - "color_complexity": 0.0010574817635116592 - }, - { - "songno": "704", - "difficulty": "oni", - "note_count": 620, - "density_avg": 4.860627177700349, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 491, - "color_complexity": 0.0030628671679145195 - }, - { - "songno": "843", - "difficulty": "oni", - "note_count": 501, - "density_avg": 4.865258557902404, - "density_peak": 15, - "bpm_avg": 127.55738522954091, - "bpm_change": 27, - "scroll_change": 86, - "rhythm_complexity": 430, - "color_complexity": 0.004476905848974846 - }, - { - "songno": "857", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.366604798240187, - "density_peak": 15, - "bpm_avg": 159.30906389301634, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 562, - "color_complexity": 0.00426951634150544 - }, - { - "songno": "17", - "difficulty": "oni", - "note_count": 700, - "density_avg": 5.400534436559395, - "density_peak": 11, - "bpm_avg": 144.20714285714286, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.00472643746528474 - }, - { - "songno": "1333", - "difficulty": "oni", - "note_count": 172, - "density_avg": 1.5733333333333333, - "density_peak": 4, - "bpm_avg": 59, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00009861868255332103 - }, - { - "songno": "1455", - "difficulty": "oni", - "note_count": 503, - "density_avg": 5.432282545242265, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.00321445135785848 - }, - { - "songno": "1455", - "difficulty": "ura", - "note_count": 766, - "density_avg": 8.047132311186827, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.009616679598199184 - }, - { - "songno": "1441", - "difficulty": "oni", - "note_count": 372, - "density_avg": 5.264150943396226, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 268, - "color_complexity": 0.0019842107429846956 - }, - { - "songno": "1327", - "difficulty": "oni", - "note_count": 395, - "density_avg": 4.839032274147445, - "density_peak": 8, - "bpm_avg": 147.0087088607595, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.001427526775067218 - }, - { - "songno": "1327", - "difficulty": "ura", - "note_count": 512, - "density_avg": 6.22052515086054, - "density_peak": 9, - "bpm_avg": 147.0083984375, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 469, - "color_complexity": 0.004347462507503395 - }, - { - "songno": "880", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.259266555534577, - "density_peak": 12, - "bpm_avg": 170.78512968299415, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 664, - "color_complexity": 0.0054895389038104436 - }, - { - "songno": "894", - "difficulty": "oni", - "note_count": 323, - "density_avg": 2.367926689576174, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005058558384247332 - }, - { - "songno": "116", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.164847811117171, - "density_peak": 9, - "bpm_avg": 170.1988493150685, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 331, - "color_complexity": 0.0016319783493619318 - }, - { - "songno": "670", - "difficulty": "oni", - "note_count": 690, - "density_avg": 4.890907753925259, - "density_peak": 14, - "bpm_avg": 169.8479565217385, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 608, - "color_complexity": 0.005160122644245964 - }, - { - "songno": "499", - "difficulty": "oni", - "note_count": 936, - "density_avg": 6.872319807589215, - "density_peak": 13, - "bpm_avg": 193.30128205128204, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 833, - "color_complexity": 0.011851530953352691 - }, - { - "songno": "1119", - "difficulty": "oni", - "note_count": 562, - "density_avg": 4.974161313347609, - "density_peak": 9, - "bpm_avg": 248, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.00358868590492983 - }, - { - "songno": "1131", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.519946984758119, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0014665661983364843 - }, - { - "songno": "1131", - "difficulty": "ura", - "note_count": 662, - "density_avg": 5.594954273099968, - "density_peak": 10, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.004430385128495827 - }, - { - "songno": "1125", - "difficulty": "oni", - "note_count": 397, - "density_avg": 2.8931070158422245, - "density_peak": 6, - "bpm_avg": 98, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 230, - "color_complexity": 0.0008972601216066811 - }, - { - "songno": "300", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.988133764832794, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.003133776137437903 - }, - { - "songno": "466", - "difficulty": "oni", - "note_count": 384, - "density_avg": 4.708045977011494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.0024928036264185976 - }, - { - "songno": "472", - "difficulty": "oni", - "note_count": 670, - "density_avg": 5.787793427230047, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 636, - "color_complexity": 0.005590136340236864 - }, - { - "songno": "314", - "difficulty": "oni", - "note_count": 293, - "density_avg": 2.5320987654320986, - "density_peak": 6, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 273, - "color_complexity": 0.00022264120762903998 - }, - { - "songno": "302", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.484084143905007, - "density_peak": 11, - "bpm_avg": 143.44724999999937, - "bpm_change": 12, - "scroll_change": 4, - "rhythm_complexity": 404, - "color_complexity": 0.004238094429688095 - }, - { - "songno": "316", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.634870799426448, - "density_peak": 9, - "bpm_avg": 130.00513821138208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0028332665654973027 - }, - { - "songno": "470", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.6381838622223714, - "density_peak": 10, - "bpm_avg": 150.00764227642276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.00177708789060178 - }, - { - "songno": "470", - "difficulty": "ura", - "note_count": 822, - "density_avg": 6.199328674385023, - "density_peak": 11, - "bpm_avg": 150.00743309002434, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 750, - "color_complexity": 0.007301105632067015 - }, - { - "songno": "458", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.355463347164592, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 566, - "color_complexity": 0.0028292610768898946 - }, - { - "songno": "1133", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.484926692360691, - "density_peak": 10, - "bpm_avg": 194.03649842271298, - "bpm_change": 4, - "scroll_change": 7, - "rhythm_complexity": 592, - "color_complexity": 0.0035904439029338236 - }, - { - "songno": "1133", - "difficulty": "ura", - "note_count": 929, - "density_avg": 6.571761667512748, - "density_peak": 13, - "bpm_avg": 194.36912809472557, - "bpm_change": 5, - "scroll_change": 22, - "rhythm_complexity": 810, - "color_complexity": 0.009096481039119107 - }, - { - "songno": "1127", - "difficulty": "oni", - "note_count": 524, - "density_avg": 6.726075268817204, - "density_peak": 11, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.004093829722877772 - }, - { - "songno": "100", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.773836439104744, - "density_peak": 11, - "bpm_avg": 149.95562130177518, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 476, - "color_complexity": 0.004756157454311307 - }, - { - "songno": "100", - "difficulty": "ura", - "note_count": 659, - "density_avg": 6.107286772260961, - "density_peak": 11, - "bpm_avg": 149.99235204855847, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 583, - "color_complexity": 0.0054523159032933855 - }, - { - "songno": "666", - "difficulty": "oni", - "note_count": 639, - "density_avg": 7.153584905660376, - "density_peak": 11, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 615, - "color_complexity": 0.008336757969547338 - }, - { - "songno": "672", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.8876166242578454, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0016144455838139153 - }, - { - "songno": "114", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.051903114186851, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 556, - "color_complexity": 0.0040498389003758625 - }, - { - "songno": "882", - "difficulty": "oni", - "note_count": 352, - "density_avg": 3.282393876130828, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0005044328294896559 - }, - { - "songno": "882", - "difficulty": "ura", - "note_count": 569, - "density_avg": 5.305915100904662, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.0024828088615125757 - }, - { - "songno": "896", - "difficulty": "oni", - "note_count": 940, - "density_avg": 7.560814214917917, - "density_peak": 20, - "bpm_avg": 247.38173404255332, - "bpm_change": 11, - "scroll_change": 24, - "rhythm_complexity": 842, - "color_complexity": 0.011939282275545976 - }, - { - "songno": "128", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.034374250580236, - "density_peak": 13, - "bpm_avg": 173.99227064220185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 768, - "color_complexity": 0.008631030824992465 - }, - { - "songno": "1457", - "difficulty": "oni", - "note_count": 622, - "density_avg": 6.269258459323255, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.004413508641975329 - }, - { - "songno": "1331", - "difficulty": "oni", - "note_count": 211, - "density_avg": 2.4981785063752278, - "density_peak": 5, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0003341390948416037 - }, - { - "songno": "1325", - "difficulty": "oni", - "note_count": 714, - "density_avg": 7.193954659949623, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.009706423538012446 - }, - { - "songno": "869", - "difficulty": "oni", - "note_count": 984, - "density_avg": 7.46041446388104, - "density_peak": 18, - "bpm_avg": 290.0498780487808, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 842, - "color_complexity": 0.01298671248501483 - }, - { - "songno": "699", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.21127385707945, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 909, - "color_complexity": 0.014662068882383061 - }, - { - "songno": "1319", - "difficulty": "oni", - "note_count": 719, - "density_avg": 4.938260936923714, - "density_peak": 13, - "bpm_avg": 235.326842837274, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 627, - "color_complexity": 0.0066211093414901105 - }, - { - "songno": "1319", - "difficulty": "ura", - "note_count": 1337, - "density_avg": 8.929103950483837, - "density_peak": 18, - "bpm_avg": 234.69691847419597, - "bpm_change": 19, - "scroll_change": 71, - "rhythm_complexity": 1222, - "color_complexity": 0.0210652104195674 - }, - { - "songno": "15", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.108978873239437, - "density_peak": 11, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.004710197230383599 - }, - { - "songno": "15", - "difficulty": "ura", - "note_count": 932, - "density_avg": 8.368309859154929, - "density_peak": 16, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.013968603750755133 - }, - { - "songno": "855", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.34520037278658, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 357, - "color_complexity": 0.002449154203014268 - }, - { - "songno": "1286", - "difficulty": "oni", - "note_count": 306, - "density_avg": 2.8570024570024573, - "density_peak": 6, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007984180708171067 - }, - { - "songno": "1292", - "difficulty": "oni", - "note_count": 472, - "density_avg": 3.973976272483735, - "density_peak": 8, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 402, - "color_complexity": 0.0017641762654321013 - }, - { - "songno": "706", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.8145789101203116, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 316, - "color_complexity": 0.002161003383950621 - }, - { - "songno": "909", - "difficulty": "oni", - "note_count": 439, - "density_avg": 5.226190476190476, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0020473420061728406 - }, - { - "songno": "1245", - "difficulty": "oni", - "note_count": 632, - "density_avg": 5.166715328467153, - "density_peak": 11, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 562, - "color_complexity": 0.004657912686069128 - }, - { - "songno": "1251", - "difficulty": "oni", - "note_count": 403, - "density_avg": 4.257601239064866, - "density_peak": 8, - "bpm_avg": 164.69370967741918, - "bpm_change": 39, - "scroll_change": 1, - "rhythm_complexity": 278, - "color_complexity": 0.0020379168461830727 - }, - { - "songno": "1251", - "difficulty": "ura", - "note_count": 645, - "density_avg": 6.814274935972303, - "density_peak": 11, - "bpm_avg": 164.84160620155023, - "bpm_change": 41, - "scroll_change": 1, - "rhythm_complexity": 556, - "color_complexity": 0.0056928150574618456 - }, - { - "songno": "935", - "difficulty": "oni", - "note_count": 732, - "density_avg": 5.140899818980971, - "density_peak": 12, - "bpm_avg": 152.56129781420765, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 564, - "color_complexity": 0.0049699034012006755 - }, - { - "songno": "1279", - "difficulty": "oni", - "note_count": 880, - "density_avg": 6.1145080600333515, - "density_peak": 13, - "bpm_avg": 249.85795454545453, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.008094883577688882 - }, - { - "songno": "921", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.1525, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 266, - "color_complexity": 0.001086549577416047 - }, - { - "songno": "1084", - "difficulty": "oni", - "note_count": 435, - "density_avg": 3.0948616600790513, - "density_peak": 8, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 342, - "color_complexity": 0.0011149488297520637 - }, - { - "songno": "1084", - "difficulty": "ura", - "note_count": 664, - "density_avg": 4.705511811023621, - "density_peak": 10, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 577, - "color_complexity": 0.003746192557562716 - }, - { - "songno": "510", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.914560439560439, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.004385576756741015 - }, - { - "songno": "276", - "difficulty": "oni", - "note_count": 572, - "density_avg": 4.707818930041152, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.002875670864197522 - }, - { - "songno": "276", - "difficulty": "ura", - "note_count": 700, - "density_avg": 5.6811594202898545, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.003454018737997262 - }, - { - "songno": "262", - "difficulty": "oni", - "note_count": 589, - "density_avg": 4.016704921825748, - "density_peak": 9, - "bpm_avg": 111.04259762309044, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 463, - "color_complexity": 0.0020354118158598363 - }, - { - "songno": "504", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.688226103538581, - "density_peak": 12, - "bpm_avg": 164.96924705882358, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 670, - "color_complexity": 0.003208694740082672 - }, - { - "songno": "504", - "difficulty": "ura", - "note_count": 1100, - "density_avg": 7.347823274049404, - "density_peak": 14, - "bpm_avg": 164.97976363636315, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 1000, - "color_complexity": 0.0132445012548659 - }, - { - "songno": "1090", - "difficulty": "oni", - "note_count": 243, - "density_avg": 2.6878923766816145, - "density_peak": 6, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 134, - "color_complexity": 0.00043362500626337907 - }, - { - "songno": "538", - "difficulty": "oni", - "note_count": 945, - "density_avg": 7.538560738174717, - "density_peak": 21, - "bpm_avg": 200.02753439153435, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 893, - "color_complexity": 0.012391606183705058 - }, - { - "songno": "1047", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.228545618789521, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.0070913098305485 - }, - { - "songno": "1053", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.9206740498178747, - "density_peak": 9, - "bpm_avg": 183.6036036036036, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 481, - "color_complexity": 0.0018931107561911255 - }, - { - "songno": "1053", - "difficulty": "ura", - "note_count": 1099, - "density_avg": 7.763641046396115, - "density_peak": 14, - "bpm_avg": 182.57506824385806, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 972, - "color_complexity": 0.016074045730421618 - }, - { - "songno": "288", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.403861003861005, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 749, - "color_complexity": 0.01046521247109798 - }, - { - "songno": "1052", - "difficulty": "oni", - "note_count": 742, - "density_avg": 5.278884462151394, - "density_peak": 13, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 639, - "color_complexity": 0.00550097144024776 - }, - { - "songno": "1052", - "difficulty": "ura", - "note_count": 1176, - "density_avg": 8.045977011494253, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 1093, - "color_complexity": 0.02131716656353882 - }, - { - "songno": "1046", - "difficulty": "oni", - "note_count": 541, - "density_avg": 6.102650874224478, - "density_peak": 13, - "bpm_avg": 199.72273567467653, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.00450128330359733 - }, - { - "songno": "1046", - "difficulty": "ura", - "note_count": 621, - "density_avg": 7.73109243697479, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 604, - "color_complexity": 0.006374884460034465 - }, - { - "songno": "539", - "difficulty": "oni", - "note_count": 792, - "density_avg": 5.675570032573289, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 757, - "color_complexity": 0.006197943335459175 - }, - { - "songno": "539", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.158957654723126, - "density_peak": 14, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 937, - "color_complexity": 0.010304696111111135 - }, - { - "songno": "1091", - "difficulty": "oni", - "note_count": 274, - "density_avg": 3.233981841763943, - "density_peak": 8, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.0003489265802469149 - }, - { - "songno": "505", - "difficulty": "oni", - "note_count": 728, - "density_avg": 4.817204301075269, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.0024496518686301797 - }, - { - "songno": "511", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.973861386138614, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.0015197719062607078 - }, - { - "songno": "511", - "difficulty": "ura", - "note_count": 546, - "density_avg": 6.270891089108911, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.005743839326187316 - }, - { - "songno": "1085", - "difficulty": "oni", - "note_count": 1138, - "density_avg": 9.204767986377183, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1088, - "color_complexity": 0.014703381743512217 - }, - { - "songno": "277", - "difficulty": "oni", - "note_count": 445, - "density_avg": 3.6341917283048284, - "density_peak": 8, - "bpm_avg": 171.99826966292133, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0020813195040302883 - }, - { - "songno": "277", - "difficulty": "ura", - "note_count": 585, - "density_avg": 4.770737372264775, - "density_peak": 11, - "bpm_avg": 171.99473504273504, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.005060615261845435 - }, - { - "songno": "920", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.421110242376857, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004355153614285699 - }, - { - "songno": "920", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.717904612978889, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 825, - "color_complexity": 0.009295798702040838 - }, - { - "songno": "1278", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.283296371223447, - "density_peak": 19, - "bpm_avg": 231.9844375, - "bpm_change": 71, - "scroll_change": 187, - "rhythm_complexity": 847, - "color_complexity": 0.012190425640302392 - }, - { - "songno": "934", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.636731150793651, - "density_peak": 14, - "bpm_avg": 183.5, - "bpm_change": 0, - "scroll_change": 35, - "rhythm_complexity": 747, - "color_complexity": 0.010298519636411839 - }, - { - "songno": "1250", - "difficulty": "oni", - "note_count": 698, - "density_avg": 6.156917363045497, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006670612366998688 - }, - { - "songno": "1244", - "difficulty": "oni", - "note_count": 326, - "density_avg": 4.032552083333333, - "density_peak": 7, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.001092109461731194 - }, - { - "songno": "908", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.542407206174336, - "density_peak": 13, - "bpm_avg": 184.85773480662982, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 701, - "color_complexity": 0.005314764044482667 - }, - { - "songno": "707", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.883967391304348, - "density_peak": 12, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007304416946362079 - }, - { - "songno": "1293", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.611299435028249, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.0011822022666666638 - }, - { - "songno": "1287", - "difficulty": "oni", - "note_count": 304, - "density_avg": 3.5625, - "density_peak": 6, - "bpm_avg": 90, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 277, - "color_complexity": 0.000738419722991691 - }, - { - "songno": "713", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.952755905511811, - "density_peak": 12, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 708, - "color_complexity": 0.007394549478840226 - }, - { - "songno": "14", - "difficulty": "oni", - "note_count": 455, - "density_avg": 3.8595119490553125, - "density_peak": 7, - "bpm_avg": 128.00272527472532, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0014407419023724298 - }, - { - "songno": "1318", - "difficulty": "oni", - "note_count": 905, - "density_avg": 6.6112012987013, - "density_peak": 14, - "bpm_avg": 259.4088397790055, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 844, - "color_complexity": 0.007820317021683725 - }, - { - "songno": "1318", - "difficulty": "ura", - "note_count": 1159, - "density_avg": 8.46672077922078, - "density_peak": 18, - "bpm_avg": 256.48835202761, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 1094, - "color_complexity": 0.017110096093883732 - }, - { - "songno": "698", - "difficulty": "oni", - "note_count": 1194, - "density_avg": 8.223137475666464, - "density_peak": 16, - "bpm_avg": 199.92463986599665, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 1103, - "color_complexity": 0.018206996204650418 - }, - { - "songno": "868", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.151627906976745, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 859, - "color_complexity": 0.013822264805620656 - }, - { - "songno": "868", - "difficulty": "ura", - "note_count": 1305, - "density_avg": 9.711627906976744, - "density_peak": 25, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 120, - "rhythm_complexity": 1246, - "color_complexity": 0.019582738634989584 - }, - { - "songno": "1324", - "difficulty": "oni", - "note_count": 811, - "density_avg": 6.322102104295747, - "density_peak": 16, - "bpm_avg": 170.43156596794083, - "bpm_change": 11, - "scroll_change": 17, - "rhythm_complexity": 664, - "color_complexity": 0.006560420104808106 - }, - { - "songno": "1442", - "difficulty": "oni", - "note_count": 415, - "density_avg": 3.6744791666666665, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 379, - "color_complexity": 0.0013988094826594664 - }, - { - "songno": "1456", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.6178312046080645, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.0040473257165252905 - }, - { - "songno": "1330", - "difficulty": "oni", - "note_count": 297, - "density_avg": 2.2789237668161437, - "density_peak": 5, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0004440058069272963 - }, - { - "songno": "897", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.435308343409916, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 349, - "color_complexity": 0.0019701741906721485 - }, - { - "songno": "673", - "difficulty": "oni", - "note_count": 674, - "density_avg": 6.688190076869323, - "density_peak": 15, - "bpm_avg": 167.4925816023739, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 625, - "color_complexity": 0.00627578561114128 - }, - { - "songno": "115", - "difficulty": "oni", - "note_count": 341, - "density_avg": 4.05322570428458, - "density_peak": 8, - "bpm_avg": 164.7099706744868, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 320, - "color_complexity": 0.0008169411582718039 - }, - { - "songno": "101", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.42588215773468, - "density_peak": 7, - "bpm_avg": 143.83536842105286, - "bpm_change": 14, - "scroll_change": 2, - "rhythm_complexity": 223, - "color_complexity": 0.0005886783305206696 - }, - { - "songno": "1126", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.6896188158961882, - "density_peak": 8, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.0017448254881589416 - }, - { - "songno": "1132", - "difficulty": "oni", - "note_count": 595, - "density_avg": 4.1469696969696965, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 520, - "color_complexity": 0.0036295703122201078 - }, - { - "songno": "459", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.932275132275132, - "density_peak": 9, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.002235320574056874 - }, - { - "songno": "317", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.7348029392117565, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.002547114352429677 - }, - { - "songno": "317", - "difficulty": "ura", - "note_count": 569, - "density_avg": 6.093708165997322, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.0037641542935528097 - }, - { - "songno": "471", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.027810650887575, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.009396690742807612 - }, - { - "songno": "465", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.911212074590177, - "density_peak": 15, - "bpm_avg": 127.86786786786787, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 585, - "color_complexity": 0.0038404432358629553 - }, - { - "songno": "358", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.436433470507545, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.006004589644246098 - }, - { - "songno": "1196", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.168413062024918, - "density_peak": 11, - "bpm_avg": 200.14719412724295, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 315, - "color_complexity": 0.0033317869939527146 - }, - { - "songno": "1196", - "difficulty": "ura", - "note_count": 1119, - "density_avg": 7.858565931700912, - "density_peak": 15, - "bpm_avg": 200.09512064343178, - "bpm_change": 23, - "scroll_change": 2, - "rhythm_complexity": 758, - "color_complexity": 0.018550024251476196 - }, - { - "songno": "402", - "difficulty": "oni", - "note_count": 681, - "density_avg": 6.522988505747127, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 647, - "color_complexity": 0.005736246213711815 - }, - { - "songno": "402", - "difficulty": "ura", - "note_count": 943, - "density_avg": 8.936271025823265, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 825, - "color_complexity": 0.01097117310596598 - }, - { - "songno": "364", - "difficulty": "oni", - "note_count": 545, - "density_avg": 5.190476190476191, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.0034087314688095068 - }, - { - "songno": "416", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.592472562807775, - "density_peak": 12, - "bpm_avg": 183.0736162361628, - "bpm_change": 70, - "scroll_change": 2, - "rhythm_complexity": 444, - "color_complexity": 0.003853961241339756 - }, - { - "songno": "1169", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.307882534775889, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0025056026371154303 - }, - { - "songno": "1155", - "difficulty": "oni", - "note_count": 415, - "density_avg": 4.382259767687434, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0017484908903376147 - }, - { - "songno": "1141", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.660037878787878, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 690, - "color_complexity": 0.005247635711093078 - }, - { - "songno": "628", - "difficulty": "oni", - "note_count": 976, - "density_avg": 8.09585253456221, - "density_peak": 15, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 938, - "color_complexity": 0.014773061250000082 - }, - { - "songno": "166", - "difficulty": "oni", - "note_count": 592, - "density_avg": 5.519813519813519, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 516, - "color_complexity": 0.003721939591836732 - }, - { - "songno": "98", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.616406636158505, - "density_peak": 8, - "bpm_avg": 122.34319088319094, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 285, - "color_complexity": 0.0011109673572387985 - }, - { - "songno": "1394", - "difficulty": "oni", - "note_count": 678, - "density_avg": 6.064570230607967, - "density_peak": 13, - "bpm_avg": 160.51917404129793, - "bpm_change": 12, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.006599241176379303 - }, - { - "songno": "1380", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.656552330694812, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005310334211021441 - }, - { - "songno": "1380", - "difficulty": "ura", - "note_count": 865, - "density_avg": 7.227352682497801, - "density_peak": 17, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 761, - "color_complexity": 0.009448980577942735 - }, - { - "songno": "614", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.1925, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.003715440318086437 - }, - { - "songno": "199", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.686525892408245, - "density_peak": 9, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0015999809944002043 - }, - { - "songno": "67", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.904639175257731, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.004669144880604776 - }, - { - "songno": "73", - "difficulty": "oni", - "note_count": 876, - "density_avg": 8.239004149377593, - "density_peak": 14, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 862, - "color_complexity": 0.008713334446863187 - }, - { - "songno": "73", - "difficulty": "ura", - "note_count": 915, - "density_avg": 8.605809128630705, - "density_peak": 14, - "bpm_avg": 203.88852459016394, - "bpm_change": 2, - "scroll_change": 3, - "rhythm_complexity": 907, - "color_complexity": 0.012598723086419733 - }, - { - "songno": "833", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.589343729694607, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.01508577106060983 - }, - { - "songno": "1419", - "difficulty": "oni", - "note_count": 1055, - "density_avg": 7.124984692192965, - "density_peak": 16, - "bpm_avg": 206.34502369668246, - "bpm_change": 16, - "scroll_change": 30, - "rhythm_complexity": 901, - "color_complexity": 0.009958925222890526 - }, - { - "songno": "1419", - "difficulty": "ura", - "note_count": 1438, - "density_avg": 9.711590509358752, - "density_peak": 22, - "bpm_avg": 207.2489568845619, - "bpm_change": 16, - "scroll_change": 41, - "rhythm_complexity": 1155, - "color_complexity": 0.033885251462878296 - }, - { - "songno": "9", - "difficulty": "oni", - "note_count": 466, - "density_avg": 3.8193959638010546, - "density_peak": 8, - "bpm_avg": 163.00523605150215, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 396, - "color_complexity": 0.001314240542779155 - }, - { - "songno": "9", - "difficulty": "ura", - "note_count": 681, - "density_avg": 5.321182335265388, - "density_peak": 10, - "bpm_avg": 163.01602055800296, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 646, - "color_complexity": 0.0054555293492886126 - }, - { - "songno": "1431", - "difficulty": "oni", - "note_count": 825, - "density_avg": 6.043712840646725, - "density_peak": 13, - "bpm_avg": 180.0088000000001, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 762, - "color_complexity": 0.006014767136369827 - }, - { - "songno": "1357", - "difficulty": "oni", - "note_count": 703, - "density_avg": 4.911489717619787, - "density_peak": 14, - "bpm_avg": 199.9972972972973, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 616, - "color_complexity": 0.000616580816067637 - }, - { - "songno": "1357", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.073818374933616, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 955, - "color_complexity": 0.007854224150660213 - }, - { - "songno": "1343", - "difficulty": "oni", - "note_count": 279, - "density_avg": 3.169924812030075, - "density_peak": 6, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 221, - "color_complexity": 0.0006248289693254968 - }, - { - "songno": "1343", - "difficulty": "ura", - "note_count": 566, - "density_avg": 6.430743525480367, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0037054673898715158 - }, - { - "songno": "1425", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.841666666666667, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.00980659603242667 - }, - { - "songno": "748", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.702888583218709, - "density_peak": 17, - "bpm_avg": 186.27627627627626, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 917, - "color_complexity": 0.013256775651791036 - }, - { - "songno": "990", - "difficulty": "oni", - "note_count": 1111, - "density_avg": 9.593079700188397, - "density_peak": 16, - "bpm_avg": 203.65641764176416, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 1066, - "color_complexity": 0.014413828088018618 - }, - { - "songno": "984", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.1544298245614035, - "density_peak": 9, - "bpm_avg": 160.31390134529147, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 413, - "color_complexity": 0.0015697646971252327 - }, - { - "songno": "774", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.829218989124031, - "density_peak": 15, - "bpm_avg": 168.00981996726676, - "bpm_change": 20, - "scroll_change": 19, - "rhythm_complexity": 556, - "color_complexity": 0.008990997359901822 - }, - { - "songno": "760", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.545887151597554, - "density_peak": 16, - "bpm_avg": 203.1855, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 850, - "color_complexity": 0.014314210829957054 - }, - { - "songno": "947", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.201434878587197, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 619, - "color_complexity": 0.004581128752476536 - }, - { - "songno": "1237", - "difficulty": "oni", - "note_count": 552, - "density_avg": 4.51078355314197, - "density_peak": 9, - "bpm_avg": 205.5144927536232, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.002258348221638869 - }, - { - "songno": "1237", - "difficulty": "ura", - "note_count": 962, - "density_avg": 7.858136228512342, - "density_peak": 15, - "bpm_avg": 205.3014553014553, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 837, - "color_complexity": 0.01285488391387629 - }, - { - "songno": "238", - "difficulty": "oni", - "note_count": 484, - "density_avg": 6.06639566395664, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 466, - "color_complexity": 0.003516260348992351 - }, - { - "songno": "576", - "difficulty": "oni", - "note_count": 854, - "density_avg": 6.958518518518519, - "density_peak": 13, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 774, - "color_complexity": 0.008246150026396728 - }, - { - "songno": "204", - "difficulty": "oni", - "note_count": 390, - "density_avg": 3.1917948697674747, - "density_peak": 7, - "bpm_avg": 127.81471794871796, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0011555350740271254 - }, - { - "songno": "1021", - "difficulty": "oni", - "note_count": 458, - "density_avg": 4.285380116959064, - "density_peak": 13, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.002751824318386189 - }, - { - "songno": "1035", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.3507788161993775, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.005636438866440603 - }, - { - "songno": "1035", - "difficulty": "ura", - "note_count": 1089, - "density_avg": 8.551766893986361, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1032, - "color_complexity": 0.012806188619968862 - }, - { - "songno": "1034", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.262383964424658, - "density_peak": 11, - "bpm_avg": 185.36418918918918, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 670, - "color_complexity": 0.00449243120435546 - }, - { - "songno": "1020", - "difficulty": "oni", - "note_count": 556, - "density_avg": 5.183516460755705, - "density_peak": 10, - "bpm_avg": 159.95887769784176, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 486, - "color_complexity": 0.0027357075206317543 - }, - { - "songno": "1020", - "difficulty": "ura", - "note_count": 707, - "density_avg": 6.591270031932164, - "density_peak": 12, - "bpm_avg": 162.02029420084858, - "bpm_change": 5, - "scroll_change": 2, - "rhythm_complexity": 693, - "color_complexity": 0.004757860795108542 - }, - { - "songno": "1008", - "difficulty": "oni", - "note_count": 249, - "density_avg": 3.7456410256410257, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0010818908439331689 - }, - { - "songno": "588", - "difficulty": "oni", - "note_count": 861, - "density_avg": 6.837232524964337, - "density_peak": 14, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 819, - "color_complexity": 0.01153366890971254 - }, - { - "songno": "205", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.109133055169217, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.002658451806490057 - }, - { - "songno": "577", - "difficulty": "oni", - "note_count": 803, - "density_avg": 6.8195329087048835, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 675, - "color_complexity": 0.009285326511893845 - }, - { - "songno": "211", - "difficulty": "oni", - "note_count": 864, - "density_avg": 6.9430601496997015, - "density_peak": 11, - "bpm_avg": 161.125, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 830, - "color_complexity": 0.011478577191172106 - }, - { - "songno": "239", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.95959595959596, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.0077838354591836766 - }, - { - "songno": "1236", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.700359892147317, - "density_peak": 20, - "bpm_avg": 242.48248248248248, - "bpm_change": 7, - "scroll_change": 146, - "rhythm_complexity": 905, - "color_complexity": 0.016323152358715592 - }, - { - "songno": "946", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.0014184397163115, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.0020005718754418345 - }, - { - "songno": "952", - "difficulty": "oni", - "note_count": 717, - "density_avg": 6.128205128205129, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.007741479416134963 - }, - { - "songno": "761", - "difficulty": "oni", - "note_count": 902, - "density_avg": 7.567340823970038, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.01348508429319256 - }, - { - "songno": "775", - "difficulty": "oni", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 16, - "bpm_avg": 243.05825242718447, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 700, - "color_complexity": 0.010716255172709585 - }, - { - "songno": "775", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 14, - "bpm_avg": 242.4757281553398, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 745, - "color_complexity": 0.010561460644845198 - }, - { - "songno": "991", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.82349537037037, - "density_peak": 12, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 643, - "color_complexity": 0.005476894034754873 - }, - { - "songno": "749", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.58212161930252, - "density_peak": 15, - "bpm_avg": 186.13175675675674, - "bpm_change": 22, - "scroll_change": 26, - "rhythm_complexity": 840, - "color_complexity": 0.010647856596629493 - }, - { - "songno": "1342", - "difficulty": "oni", - "note_count": 321, - "density_avg": 4.243990384615385, - "density_peak": 8, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0009468668597647406 - }, - { - "songno": "1424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.726132686084143, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 699, - "color_complexity": 0.006500551571248105 - }, - { - "songno": "8", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.8251366120218577, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001714575045893014 - }, - { - "songno": "1356", - "difficulty": "oni", - "note_count": 1120, - "density_avg": 7.648578811369509, - "density_peak": 15, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1036, - "color_complexity": 0.011008075535663414 - }, - { - "songno": "72", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.26815144766147, - "density_peak": 13, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 745, - "color_complexity": 0.008029338470156076 - }, - { - "songno": "1418", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.39136574541053, - "density_peak": 13, - "bpm_avg": 172.07762557077626, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 780, - "color_complexity": 0.010990536271348108 - }, - { - "songno": "198", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.565461847389558, - "density_peak": 9, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0017093391041618571 - }, - { - "songno": "826", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.512437810945274, - "density_peak": 21, - "bpm_avg": 200.07923169267707, - "bpm_change": 2, - "scroll_change": 20, - "rhythm_complexity": 699, - "color_complexity": 0.008065090370174466 - }, - { - "songno": "66", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.93374613003096, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006237777312295145 - }, - { - "songno": "615", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.8845460407738575, - "density_peak": 13, - "bpm_avg": 209.6716621253406, - "bpm_change": 15, - "scroll_change": 9, - "rhythm_complexity": 641, - "color_complexity": 0.0041508155087384545 - }, - { - "songno": "1381", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.69765625, - "density_peak": 14, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.00615265079935022 - }, - { - "songno": "173", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.883720930232558, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 712, - "color_complexity": 0.006189637010333841 - }, - { - "songno": "167", - "difficulty": "oni", - "note_count": 828, - "density_avg": 6.663298872196968, - "density_peak": 14, - "bpm_avg": 201.7512077294686, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 798, - "color_complexity": 0.00619789634739647 - }, - { - "songno": "1395", - "difficulty": "oni", - "note_count": 926, - "density_avg": 6.844050258684406, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 801, - "color_complexity": 0.01583305014615938 - }, - { - "songno": "601", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.8070832099039524, - "density_peak": 9, - "bpm_avg": 169.30492063492076, - "bpm_change": 35, - "scroll_change": 2, - "rhythm_complexity": 304, - "color_complexity": 0.0009495584436399778 - }, - { - "songno": "601", - "difficulty": "ura", - "note_count": 757, - "density_avg": 6.325667767200526, - "density_peak": 12, - "bpm_avg": 173.14684280052856, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 638, - "color_complexity": 0.007174443241356957 - }, - { - "songno": "629", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.310009267840592, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.0073302324515683945 - }, - { - "songno": "1140", - "difficulty": "oni", - "note_count": 562, - "density_avg": 5.053869541204061, - "density_peak": 10, - "bpm_avg": 159.99039145907471, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 504, - "color_complexity": 0.0032252104966734993 - }, - { - "songno": "1140", - "difficulty": "ura", - "note_count": 879, - "density_avg": 7.592165251691859, - "density_peak": 16, - "bpm_avg": 159.812059158135, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 765, - "color_complexity": 0.0063164056042033 - }, - { - "songno": "1154", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.928441837802259, - "density_peak": 14, - "bpm_avg": 239.84745762711864, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 618, - "color_complexity": 0.005391017636986323 - }, - { - "songno": "1168", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.981200909546523, - "density_peak": 8, - "bpm_avg": 129.64721768707474, - "bpm_change": 14, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016828069744445901 - }, - { - "songno": "1168", - "difficulty": "ura", - "note_count": 733, - "density_avg": 6.603522347730304, - "density_peak": 11, - "bpm_avg": 129.88940927694543, - "bpm_change": 66, - "scroll_change": 6, - "rhythm_complexity": 465, - "color_complexity": 0.006026550275146372 - }, - { - "songno": "1183", - "difficulty": "oni", - "note_count": 532, - "density_avg": 4.685636856368563, - "density_peak": 11, - "bpm_avg": 168.1203007518797, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 434, - "color_complexity": 0.002400538246595251 - }, - { - "songno": "417", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.074066757528118, - "density_peak": 9, - "bpm_avg": 160.00004040404042, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.0015723617729505638 - }, - { - "songno": "417", - "difficulty": "ura", - "note_count": 777, - "density_avg": 6.395050243635046, - "density_peak": 11, - "bpm_avg": 160.00002574002573, - "bpm_change": 3, - "scroll_change": 5, - "rhythm_complexity": 749, - "color_complexity": 0.007238797565792423 - }, - { - "songno": "403", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.020080321285141, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 570, - "color_complexity": 0.004050200550464442 - }, - { - "songno": "403", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.144578313253012, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 743, - "color_complexity": 0.006892555903810102 - }, - { - "songno": "1197", - "difficulty": "oni", - "note_count": 602, - "density_avg": 4.318917089678512, - "density_peak": 11, - "bpm_avg": 211.64784053156146, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 486, - "color_complexity": 0.0017625623784054663 - }, - { - "songno": "1197", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.1671065989847715, - "density_peak": 16, - "bpm_avg": 211.78778778778778, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 857, - "color_complexity": 0.012080873725724186 - }, - { - "songno": "365", - "difficulty": "oni", - "note_count": 822, - "density_avg": 7.195959595959596, - "density_peak": 15, - "bpm_avg": 200.4087591240876, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 799, - "color_complexity": 0.011999234431091285 - }, - { - "songno": "359", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.49475890985325, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 300, - "color_complexity": 0.003194577269203926 - }, - { - "songno": "429", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.16969872433587, - "density_peak": 11, - "bpm_avg": 160.0048320413437, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 346, - "color_complexity": 0.0027322792176294425 - }, - { - "songno": "415", - "difficulty": "oni", - "note_count": 521, - "density_avg": 3.6019708510654853, - "density_peak": 8, - "bpm_avg": 139.96679462571976, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 441, - "color_complexity": 0.001474628075984925 - }, - { - "songno": "1181", - "difficulty": "oni", - "note_count": 231, - "density_avg": 4.091787439613526, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 141, - "color_complexity": 0.0006873993156336606 - }, - { - "songno": "367", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.106422018348624, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.006190357760781997 - }, - { - "songno": "1195", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.9287817938420337, - "density_peak": 8, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0010137507865453303 - }, - { - "songno": "401", - "difficulty": "oni", - "note_count": 668, - "density_avg": 5.527186761229315, - "density_peak": 15, - "bpm_avg": 260.0898203592814, - "bpm_change": 4, - "scroll_change": 12, - "rhythm_complexity": 585, - "color_complexity": 0.005183734489235187 - }, - { - "songno": "398", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.923201856148492, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.003282641543197276 - }, - { - "songno": "1142", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.936940298507462, - "density_peak": 9, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0012709410806509788 - }, - { - "songno": "159", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.551603934560249, - "density_peak": 15, - "bpm_avg": 160.03296732026106, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 698, - "color_complexity": 0.006219329504113033 - }, - { - "songno": "171", - "difficulty": "oni", - "note_count": 653, - "density_avg": 6.533159746300676, - "density_peak": 12, - "bpm_avg": 235.19142419601837, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 567, - "color_complexity": 0.00635848433143966 - }, - { - "songno": "1383", - "difficulty": "oni", - "note_count": 1079, - "density_avg": 7.431815907462518, - "density_peak": 16, - "bpm_avg": 156.7701575532901, - "bpm_change": 11, - "scroll_change": 11, - "rhythm_complexity": 971, - "color_complexity": 0.013871993739205354 - }, - { - "songno": "617", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.326363636363637, - "density_peak": 12, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0040817978954081745 - }, - { - "songno": "1397", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "70", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.62962962962963, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.0065436619114178545 - }, - { - "songno": "64", - "difficulty": "oni", - "note_count": 608, - "density_avg": 6.144193061840121, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.00492357033293637 - }, - { - "songno": "1368", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.780729166666666, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010869024745673393 - }, - { - "songno": "824", - "difficulty": "oni", - "note_count": 199, - "density_avg": 2.5830944199210877, - "density_peak": 6, - "bpm_avg": 148.72085427135676, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 161, - "color_complexity": 0.0003074235312836148 - }, - { - "songno": "824", - "difficulty": "ura", - "note_count": 430, - "density_avg": 5.175755954031412, - "density_peak": 10, - "bpm_avg": 148.87081395348835, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 363, - "color_complexity": 0.0032175598758908477 - }, - { - "songno": "1426", - "difficulty": "oni", - "note_count": 479, - "density_avg": 4.875928243637881, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.002172193250509392 - }, - { - "songno": "1354", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.734225327873769, - "density_peak": 13, - "bpm_avg": 179.72653594771046, - "bpm_change": 7, - "scroll_change": 15, - "rhythm_complexity": 734, - "color_complexity": 0.007964919131700072 - }, - { - "songno": "818", - "difficulty": "oni", - "note_count": 846, - "density_avg": 7.1729651162790695, - "density_peak": 16, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 657, - "color_complexity": 0.00918082922932229 - }, - { - "songno": "1432", - "difficulty": "oni", - "note_count": 1053, - "density_avg": 7.269142512116014, - "density_peak": 14, - "bpm_avg": 156.8356600189935, - "bpm_change": 6, - "scroll_change": 20, - "rhythm_complexity": 907, - "color_complexity": 0.013030326912320108 - }, - { - "songno": "987", - "difficulty": "oni", - "note_count": 380, - "density_avg": 4.569760653823701, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.002440377499765448 - }, - { - "songno": "993", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.096801346801346, - "density_peak": 14, - "bpm_avg": 180.09393063583815, - "bpm_change": 35, - "scroll_change": 48, - "rhythm_complexity": 603, - "color_complexity": 0.00686516603828627 - }, - { - "songno": "993", - "difficulty": "ura", - "note_count": 1070, - "density_avg": 7.88102900841604, - "density_peak": 18, - "bpm_avg": 162.01897196261712, - "bpm_change": 42, - "scroll_change": 272, - "rhythm_complexity": 924, - "color_complexity": 0.013241814374083491 - }, - { - "songno": "763", - "difficulty": "oni", - "note_count": 978, - "density_avg": 8.256232664954757, - "density_peak": 17, - "bpm_avg": 194.02607361963192, - "bpm_change": 8, - "scroll_change": 11, - "rhythm_complexity": 874, - "color_complexity": 0.013895492789115544 - }, - { - "songno": "777", - "difficulty": "oni", - "note_count": 739, - "density_avg": 7.797051978277734, - "density_peak": 16, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.013527538876619076 - }, - { - "songno": "944", - "difficulty": "oni", - "note_count": 629, - "density_avg": 4.673945383329588, - "density_peak": 10, - "bpm_avg": 101.57392686804451, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 522, - "color_complexity": 0.0025838360181263077 - }, - { - "songno": "1208", - "difficulty": "oni", - "note_count": 558, - "density_avg": 2.871920801066091, - "density_peak": 5, - "bpm_avg": 113.10578494623665, - "bpm_change": 26, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0009551482149608538 - }, - { - "songno": "1234", - "difficulty": "oni", - "note_count": 916, - "density_avg": 5.901973929236499, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 863, - "color_complexity": 0.004255697428349144 - }, - { - "songno": "1220", - "difficulty": "oni", - "note_count": 405, - "density_avg": 2.868949232585596, - "density_peak": 7, - "bpm_avg": 110, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 343, - "color_complexity": 0.0011273159462396626 - }, - { - "songno": "1220", - "difficulty": "ura", - "note_count": 804, - "density_avg": 5.668625146886017, - "density_peak": 15, - "bpm_avg": 111.71641791044776, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 662, - "color_complexity": 0.008858915966979342 - }, - { - "songno": "549", - "difficulty": "oni", - "note_count": 716, - "density_avg": 6.422453703703703, - "density_peak": 15, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004328081905707195 - }, - { - "songno": "561", - "difficulty": "oni", - "note_count": 471, - "density_avg": 4.8307692307692305, - "density_peak": 12, - "bpm_avg": 196.43312101910828, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 428, - "color_complexity": 0.003748535437129884 - }, - { - "songno": "207", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.037965328834292, - "density_peak": 7, - "bpm_avg": 110.00082882882883, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0020621240315578226 - }, - { - "songno": "213", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.259094942324756, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.002258420190569404 - }, - { - "songno": "575", - "difficulty": "oni", - "note_count": 620, - "density_avg": 5.291607396870555, - "density_peak": 14, - "bpm_avg": 360, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.006999148109652445 - }, - { - "songno": "1036", - "difficulty": "oni", - "note_count": 752, - "density_avg": 4.851612903225806, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.003321776251056654 - }, - { - "songno": "1022", - "difficulty": "oni", - "note_count": 469, - "density_avg": 4.20897435897436, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0013065631456790111 - }, - { - "songno": "1023", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.9256830194989174, - "density_peak": 10, - "bpm_avg": 140.08218390804598, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0012653129320987643 - }, - { - "songno": "1037", - "difficulty": "oni", - "note_count": 985, - "density_avg": 7.836117740652347, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.01393773577281376 - }, - { - "songno": "212", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.296930388686157, - "density_peak": 10, - "bpm_avg": 154.76406533575317, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 487, - "color_complexity": 0.0034473077023386553 - }, - { - "songno": "574", - "difficulty": "oni", - "note_count": 848, - "density_avg": 7.43859649122807, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 826, - "color_complexity": 0.007734122412654237 - }, - { - "songno": "560", - "difficulty": "oni", - "note_count": 640, - "density_avg": 5.005586592178771, - "density_peak": 12, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 607, - "color_complexity": 0.004092341027345833 - }, - { - "songno": "548", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.615460992907801, - "density_peak": 12, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 611, - "color_complexity": 0.004721166844608656 - }, - { - "songno": "1235", - "difficulty": "oni", - "note_count": 985, - "density_avg": 6.457902001380263, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 890, - "color_complexity": 0.007687399638884248 - }, - { - "songno": "1235", - "difficulty": "ura", - "note_count": 1244, - "density_avg": 8.155969634230503, - "density_peak": 19, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1154, - "color_complexity": 0.016763635685183353 - }, - { - "songno": "951", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.9867724867724865, - "density_peak": 9, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.0022818653178819704 - }, - { - "songno": "951", - "difficulty": "ura", - "note_count": 854, - "density_avg": 7.342592592592593, - "density_peak": 13, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.009435180951384889 - }, - { - "songno": "1209", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.398099117447386, - "density_peak": 10, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0025785174201498084 - }, - { - "songno": "945", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.7363184079602, - "density_peak": 9, - "bpm_avg": 193.01470588235293, - "bpm_change": 3, - "scroll_change": 4, - "rhythm_complexity": 487, - "color_complexity": 0.0033306615363511726 - }, - { - "songno": "776", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.69831223628692, - "density_peak": 11, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004772060150827519 - }, - { - "songno": "776", - "difficulty": "ura", - "note_count": 648, - "density_avg": 6.653164556962025, - "density_peak": 13, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.003922080586702115 - }, - { - "songno": "762", - "difficulty": "oni", - "note_count": 659, - "density_avg": 6.059770114942529, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 542, - "color_complexity": 0.0049837290818746 - }, - { - "songno": "992", - "difficulty": "oni", - "note_count": 757, - "density_avg": 6.41090785907859, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.009610421709254004 - }, - { - "songno": "819", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.447102115915364, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.007005063298365982 - }, - { - "songno": "819", - "difficulty": "ura", - "note_count": 1121, - "density_avg": 8.250229990800369, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 89, - "rhythm_complexity": 1099, - "color_complexity": 0.016406242616303725 - }, - { - "songno": "1355", - "difficulty": "oni", - "note_count": 811, - "density_avg": 7.041967728612796, - "density_peak": 14, - "bpm_avg": 180.4588581997534, - "bpm_change": 50, - "scroll_change": 0, - "rhythm_complexity": 626, - "color_complexity": 0.010109033251288277 - }, - { - "songno": "59", - "difficulty": "oni", - "note_count": 266, - "density_avg": 3.6247379454926625, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0012709674618358168 - }, - { - "songno": "1433", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.378170289855072, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 596, - "color_complexity": 0.004304697680107563 - }, - { - "songno": "1427", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.724164825165736, - "density_peak": 14, - "bpm_avg": 172.85785536159602, - "bpm_change": 3, - "scroll_change": 7, - "rhythm_complexity": 774, - "color_complexity": 0.007210905889246595 - }, - { - "songno": "1341", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.022537562604341, - "density_peak": 10, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 36, - "rhythm_complexity": 514, - "color_complexity": 0.0032715521018358376 - }, - { - "songno": "1369", - "difficulty": "oni", - "note_count": 1333, - "density_avg": 8.628180392619107, - "density_peak": 26, - "bpm_avg": 293.294448612153, - "bpm_change": 34, - "scroll_change": 73, - "rhythm_complexity": 1212, - "color_complexity": 0.026552837371460504 - }, - { - "songno": "65", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.283987915407855, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.01022240041848812 - }, - { - "songno": "831", - "difficulty": "oni", - "note_count": 155, - "density_avg": 2.110328638497653, - "density_peak": 4, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 97, - "color_complexity": 0.00013929702017038287 - }, - { - "songno": "831", - "difficulty": "ura", - "note_count": 390, - "density_avg": 4.896103896103897, - "density_peak": 14, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001968236276567831 - }, - { - "songno": "71", - "difficulty": "oni", - "note_count": 506, - "density_avg": 5.021374045801527, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.004396389028277388 - }, - { - "songno": "1396", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "164", - "difficulty": "oni", - "note_count": 702, - "density_avg": 5.973512476007677, - "density_peak": 11, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 644, - "color_complexity": 0.005367313973709004 - }, - { - "songno": "164", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.011644273832373, - "density_peak": 13, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 768, - "color_complexity": 0.008434488632128357 - }, - { - "songno": "616", - "difficulty": "oni", - "note_count": 706, - "density_avg": 6.154729138539452, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 677, - "color_complexity": 0.004885405373502864 - }, - { - "songno": "1382", - "difficulty": "oni", - "note_count": 230, - "density_avg": 2.795138888888889, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 138, - "color_complexity": 0.00041253739551006734 - }, - { - "songno": "1382", - "difficulty": "ura", - "note_count": 408, - "density_avg": 4.8820512820512825, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 305, - "color_complexity": 0.0018377258416491153 - }, - { - "songno": "1157", - "difficulty": "oni", - "note_count": 444, - "density_avg": 4.742541436464088, - "density_peak": 10, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002446646804012332 - }, - { - "songno": "1157", - "difficulty": "ura", - "note_count": 594, - "density_avg": 5.795218954493964, - "density_peak": 10, - "bpm_avg": 173.11915824915826, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 567, - "color_complexity": 0.003914227134039106 - }, - { - "songno": "1143", - "difficulty": "oni", - "note_count": 391, - "density_avg": 4.858786655169103, - "density_peak": 10, - "bpm_avg": 178.6214833759591, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0012928450790294433 - }, - { - "songno": "399", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "399", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "366", - "difficulty": "oni", - "note_count": 382, - "density_avg": 3.0362292051756006, - "density_peak": 7, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 374, - "color_complexity": 0.0008775127155092593 - }, - { - "songno": "366", - "difficulty": "ura", - "note_count": 724, - "density_avg": 5.733333333333333, - "density_peak": 9, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 722, - "color_complexity": 0.004021803271604949 - }, - { - "songno": "400", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "400", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "1194", - "difficulty": "oni", - "note_count": 435, - "density_avg": 4.693275013668671, - "density_peak": 10, - "bpm_avg": 191.95172413793102, - "bpm_change": 1, - "scroll_change": 18, - "rhythm_complexity": 421, - "color_complexity": 0.0027733587817132146 - }, - { - "songno": "1180", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.829068755439513, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 592, - "color_complexity": 0.004626618460704637 - }, - { - "songno": "414", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.750297275733301, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 662, - "color_complexity": 0.00452032040219044 - }, - { - "songno": "414", - "difficulty": "ura", - "note_count": 939, - "density_avg": 7.802787777331747, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 908, - "color_complexity": 0.011284689481677213 - }, - { - "songno": "372", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.7213622291021675, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 668, - "color_complexity": 0.005214235027496703 - }, - { - "songno": "428", - "difficulty": "oni", - "note_count": 840, - "density_avg": 5.928397279609906, - "density_peak": 11, - "bpm_avg": 164.92857142857142, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 763, - "color_complexity": 0.006646954772878754 - }, - { - "songno": "410", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.822945205479452, - "density_peak": 11, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006408985514693502 - }, - { - "songno": "1184", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.4989690721649485, - "density_peak": 14, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 726, - "color_complexity": 0.009521952015316769 - }, - { - "songno": "1190", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.097539012059327, - "density_peak": 14, - "bpm_avg": 146.63976377952756, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 338, - "color_complexity": 0.0022999258747490913 - }, - { - "songno": "404", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.851326566936777, - "density_peak": 13, - "bpm_avg": 169.9844336175398, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 797, - "color_complexity": 0.008049431070957097 - }, - { - "songno": "438", - "difficulty": "oni", - "note_count": 818, - "density_avg": 5.791427477994641, - "density_peak": 14, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.007998437370327547 - }, - { - "songno": "1147", - "difficulty": "oni", - "note_count": 766, - "density_avg": 7.07621247113164, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.009152072851309225 - }, - { - "songno": "1153", - "difficulty": "oni", - "note_count": 294, - "density_avg": 2.5526976603782336, - "density_peak": 6, - "bpm_avg": 112.0011224489796, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.000252077545989206 - }, - { - "songno": "389", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.1273100616016425, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 388, - "color_complexity": 0.0026050518654572937 - }, - { - "songno": "1386", - "difficulty": "oni", - "note_count": 452, - "density_avg": 4.466666666666667, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 398, - "color_complexity": 0.0027950377672401935 - }, - { - "songno": "612", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.303291608715808, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 679, - "color_complexity": 0.005978157255408406 - }, - { - "songno": "160", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.04586483390607, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006200499452198458 - }, - { - "songno": "160", - "difficulty": "ura", - "note_count": 713, - "density_avg": 4.839089347079038, - "density_peak": 16, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 674, - "color_complexity": 0.00693128423392695 - }, - { - "songno": "606", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.532051282051282, - "density_peak": 11, - "bpm_avg": 205.63366336633663, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 465, - "color_complexity": 0.0030682981990958996 - }, - { - "songno": "606", - "difficulty": "ura", - "note_count": 798, - "density_avg": 7.161538461538461, - "density_peak": 15, - "bpm_avg": 207.23684210526315, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 749, - "color_complexity": 0.010069282996383962 - }, - { - "songno": "1392", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.4338235294117645, - "density_peak": 11, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 682, - "color_complexity": 0.005502803813450183 - }, - { - "songno": "1392", - "difficulty": "ura", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 17, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 715, - "color_complexity": 0.01452331502908522 - }, - { - "songno": "148", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.8958393113342895, - "density_peak": 17, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 686, - "color_complexity": 0.010113767476029744 - }, - { - "songno": "1345", - "difficulty": "oni", - "note_count": 581, - "density_avg": 4.254989796765805, - "density_peak": 8, - "bpm_avg": 139.0790533562828, - "bpm_change": 45, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.0021638817153075045 - }, - { - "songno": "1345", - "difficulty": "ura", - "note_count": 832, - "density_avg": 6.093203977468415, - "density_peak": 10, - "bpm_avg": 139.34663461538537, - "bpm_change": 45, - "scroll_change": 1, - "rhythm_complexity": 741, - "color_complexity": 0.0056403792611961845 - }, - { - "songno": "49", - "difficulty": "oni", - "note_count": 619, - "density_avg": 4.7220563847429515, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002946306581031739 - }, - { - "songno": "49", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.835820895522389, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 671, - "color_complexity": 0.005567746728227036 - }, - { - "songno": "809", - "difficulty": "oni", - "note_count": 434, - "density_avg": 4.801960784313726, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.00219817331725675 - }, - { - "songno": "1423", - "difficulty": "oni", - "note_count": 400, - "density_avg": 4.5595854922279795, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0018558804431185695 - }, - { - "songno": "1437", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.769278606965173, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 760, - "color_complexity": 0.009505697225651586 - }, - { - "songno": "1351", - "difficulty": "oni", - "note_count": 1025, - "density_avg": 6.603465851172274, - "density_peak": 13, - "bpm_avg": 307.7531707317073, - "bpm_change": 4, - "scroll_change": 55, - "rhythm_complexity": 912, - "color_complexity": 0.012679539958429393 - }, - { - "songno": "1379", - "difficulty": "oni", - "note_count": 1057, - "density_avg": 7.084450402144772, - "density_peak": 13, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 791, - "color_complexity": 0.013184509036100125 - }, - { - "songno": "835", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.739904988123516, - "density_peak": 14, - "bpm_avg": 227, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.007293012462853437 - }, - { - "songno": "61", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.224270744221638, - "density_peak": 11, - "bpm_avg": 199.80547138047217, - "bpm_change": 6, - "scroll_change": 5, - "rhythm_complexity": 415, - "color_complexity": 0.0031743616536387127 - }, - { - "songno": "821", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.032917532917533, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0030350479749134507 - }, - { - "songno": "766", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.843888888888889, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002595659520017682 - }, - { - "songno": "982", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.161106905867197, - "density_peak": 15, - "bpm_avg": 199.17582159624416, - "bpm_change": 26, - "scroll_change": 24, - "rhythm_complexity": 744, - "color_complexity": 0.011557347918342226 - }, - { - "songno": "1231", - "difficulty": "oni", - "note_count": 645, - "density_avg": 4.683928571428571, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 543, - "color_complexity": 0.0029976610517622594 - }, - { - "songno": "969", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.723751686909583, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021041066572503823 - }, - { - "songno": "1225", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.10645825622744, - "density_peak": 10, - "bpm_avg": 135.00590361445848, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021983715933300133 - }, - { - "songno": "1225", - "difficulty": "ura", - "note_count": 641, - "density_avg": 5.33180576644295, - "density_peak": 12, - "bpm_avg": 135.03413416536702, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0033193741298001116 - }, - { - "songno": "941", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.225446009389672, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.003752197212831999 - }, - { - "songno": "799", - "difficulty": "oni", - "note_count": 531, - "density_avg": 4.2548076923076925, - "density_peak": 8, - "bpm_avg": 199.90583804143125, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.001668554489974818 - }, - { - "songno": "955", - "difficulty": "oni", - "note_count": 900, - "density_avg": 8.084696823869105, - "density_peak": 15, - "bpm_avg": 271.9111111111111, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.010041976962576167 - }, - { - "songno": "1219", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.358890689909964, - "density_peak": 11, - "bpm_avg": 166.09129263913826, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 512, - "color_complexity": 0.0027964857210582145 - }, - { - "songno": "1219", - "difficulty": "ura", - "note_count": 825, - "density_avg": 6.456166641249049, - "density_peak": 12, - "bpm_avg": 167.29315151515152, - "bpm_change": 7, - "scroll_change": 86, - "rhythm_complexity": 794, - "color_complexity": 0.008253724780231682 - }, - { - "songno": "202", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 11, - "bpm_avg": 229.2149019607842, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.004982959733910084 - }, - { - "songno": "202", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 13, - "bpm_avg": 230.97896732026177, - "bpm_change": 7, - "scroll_change": 6, - "rhythm_complexity": 619, - "color_complexity": 0.008060110087944019 - }, - { - "songno": "570", - "difficulty": "oni", - "note_count": 899, - "density_avg": 7.320846905537459, - "density_peak": 15, - "bpm_avg": 194.6496106785317, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 808, - "color_complexity": 0.010651287823167377 - }, - { - "songno": "558", - "difficulty": "oni", - "note_count": 704, - "density_avg": 6.253389434315101, - "density_peak": 15, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.006618036168276772 - }, - { - "songno": "1033", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.036475409836066, - "density_peak": 10, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 402, - "color_complexity": 0.0007345935262122296 - }, - { - "songno": "1033", - "difficulty": "ura", - "note_count": 784, - "density_avg": 7.169426751592357, - "density_peak": 16, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 727, - "color_complexity": 0.009556082350817993 - }, - { - "songno": "1027", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.6757373820173465, - "density_peak": 8, - "bpm_avg": 267.8518252595155, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.0025686427369981985 - }, - { - "songno": "1027", - "difficulty": "ura", - "note_count": 847, - "density_avg": 6.9474783247378005, - "density_peak": 13, - "bpm_avg": 262.02409681227863, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 773, - "color_complexity": 0.0067428453359066704 - }, - { - "songno": "1026", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.5561904761904755, - "density_peak": 9, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.002528991509849881 - }, - { - "songno": "1032", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.715848214285714, - "density_peak": 10, - "bpm_avg": 316.6707530647986, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 523, - "color_complexity": 0.0019617138743353375 - }, - { - "songno": "1032", - "difficulty": "ura", - "note_count": 1074, - "density_avg": 8.870089285714284, - "density_peak": 23, - "bpm_avg": 317.8072625698324, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 973, - "color_complexity": 0.018461684761804573 - }, - { - "songno": "559", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.632826187183033, - "density_peak": 11, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.005906721880753596 - }, - { - "songno": "571", - "difficulty": "oni", - "note_count": 899, - "density_avg": 6.6527169697028, - "density_peak": 13, - "bpm_avg": 226.01601779755273, - "bpm_change": 2, - "scroll_change": 31, - "rhythm_complexity": 842, - "color_complexity": 0.0117320719217324 - }, - { - "songno": "203", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.049520976000035, - "density_peak": 9, - "bpm_avg": 170.98465608465608, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 546, - "color_complexity": 0.003207393256157052 - }, - { - "songno": "203", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.812845761269889, - "density_peak": 12, - "bpm_avg": 170.9886274509804, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 756, - "color_complexity": 0.009111100663275726 - }, - { - "songno": "565", - "difficulty": "oni", - "note_count": 585, - "density_avg": 4.936708860759494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0038411581593529834 - }, - { - "songno": "1218", - "difficulty": "oni", - "note_count": 281, - "density_avg": 3.2233468286099862, - "density_peak": 7, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 238, - "color_complexity": 0.0005612459415740576 - }, - { - "songno": "1218", - "difficulty": "ura", - "note_count": 599, - "density_avg": 6.748177601060305, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.005773923137481609 - }, - { - "songno": "954", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.254587869362364, - "density_peak": 14, - "bpm_avg": 280.5296803652968, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 854, - "color_complexity": 0.007469683954205944 - }, - { - "songno": "954", - "difficulty": "ura", - "note_count": 1259, - "density_avg": 10.426399688958009, - "density_peak": 18, - "bpm_avg": 280.6799046862589, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 1197, - "color_complexity": 0.030354191089788922 - }, - { - "songno": "798", - "difficulty": "oni", - "note_count": 903, - "density_avg": 6.911903686482896, - "density_peak": 15, - "bpm_avg": 190.6234772978959, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 838, - "color_complexity": 0.012583282845687502 - }, - { - "songno": "940", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.815789473684211, - "density_peak": 15, - "bpm_avg": 160.6177606177606, - "bpm_change": 2, - "scroll_change": 39, - "rhythm_complexity": 621, - "color_complexity": 0.007578414847205498 - }, - { - "songno": "968", - "difficulty": "oni", - "note_count": 877, - "density_avg": 6.878431372549019, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 793, - "color_complexity": 0.008657901298085332 - }, - { - "songno": "1230", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.8243204577968526, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 291, - "color_complexity": 0.0015480482903287784 - }, - { - "songno": "997", - "difficulty": "oni", - "note_count": 590, - "density_avg": 5.353088158581116, - "density_peak": 9, - "bpm_avg": 173.92999999999762, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 574, - "color_complexity": 0.0035676447379020533 - }, - { - "songno": "997", - "difficulty": "ura", - "note_count": 817, - "density_avg": 7.412666145018257, - "density_peak": 12, - "bpm_avg": 173.92999999999637, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007633115582408368 - }, - { - "songno": "983", - "difficulty": "oni", - "note_count": 965, - "density_avg": 7.744537147397697, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.012424795118273716 - }, - { - "songno": "773", - "difficulty": "oni", - "note_count": 487, - "density_avg": 5.223913909379468, - "density_peak": 8, - "bpm_avg": 166.05244353182835, - "bpm_change": 16, - "scroll_change": 2, - "rhythm_complexity": 462, - "color_complexity": 0.0030853450543817137 - }, - { - "songno": "820", - "difficulty": "oni", - "note_count": 1096, - "density_avg": 8.154568368778666, - "density_peak": 17, - "bpm_avg": 231.02189781021897, - "bpm_change": 13, - "scroll_change": 16, - "rhythm_complexity": 1036, - "color_complexity": 0.014011522543783014 - }, - { - "songno": "60", - "difficulty": "oni", - "note_count": 986, - "density_avg": 7.268738009882184, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 946, - "color_complexity": 0.01067869338748385 - }, - { - "songno": "60", - "difficulty": "ura", - "note_count": 942, - "density_avg": 6.944372419177503, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 897, - "color_complexity": 0.00877543837012501 - }, - { - "songno": "834", - "difficulty": "oni", - "note_count": 772, - "density_avg": 6.412097117997289, - "density_peak": 14, - "bpm_avg": 257.55440414507774, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 663, - "color_complexity": 0.006697433702415283 - }, - { - "songno": "834", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.99109048522911, - "density_peak": 19, - "bpm_avg": 256.5271191135734, - "bpm_change": 12, - "scroll_change": 3, - "rhythm_complexity": 951, - "color_complexity": 0.021677678208683868 - }, - { - "songno": "74", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.7401869158878505, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 603, - "color_complexity": 0.0029849498006061866 - }, - { - "songno": "74", - "difficulty": "ura", - "note_count": 1007, - "density_avg": 7.540717628705148, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 988, - "color_complexity": 0.010266711597571655 - }, - { - "songno": "1378", - "difficulty": "oni", - "note_count": 913, - "density_avg": 7.310155920775389, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.012625310860513137 - }, - { - "songno": "1436", - "difficulty": "oni", - "note_count": 885, - "density_avg": 5.844629822732013, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.008381398663016416 - }, - { - "songno": "1350", - "difficulty": "oni", - "note_count": 1405, - "density_avg": 10.253251445086708, - "density_peak": 21, - "bpm_avg": 303, - "bpm_change": 0, - "scroll_change": 83, - "rhythm_complexity": 1315, - "color_complexity": 0.033778714032070195 - }, - { - "songno": "808", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.720000000000001, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0037679802029042383 - }, - { - "songno": "48", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.679694862881422, - "density_peak": 8, - "bpm_avg": 114.94999999999894, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.002589514654307961 - }, - { - "songno": "48", - "difficulty": "ura", - "note_count": 761, - "density_avg": 6.765425367362723, - "density_peak": 11, - "bpm_avg": 114.94999999999837, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.003362280746651282 - }, - { - "songno": "1344", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.141179078014185, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 442, - "color_complexity": 0.0006807840676662876 - }, - { - "songno": "1344", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.9379432624113475, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 914, - "color_complexity": 0.008693233077475998 - }, - { - "songno": "1422", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.442182573873539, - "density_peak": 11, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002190098349471223 - }, - { - "songno": "149", - "difficulty": "oni", - "note_count": 437, - "density_avg": 4.0205237084217975, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 311, - "color_complexity": 0.00209076333778264 - }, - { - "songno": "149", - "difficulty": "ura", - "note_count": 600, - "density_avg": 5.520169851380043, - "density_peak": 13, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.0036102428261901593 - }, - { - "songno": "161", - "difficulty": "oni", - "note_count": 336, - "density_avg": 3.7333333333333334, - "density_peak": 7, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.0013565827628428653 - }, - { - "songno": "1393", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.971698113207547, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 436, - "color_complexity": 0.0021725238743622506 - }, - { - "songno": "1393", - "difficulty": "ura", - "note_count": 694, - "density_avg": 6.547169811320755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.005922299786352035 - }, - { - "songno": "607", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.0960901259111995, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0012263374751473608 - }, - { - "songno": "613", - "difficulty": "oni", - "note_count": 489, - "density_avg": 3.5018855007411624, - "density_peak": 10, - "bpm_avg": 181.9869120654395, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 421, - "color_complexity": 0.0016627435161517931 - }, - { - "songno": "1387", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.325037707390649, - "density_peak": 9, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 506, - "color_complexity": 0.0019024655563664391 - }, - { - "songno": "1387", - "difficulty": "ura", - "note_count": 828, - "density_avg": 6.537952114111055, - "density_peak": 12, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.006718393901497159 - }, - { - "songno": "388", - "difficulty": "oni", - "note_count": 797, - "density_avg": 7.966016991504248, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.00866014540466391 - }, - { - "songno": "1152", - "difficulty": "oni", - "note_count": 494, - "density_avg": 5.145833333333333, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.003386602261998105 - }, - { - "songno": "1146", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1146", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "405", - "difficulty": "oni", - "note_count": 488, - "density_avg": 4.880277556692487, - "density_peak": 9, - "bpm_avg": 149.98304303278687, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.0017754095399484093 - }, - { - "songno": "405", - "difficulty": "ura", - "note_count": 889, - "density_avg": 8.890505630941846, - "density_peak": 11, - "bpm_avg": 150.0380787401562, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 861, - "color_complexity": 0.011729459412475754 - }, - { - "songno": "1191", - "difficulty": "oni", - "note_count": 505, - "density_avg": 5.781144781144781, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 487, - "color_complexity": 0.003892441736116305 - }, - { - "songno": "363", - "difficulty": "oni", - "note_count": 737, - "density_avg": 6.38548876118563, - "density_peak": 11, - "bpm_avg": 158.00256445047518, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 646, - "color_complexity": 0.007416656936152684 - }, - { - "songno": "377", - "difficulty": "oni", - "note_count": 361, - "density_avg": 4.356490541422048, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0015329553410808733 - }, - { - "songno": "1185", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.515576778487833, - "density_peak": 20, - "bpm_avg": 196.06851549755302, - "bpm_change": 29, - "scroll_change": 29, - "rhythm_complexity": 509, - "color_complexity": 0 - }, - { - "songno": "411", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.243449362884388, - "density_peak": 10, - "bpm_avg": 137.98865013774105, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0015891950551217044 - }, - { - "songno": "361", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 12, - "bpm_avg": 224.0035555555554, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.005429825589896879 - }, - { - "songno": "361", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 14, - "bpm_avg": 223.99585620915028, - "bpm_change": 5, - "scroll_change": 17, - "rhythm_complexity": 726, - "color_complexity": 0.006034966973018688 - }, - { - "songno": "1193", - "difficulty": "oni", - "note_count": 446, - "density_avg": 4.53677621283255, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.002100814133282944 - }, - { - "songno": "407", - "difficulty": "oni", - "note_count": 959, - "density_avg": 8.196581196581198, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 941, - "color_complexity": 0.010258440000000094 - }, - { - "songno": "413", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.887506092452432, - "density_peak": 10, - "bpm_avg": 138.01525735294103, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 474, - "color_complexity": 0.002721927968452235 - }, - { - "songno": "1187", - "difficulty": "oni", - "note_count": 192, - "density_avg": 3.4224598930481283, - "density_peak": 6, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 170, - "color_complexity": 0.0003872417725260037 - }, - { - "songno": "375", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.309688195991091, - "density_peak": 15, - "bpm_avg": 222.2000000000011, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 678, - "color_complexity": 0.009954832201709802 - }, - { - "songno": "349", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.582089552238805, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.005015391229360386 - }, - { - "songno": "1150", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.166735966735967, - "density_peak": 8, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.001922157761224489 - }, - { - "songno": "1144", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.329027091952489, - "density_peak": 7, - "bpm_avg": 203.18540433925048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 443, - "color_complexity": 0.0011230039449595922 - }, - { - "songno": "1144", - "difficulty": "ura", - "note_count": 1177, - "density_avg": 7.732047961118381, - "density_peak": 15, - "bpm_avg": 202.86108751062022, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 1052, - "color_complexity": 0.015143964260216507 - }, - { - "songno": "1178", - "difficulty": "oni", - "note_count": 357, - "density_avg": 3.82713567839196, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0017277822024307577 - }, - { - "songno": "605", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.069369978417022, - "density_peak": 11, - "bpm_avg": 204.01119196988705, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 747, - "color_complexity": 0.006775862050350308 - }, - { - "songno": "1391", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.342639712534403, - "density_peak": 13, - "bpm_avg": 206.492641261498, - "bpm_change": 26, - "scroll_change": 26, - "rhythm_complexity": 652, - "color_complexity": 0.006252435602047557 - }, - { - "songno": "1391", - "difficulty": "ura", - "note_count": 1015, - "density_avg": 8.459631154037345, - "density_peak": 19, - "bpm_avg": 211.71536945812818, - "bpm_change": 26, - "scroll_change": 28, - "rhythm_complexity": 904, - "color_complexity": 0.015520762037939024 - }, - { - "songno": "163", - "difficulty": "oni", - "note_count": 704, - "density_avg": 5.723577235772358, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 676, - "color_complexity": 0.004528000525338739 - }, - { - "songno": "163", - "difficulty": "ura", - "note_count": 754, - "density_avg": 6.130081300813008, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007651195696750384 - }, - { - "songno": "177", - "difficulty": "oni", - "note_count": 273, - "density_avg": 2.7215447154471546, - "density_peak": 6, - "bpm_avg": 143.6153846153846, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 238, - "color_complexity": 0.0009223871181621666 - }, - { - "songno": "1385", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.3966244725738393, - "density_peak": 7, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 322, - "color_complexity": 0.0008611307229117726 - }, - { - "songno": "611", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.85369532428356, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0018168242793145993 - }, - { - "songno": "89", - "difficulty": "oni", - "note_count": 630, - "density_avg": 6.9792864121685545, - "density_peak": 11, - "bpm_avg": 149.78647619047624, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 613, - "color_complexity": 0.008537524954666779 - }, - { - "songno": "639", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.1597578384888045, - "density_peak": 11, - "bpm_avg": 159.8883452211127, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 641, - "color_complexity": 0.0049019681003699056 - }, - { - "songno": "1352", - "difficulty": "oni", - "note_count": 976, - "density_avg": 6.432490203063769, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.009673730318733411 - }, - { - "songno": "1434", - "difficulty": "oni", - "note_count": 987, - "density_avg": 7.048901000297321, - "density_peak": 17, - "bpm_avg": 246.48276595745295, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 944, - "color_complexity": 0.013522636875938077 - }, - { - "songno": "1420", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.794391025641026, - "density_peak": 11, - "bpm_avg": 106, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 228, - "color_complexity": 0.0008096154319094754 - }, - { - "songno": "1346", - "difficulty": "oni", - "note_count": 731, - "density_avg": 5.2123478260869565, - "density_peak": 13, - "bpm_avg": 246, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 656, - "color_complexity": 0.005445417045367914 - }, - { - "songno": "62", - "difficulty": "oni", - "note_count": 484, - "density_avg": 4.870440251572328, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0024019322369124084 - }, - { - "songno": "822", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.7534246575342465, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.009264710511252189 - }, - { - "songno": "1408", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.885380116959064, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.004298713520987655 - }, - { - "songno": "76", - "difficulty": "oni", - "note_count": 414, - "density_avg": 4.241803278688524, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 335, - "color_complexity": 0.002280557039890196 - }, - { - "songno": "76", - "difficulty": "ura", - "note_count": 604, - "density_avg": 6.163265306122449, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 541, - "color_complexity": 0.00503402827380954 - }, - { - "songno": "771", - "difficulty": "oni", - "note_count": 509, - "density_avg": 3.728937728937729, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002259716636599273 - }, - { - "songno": "771", - "difficulty": "ura", - "note_count": 892, - "density_avg": 6.534798534798535, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.010346595173235348 - }, - { - "songno": "765", - "difficulty": "oni", - "note_count": 1396, - "density_avg": 10.449101796407186, - "density_peak": 21, - "bpm_avg": 297.8510028653295, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 1306, - "color_complexity": 0.02941860481229533 - }, - { - "songno": "765", - "difficulty": "ura", - "note_count": 1582, - "density_avg": 11.841317365269461, - "density_peak": 21, - "bpm_avg": 298.90960809102404, - "bpm_change": 4, - "scroll_change": 10, - "rhythm_complexity": 1485, - "color_complexity": 0.043387231100353994 - }, - { - "songno": "995", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.473100172711572, - "density_peak": 12, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.006521679596126006 - }, - { - "songno": "759", - "difficulty": "oni", - "note_count": 840, - "density_avg": 7.017543859649123, - "density_peak": 14, - "bpm_avg": 196.54761904761904, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 799, - "color_complexity": 0.010942669400665031 - }, - { - "songno": "981", - "difficulty": "oni", - "note_count": 511, - "density_avg": 4.228554778554779, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 462, - "color_complexity": 0.0014429745157498416 - }, - { - "songno": "981", - "difficulty": "ura", - "note_count": 715, - "density_avg": 5.916666666666666, - "density_peak": 11, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 681, - "color_complexity": 0.005236517407400119 - }, - { - "songno": "1226", - "difficulty": "oni", - "note_count": 443, - "density_avg": 3.719566010641685, - "density_peak": 9, - "bpm_avg": 131.99189616252826, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 341, - "color_complexity": 0.0014030523666070758 - }, - { - "songno": "1226", - "difficulty": "ura", - "note_count": 716, - "density_avg": 5.70659106816367, - "density_peak": 9, - "bpm_avg": 131.97696927374292, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 658, - "color_complexity": 0.004716799359479074 - }, - { - "songno": "1232", - "difficulty": "oni", - "note_count": 845, - "density_avg": 6.020356234096692, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.0068927280195447355 - }, - { - "songno": "956", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.708198489751888, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 244, - "color_complexity": 0.0007476113189939049 - }, - { - "songno": "956", - "difficulty": "ura", - "note_count": 444, - "density_avg": 5.948553054662379, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0029731722608024643 - }, - { - "songno": "942", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.065656565656566, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 622, - "color_complexity": 0.004019373659124446 - }, - { - "songno": "215", - "difficulty": "oni", - "note_count": 773, - "density_avg": 6.62382176520994, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.00825285185185184 - }, - { - "songno": "573", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.470668485675307, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 677, - "color_complexity": 0.01010908632546473 - }, - { - "songno": "567", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.112097353169378, - "density_peak": 10, - "bpm_avg": 142.4812673611111, - "bpm_change": 3, - "scroll_change": 36, - "rhythm_complexity": 505, - "color_complexity": 0.0038046491252858384 - }, - { - "songno": "1024", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.809575625680087, - "density_peak": 8, - "bpm_avg": 132.99485861182518, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 352, - "color_complexity": 0.001556605212139685 - }, - { - "songno": "1030", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.509643605870021, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 595, - "color_complexity": 0.004070292505316198 - }, - { - "songno": "1018", - "difficulty": "oni", - "note_count": 575, - "density_avg": 5.05787037037037, - "density_peak": 9, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.0034068980769235363 - }, - { - "songno": "1019", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.457646048109966, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 516, - "color_complexity": 0.0036476983035874555 - }, - { - "songno": "1031", - "difficulty": "oni", - "note_count": 494, - "density_avg": 3.9919191919191914, - "density_peak": 7, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0015457317692153724 - }, - { - "songno": "1031", - "difficulty": "ura", - "note_count": 954, - "density_avg": 7.709090909090909, - "density_peak": 18, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 795, - "color_complexity": 0.011710923280119577 - }, - { - "songno": "566", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.976081798974448, - "density_peak": 12, - "bpm_avg": 168.5343288690476, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 613, - "color_complexity": 0.007144373517678283 - }, - { - "songno": "200", - "difficulty": "oni", - "note_count": 346, - "density_avg": 4.017482061317677, - "density_peak": 7, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0009276976312232294 - }, - { - "songno": "200", - "difficulty": "ura", - "note_count": 530, - "density_avg": 6.153946510110893, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.005688751915759429 - }, - { - "songno": "214", - "difficulty": "oni", - "note_count": 836, - "density_avg": 7.497757847533633, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.011018134776522194 - }, - { - "songno": "572", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.8618657098923626, - "density_peak": 12, - "bpm_avg": 202.66666666666666, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 678, - "color_complexity": 0.0096185216986233 - }, - { - "songno": "943", - "difficulty": "oni", - "note_count": 723, - "density_avg": 6.4257434564709035, - "density_peak": 16, - "bpm_avg": 140.7966804979253, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 593, - "color_complexity": 0.009071796814678519 - }, - { - "songno": "1233", - "difficulty": "oni", - "note_count": 423, - "density_avg": 4.648351648351649, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.001873767970042872 - }, - { - "songno": "1227", - "difficulty": "oni", - "note_count": 987, - "density_avg": 6.811594202898551, - "density_peak": 18, - "bpm_avg": 255.52178318135765, - "bpm_change": 4, - "scroll_change": 17, - "rhythm_complexity": 869, - "color_complexity": 0.00964452988735289 - }, - { - "songno": "1227", - "difficulty": "ura", - "note_count": 1423, - "density_avg": 9.834139599170697, - "density_peak": 22, - "bpm_avg": 258.9248067463106, - "bpm_change": 8, - "scroll_change": 15, - "rhythm_complexity": 1235, - "color_complexity": 0.043274336087493655 - }, - { - "songno": "980", - "difficulty": "oni", - "note_count": 668, - "density_avg": 6.879240277777777, - "density_peak": 12, - "bpm_avg": 177.95399999999867, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 548, - "color_complexity": 0.009504487694870448 - }, - { - "songno": "758", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 7.800658616904501, - "density_peak": 19, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 973, - "color_complexity": 0.014202202064665746 - }, - { - "songno": "994", - "difficulty": "oni", - "note_count": 707, - "density_avg": 6.721330956625074, - "density_peak": 13, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 652, - "color_complexity": 0.00756823602083857 - }, - { - "songno": "764", - "difficulty": "oni", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 18, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 915, - "color_complexity": 0.015127085085754683 - }, - { - "songno": "770", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.8833545577798025, - "density_peak": 12, - "bpm_avg": 190.0111415525114, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.008563301986770076 - }, - { - "songno": "823", - "difficulty": "oni", - "note_count": 656, - "density_avg": 5.473945849977807, - "density_peak": 12, - "bpm_avg": 186.0655487804878, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 606, - "color_complexity": 0.005156101571918044 - }, - { - "songno": "63", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.391256830601093, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0026968286473532726 - }, - { - "songno": "1409", - "difficulty": "oni", - "note_count": 323, - "density_avg": 3.0238297872340425, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.0008282608111890808 - }, - { - "songno": "1421", - "difficulty": "oni", - "note_count": 884, - "density_avg": 7.3027674514663365, - "density_peak": 14, - "bpm_avg": 194.57013574660633, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 769, - "color_complexity": 0.008397186902165423 - }, - { - "songno": "1347", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.503192279138827, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.00510742870214163 - }, - { - "songno": "1353", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.76568848758465, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001585119404761899 - }, - { - "songno": "1353", - "difficulty": "ura", - "note_count": 584, - "density_avg": 6.8550790067720095, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.005471040528058314 - }, - { - "songno": "1435", - "difficulty": "oni", - "note_count": 422, - "density_avg": 5.223066104078763, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.002570878933333334 - }, - { - "songno": "88", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.96455876221774, - "density_peak": 12, - "bpm_avg": 166.00569892473132, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 509, - "color_complexity": 0.004537288316077771 - }, - { - "songno": "610", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.5700934579439245, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 550, - "color_complexity": 0.004806449094815463 - }, - { - "songno": "1384", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.827655536627049, - "density_peak": 14, - "bpm_avg": 246.40949324324822, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 849, - "color_complexity": 0.008786793400270556 - }, - { - "songno": "1390", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.50950179763739, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 591, - "color_complexity": 0.001396942964380191 - }, - { - "songno": "1390", - "difficulty": "ura", - "note_count": 763, - "density_avg": 6.6620441705187465, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 42, - "rhythm_complexity": 652, - "color_complexity": 0.008686661921369524 - }, - { - "songno": "604", - "difficulty": "oni", - "note_count": 229, - "density_avg": 2.5008964955175226, - "density_peak": 5, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00021520105898491113 - }, - { - "songno": "1179", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.803006392169991, - "density_peak": 10, - "bpm_avg": 151.90814196242172, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0026358404403124076 - }, - { - "songno": "1145", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.744084267255098, - "density_peak": 13, - "bpm_avg": 368.3345565749239, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.0068985530022572595 - }, - { - "songno": "1145", - "difficulty": "ura", - "note_count": 1024, - "density_avg": 8.703570520889851, - "density_peak": 16, - "bpm_avg": 365.10408203124933, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 814, - "color_complexity": 0.016398410846007964 - }, - { - "songno": "1151", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.7010574346346052, - "density_peak": 8, - "bpm_avg": 164.10877192982457, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 274, - "color_complexity": 0.0007792538682939821 - }, - { - "songno": "348", - "difficulty": "oni", - "note_count": 577, - "density_avg": 4.695196078431372, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 573, - "color_complexity": 0.002620796728395067 - }, - { - "songno": "348", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.225, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 761, - "color_complexity": 0.0065780997556622095 - }, - { - "songno": "1186", - "difficulty": "oni", - "note_count": 321, - "density_avg": 2.3615234375000003, - "density_peak": 6, - "bpm_avg": 113, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.00048239674822057226 - }, - { - "songno": "412", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.963358778625953, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004905915782312931 - }, - { - "songno": "374", - "difficulty": "oni", - "note_count": 510, - "density_avg": 5.872506970010821, - "density_peak": 11, - "bpm_avg": 180.7050921568633, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 443, - "color_complexity": 0.003949187453729018 - }, - { - "songno": "360", - "difficulty": "oni", - "note_count": 898, - "density_avg": 7.42532299741602, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 838, - "color_complexity": 0.01274466297242181 - }, - { - "songno": "406", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.748883928571429, - "density_peak": 10, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.003863672456314922 - }, - { - "songno": "1192", - "difficulty": "oni", - "note_count": 490, - "density_avg": 5.608187134502924, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.003077949296741548 - }, - { - "songno": "423", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.930926642375808, - "density_peak": 11, - "bpm_avg": 163.00267080745343, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 600, - "color_complexity": 0.005188939088258996 - }, - { - "songno": "345", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.2950688073394496, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 343, - "color_complexity": 0.0010938347276067246 - }, - { - "songno": "351", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.345685547908947, - "density_peak": 14, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.005930428435866911 - }, - { - "songno": "437", - "difficulty": "oni", - "note_count": 594, - "density_avg": 4.1861482381530974, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 566, - "color_complexity": 0.0022255143667800547 - }, - { - "songno": "1148", - "difficulty": "oni", - "note_count": 384, - "density_avg": 3.4962962962962965, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0015761175381449103 - }, - { - "songno": "1148", - "difficulty": "ura", - "note_count": 656, - "density_avg": 5.972839506172839, - "density_peak": 8, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005057351511111088 - }, - { - "songno": "1174", - "difficulty": "oni", - "note_count": 827, - "density_avg": 5.914183551847437, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.008512418611880585 - }, - { - "songno": "386", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.6410256410256405, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 762, - "color_complexity": 0.00443600205268271 - }, - { - "songno": "392", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.74085335737041, - "density_peak": 15, - "bpm_avg": 200.4470588235294, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.0087246400278549 - }, - { - "songno": "1160", - "difficulty": "oni", - "note_count": 615, - "density_avg": 5.321244477172312, - "density_peak": 13, - "bpm_avg": 187.51869918699188, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 560, - "color_complexity": 0.005178837992605135 - }, - { - "songno": "85", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.710644870671397, - "density_peak": 10, - "bpm_avg": 139.63044406023434, - "bpm_change": 39, - "scroll_change": 22, - "rhythm_complexity": 618, - "color_complexity": 0.004258318516839943 - }, - { - "songno": "1389", - "difficulty": "oni", - "note_count": 344, - "density_avg": 3.9564738292011024, - "density_peak": 7, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0011979116004535188 - }, - { - "songno": "91", - "difficulty": "oni", - "note_count": 375, - "density_avg": 2.9239914693398954, - "density_peak": 11, - "bpm_avg": 157.2945066666667, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 243, - "color_complexity": 0.0013348097276337466 - }, - { - "songno": "609", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.302164872578523, - "density_peak": 11, - "bpm_avg": 178.66739606126916, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 361, - "color_complexity": 0.004008381717026706 - }, - { - "songno": "621", - "difficulty": "oni", - "note_count": 1062, - "density_avg": 6.972727272727273, - "density_peak": 14, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1029, - "color_complexity": 0.012982303295915747 - }, - { - "songno": "635", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.954122752634842, - "density_peak": 13, - "bpm_avg": 146.3265306122449, - "bpm_change": 9, - "scroll_change": 7, - "rhythm_complexity": 653, - "color_complexity": 0.006937686603298827 - }, - { - "songno": "52", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.337868130259788, - "density_peak": 13, - "bpm_avg": 195.03200000000328, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.00411598638198618 - }, - { - "songno": "1438", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.586387434554974, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.007446743023849206 - }, - { - "songno": "1410", - "difficulty": "oni", - "note_count": 433, - "density_avg": 5.073697193956213, - "density_peak": 9, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0018708826151030533 - }, - { - "songno": "184", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.248062015503876, - "density_peak": 9, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0027366235950752205 - }, - { - "songno": "184", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.603047313552526, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.005842569301827004 - }, - { - "songno": "1376", - "difficulty": "oni", - "note_count": 275, - "density_avg": 2.328510182207931, - "density_peak": 5, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 241, - "color_complexity": 0.0005411215876251803 - }, - { - "songno": "1362", - "difficulty": "oni", - "note_count": 542, - "density_avg": 6.114162985219604, - "density_peak": 10, - "bpm_avg": 170.5369003690037, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 363, - "color_complexity": 0.0030069315794352927 - }, - { - "songno": "190", - "difficulty": "oni", - "note_count": 929, - "density_avg": 5.495909759732159, - "density_peak": 13, - "bpm_avg": 179.31754574811626, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 774, - "color_complexity": 0.006731735206776709 - }, - { - "songno": "1404", - "difficulty": "oni", - "note_count": 829, - "density_avg": 6.101776649746192, - "density_peak": 16, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.008343272416875415 - }, - { - "songno": "755", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.996951219512195, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.007914424640934259 - }, - { - "songno": "741", - "difficulty": "oni", - "note_count": 386, - "density_avg": 3.8722280887011618, - "density_peak": 8, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0009244815196446407 - }, - { - "songno": "741", - "difficulty": "ura", - "note_count": 665, - "density_avg": 6.157407407407407, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.005117871718394963 - }, - { - "songno": "999", - "difficulty": "oni", - "note_count": 975, - "density_avg": 8.221883925457409, - "density_peak": 17, - "bpm_avg": 206.14871794871794, - "bpm_change": 1, - "scroll_change": 9, - "rhythm_complexity": 894, - "color_complexity": 0.01573210343942902 - }, - { - "songno": "972", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.062267343485617, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.005586088283537377 - }, - { - "songno": "972", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.984459459459459, - "density_peak": 16, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 785, - "color_complexity": 0.010702727817315079 - }, - { - "songno": "1202", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.81549815498155, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.003325408179445369 - }, - { - "songno": "782", - "difficulty": "oni", - "note_count": 522, - "density_avg": 4.2561151079136685, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.001897606182601946 - }, - { - "songno": "1216", - "difficulty": "oni", - "note_count": 989, - "density_avg": 7.197360995990631, - "density_peak": 16, - "bpm_avg": 236.00444893832153, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 897, - "color_complexity": 0.009178932210318904 - }, - { - "songno": "1216", - "difficulty": "ura", - "note_count": 1338, - "density_avg": 9.73717797030886, - "density_peak": 20, - "bpm_avg": 236.00526158445444, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 1209, - "color_complexity": 0.02840435681803498 - }, - { - "songno": "219", - "difficulty": "oni", - "note_count": 588, - "density_avg": 4.763467492260062, - "density_peak": 11, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 545, - "color_complexity": 0.004141928778936775 - }, - { - "songno": "231", - "difficulty": "oni", - "note_count": 198, - "density_avg": 2.4360236220472444, - "density_peak": 6, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00028055962149037863 - }, - { - "songno": "231", - "difficulty": "ura", - "note_count": 523, - "density_avg": 6.434547244094488, - "density_peak": 11, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.005725379774305551 - }, - { - "songno": "543", - "difficulty": "oni", - "note_count": 414, - "density_avg": 3.1892008639308855, - "density_peak": 9, - "bpm_avg": 107, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0014005432322070147 - }, - { - "songno": "1028", - "difficulty": "oni", - "note_count": 624, - "density_avg": 4.91768826619965, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0030533388817775746 - }, - { - "songno": "594", - "difficulty": "oni", - "note_count": 888, - "density_avg": 7.269026548672566, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 829, - "color_complexity": 0.01402671232786871 - }, - { - "songno": "1000", - "difficulty": "oni", - "note_count": 729, - "density_avg": 6.807782101167316, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.007338713203016261 - }, - { - "songno": "1014", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.253097893432466, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0042777064526913645 - }, - { - "songno": "580", - "difficulty": "oni", - "note_count": 436, - "density_avg": 2.856135046611237, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 261, - "color_complexity": 0.0011258812094705893 - }, - { - "songno": "580", - "difficulty": "ura", - "note_count": 733, - "density_avg": 4.801713277903754, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 550, - "color_complexity": 0.004340325903245934 - }, - { - "songno": "1015", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.933683878201988, - "density_peak": 13, - "bpm_avg": 120.80456026058631, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 434, - "color_complexity": 0.0041415570112380146 - }, - { - "songno": "1001", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.9832834331337326, - "density_peak": 9, - "bpm_avg": 153.79611650485438, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 489, - "color_complexity": 0.0032292721999377665 - }, - { - "songno": "595", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.318982387475538, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 726, - "color_complexity": 0.015172048943461684 - }, - { - "songno": "1029", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.6970443349753697, - "density_peak": 7, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 137, - "color_complexity": 0.00028928209589604265 - }, - { - "songno": "224", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.493064574195197, - "density_peak": 13, - "bpm_avg": 155.0160341151386, - "bpm_change": 6, - "scroll_change": 15, - "rhythm_complexity": 367, - "color_complexity": 0.0038494603983574714 - }, - { - "songno": "542", - "difficulty": "oni", - "note_count": 389, - "density_avg": 4.5084009550206545, - "density_peak": 11, - "bpm_avg": 176.2959640102828, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 352, - "color_complexity": 0.0027699698680541426 - }, - { - "songno": "556", - "difficulty": "oni", - "note_count": 344, - "density_avg": 4.494140249759846, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0019195575173746586 - }, - { - "songno": "230", - "difficulty": "oni", - "note_count": 572, - "density_avg": 5.466360856269113, - "density_peak": 10, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 526, - "color_complexity": 0.002592183676218123 - }, - { - "songno": "218", - "difficulty": "oni", - "note_count": 721, - "density_avg": 6.052062105773896, - "density_peak": 12, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006159150684553403 - }, - { - "songno": "218", - "difficulty": "ura", - "note_count": 873, - "density_avg": 7.327947598253275, - "density_peak": 13, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 803, - "color_complexity": 0.009222251215362675 - }, - { - "songno": "1217", - "difficulty": "oni", - "note_count": 468, - "density_avg": 5.339597315436242, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0026303931062499975 - }, - { - "songno": "783", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.853672716539031, - "density_peak": 13, - "bpm_avg": 184.76230889235575, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.005952612910542715 - }, - { - "songno": "797", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.629820051413882, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.004375354192442994 - }, - { - "songno": "1203", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.7831469979296064, - "density_peak": 8, - "bpm_avg": 105.5, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 353, - "color_complexity": 0.001620439267666786 - }, - { - "songno": "967", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.273966493055556, - "density_peak": 10, - "bpm_avg": 139.99099999999945, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.00316696150767669 - }, - { - "songno": "973", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.998938428874735, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.0036980176505468825 - }, - { - "songno": "998", - "difficulty": "oni", - "note_count": 729, - "density_avg": 5.069100391134289, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.0037032911514235274 - }, - { - "songno": "740", - "difficulty": "oni", - "note_count": 546, - "density_avg": 4.9167608942141126, - "density_peak": 13, - "bpm_avg": 227.51318681318511, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 413, - "color_complexity": 0.0038746520210597344 - }, - { - "songno": "754", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.3876096491228065, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 616, - "color_complexity": 0.0039568554825932176 - }, - { - "songno": "1363", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.298859315589354, - "density_peak": 9, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.002909629113272306 - }, - { - "songno": "1405", - "difficulty": "oni", - "note_count": 905, - "density_avg": 8.115489130434783, - "density_peak": 15, - "bpm_avg": 198, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 793, - "color_complexity": 0.01367789493391424 - }, - { - "songno": "191", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "1411", - "difficulty": "oni", - "note_count": 815, - "density_avg": 7.149122807017544, - "density_peak": 16, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 754, - "color_complexity": 0.010987100546798512 - }, - { - "songno": "1411", - "difficulty": "ura", - "note_count": 1030, - "density_avg": 9.035087719298245, - "density_peak": 21, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 871, - "color_complexity": 0.01751565204361806 - }, - { - "songno": "1377", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.2605177173432605, - "density_peak": 11, - "bpm_avg": 175.9732854578097, - "bpm_change": 12, - "scroll_change": 51, - "rhythm_complexity": 488, - "color_complexity": 0.0028268855546321916 - }, - { - "songno": "53", - "difficulty": "oni", - "note_count": 677, - "density_avg": 6.297674418604651, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 668, - "color_complexity": 0.005633050564261022 - }, - { - "songno": "1", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.492187500000001, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.009891807575505564 - }, - { - "songno": "1439", - "difficulty": "oni", - "note_count": 515, - "density_avg": 4.366434378629501, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.003186931904927284 - }, - { - "songno": "47", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.537210756722952, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0036966843633750917 - }, - { - "songno": "152", - "difficulty": "oni", - "note_count": 790, - "density_avg": 6.786941580756014, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 772, - "color_complexity": 0.007224909302394338 - }, - { - "songno": "146", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.326530612244897, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0027306366559499227 - }, - { - "songno": "608", - "difficulty": "oni", - "note_count": 340, - "density_avg": 4.077437987658843, - "density_peak": 8, - "bpm_avg": 123.01835294117646, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0014977887112729207 - }, - { - "songno": "90", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.396129032258065, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 671, - "color_complexity": 0.006354437659333248 - }, - { - "songno": "1388", - "difficulty": "oni", - "note_count": 529, - "density_avg": 6.134893184130213, - "density_peak": 11, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004569550340306123 - }, - { - "songno": "1388", - "difficulty": "ura", - "note_count": 586, - "density_avg": 6.6937875751503, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 546, - "color_complexity": 0.005590770347448972 - }, - { - "songno": "1161", - "difficulty": "oni", - "note_count": 428, - "density_avg": 4.330952380952381, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 375, - "color_complexity": 0.001530776101022984 - }, - { - "songno": "1175", - "difficulty": "oni", - "note_count": 591, - "density_avg": 4.607796610169491, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0028313233753878906 - }, - { - "songno": "387", - "difficulty": "oni", - "note_count": 492, - "density_avg": 4.121170395869191, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.0028687784003459354 - }, - { - "songno": "1149", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.279824561403508, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.002973089013621057 - }, - { - "songno": "1149", - "difficulty": "ura", - "note_count": 921, - "density_avg": 6.867105263157895, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 866, - "color_complexity": 0.008701597588183433 - }, - { - "songno": "350", - "difficulty": "oni", - "note_count": 593, - "density_avg": 4.764846202134337, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 552, - "color_complexity": 0.0031287421234234766 - }, - { - "songno": "436", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.100462962962963, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 453, - "color_complexity": 0.002085368284081056 - }, - { - "songno": "422", - "difficulty": "oni", - "note_count": 642, - "density_avg": 4.787588388192328, - "density_peak": 9, - "bpm_avg": 168.40109034267914, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 626, - "color_complexity": 0.0025335209773418403 - }, - { - "songno": "422", - "difficulty": "ura", - "note_count": 776, - "density_avg": 5.733735468466125, - "density_peak": 12, - "bpm_avg": 168.39948453608247, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 751, - "color_complexity": 0.0068508851411107465 - }, - { - "songno": "344", - "difficulty": "oni", - "note_count": 589, - "density_avg": 5.06171875, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 571, - "color_complexity": 0.0035770335315490403 - }, - { - "songno": "408", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.15936183760187, - "density_peak": 8, - "bpm_avg": 138.00010335917312, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0019142434638521426 - }, - { - "songno": "1188", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.109756097560976, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0014355189115646276 - }, - { - "songno": "434", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.526062062100932, - "density_peak": 10, - "bpm_avg": 134.15181623931622, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 407, - "color_complexity": 0.0019305950588551313 - }, - { - "songno": "352", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.275996112730807, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.00175747217315632 - }, - { - "songno": "346", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.5215517241379315, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006534743216641864 - }, - { - "songno": "420", - "difficulty": "oni", - "note_count": 382, - "density_avg": 4.05105090072067, - "density_peak": 10, - "bpm_avg": 160.0165445026178, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 330, - "color_complexity": 0.002331989717786926 - }, - { - "songno": "1163", - "difficulty": "oni", - "note_count": 690, - "density_avg": 5.5089820359281445, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 601, - "color_complexity": 0.005152595473704029 - }, - { - "songno": "391", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.139559543230016, - "density_peak": 12, - "bpm_avg": 169.00195195195195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 585, - "color_complexity": 0.005039326552726177 - }, - { - "songno": "385", - "difficulty": "oni", - "note_count": 386, - "density_avg": 5.911711711711712, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 371, - "color_complexity": 0.004340141742112481 - }, - { - "songno": "1177", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.056490384615385, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0015148063329031769 - }, - { - "songno": "92", - "difficulty": "oni", - "note_count": 383, - "density_avg": 2.9730593607305935, - "density_peak": 7, - "bpm_avg": 135.9947780678851, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 294, - "color_complexity": 0.0015399932555156637 - }, - { - "songno": "92", - "difficulty": "ura", - "note_count": 612, - "density_avg": 4.6103635462669414, - "density_peak": 9, - "bpm_avg": 135.98039215686273, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0024325994798297043 - }, - { - "songno": "86", - "difficulty": "oni", - "note_count": 651, - "density_avg": 4.6310975609756095, - "density_peak": 12, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0034271167824048198 - }, - { - "songno": "178", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.776917236142749, - "density_peak": 11, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 659, - "color_complexity": 0.005100928970205306 - }, - { - "songno": "178", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.894229309035688, - "density_peak": 12, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 788, - "color_complexity": 0.008269205784819907 - }, - { - "songno": "150", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.965373383395912, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 460, - "color_complexity": 0.003179342186923859 - }, - { - "songno": "150", - "difficulty": "ura", - "note_count": 687, - "density_avg": 6.305381727158949, - "density_peak": 17, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 624, - "color_complexity": 0.005278990123456753 - }, - { - "songno": "144", - "difficulty": "oni", - "note_count": 353, - "density_avg": 4.211799906690268, - "density_peak": 7, - "bpm_avg": 141.95524079320157, - "bpm_change": 16, - "scroll_change": 5, - "rhythm_complexity": 301, - "color_complexity": 0.0015918048010694027 - }, - { - "songno": "3", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.9115044247787614, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0019120605323766514 - }, - { - "songno": "51", - "difficulty": "oni", - "note_count": 454, - "density_avg": 4.906795077581594, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0017135882151237951 - }, - { - "songno": "811", - "difficulty": "oni", - "note_count": 145, - "density_avg": 1.6571428571428573, - "density_peak": 5, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 105, - "color_complexity": 0.00003496439156897107 - }, - { - "songno": "811", - "difficulty": "ura", - "note_count": 468, - "density_avg": 5.348571428571428, - "density_peak": 25, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.000843309872415438 - }, - { - "songno": "45", - "difficulty": "oni", - "note_count": 933, - "density_avg": 7.326442307692307, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 904, - "color_complexity": 0.008993991861728386 - }, - { - "songno": "45", - "difficulty": "ura", - "note_count": 976, - "density_avg": 7.664102564102564, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 947, - "color_complexity": 0.013850611872702267 - }, - { - "songno": "1349", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.602848738635937, - "density_peak": 9, - "bpm_avg": 133.2667910447761, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0024383565456923134 - }, - { - "songno": "805", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.263554571576617, - "density_peak": 11, - "bpm_avg": 300.0189189189189, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 648, - "color_complexity": 0.006582447664600062 - }, - { - "songno": "193", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.74135687732342, - "density_peak": 11, - "bpm_avg": 150.05000000000192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.004252055304796902 - }, - { - "songno": "1407", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.9456140350877194, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 310, - "color_complexity": 0.0012789427836762696 - }, - { - "songno": "1361", - "difficulty": "oni", - "note_count": 387, - "density_avg": 3.3793257423532035, - "density_peak": 6, - "bpm_avg": 127.72093023255815, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 340, - "color_complexity": 0.000699219979472848 - }, - { - "songno": "79", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.00538131288279, - "density_peak": 11, - "bpm_avg": 159.94520426287735, - "bpm_change": 14, - "scroll_change": 8, - "rhythm_complexity": 485, - "color_complexity": 0.003747675989800532 - }, - { - "songno": "1375", - "difficulty": "oni", - "note_count": 190, - "density_avg": 1.8766400710394626, - "density_peak": 4, - "bpm_avg": 70.73902631578949, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 164, - "color_complexity": 0.0001944750770985111 - }, - { - "songno": "839", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.9583333333333335, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 272, - "color_complexity": 0.0008918354565697317 - }, - { - "songno": "1413", - "difficulty": "oni", - "note_count": 622, - "density_avg": 5.219462873673885, - "density_peak": 10, - "bpm_avg": 181.32475884244374, - "bpm_change": 29, - "scroll_change": 28, - "rhythm_complexity": 535, - "color_complexity": 0.003154895573120465 - }, - { - "songno": "1413", - "difficulty": "ura", - "note_count": 866, - "density_avg": 7.222925509249093, - "density_peak": 15, - "bpm_avg": 183.27367205542726, - "bpm_change": 34, - "scroll_change": 38, - "rhythm_complexity": 699, - "color_complexity": 0.01078114234258459 - }, - { - "songno": "187", - "difficulty": "oni", - "note_count": 846, - "density_avg": 6.666619337683021, - "density_peak": 13, - "bpm_avg": 185.46099290780143, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 797, - "color_complexity": 0.010330007279750442 - }, - { - "songno": "187", - "difficulty": "ura", - "note_count": 753, - "density_avg": 5.948886020948067, - "density_peak": 13, - "bpm_avg": 185.39442231075697, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 696, - "color_complexity": 0.009033002101284568 - }, - { - "songno": "742", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.149540229885058, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 567, - "color_complexity": 0.00387217110199955 - }, - { - "songno": "756", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.991386217948718, - "density_peak": 16, - "bpm_avg": 205, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 870, - "color_complexity": 0.014804465446167496 - }, - { - "songno": "1229", - "difficulty": "oni", - "note_count": 969, - "density_avg": 6.884600938967137, - "density_peak": 16, - "bpm_avg": 216.10681114551085, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 898, - "color_complexity": 0.01320371907889871 - }, - { - "songno": "971", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.225974025974026, - "density_peak": 17, - "bpm_avg": 214, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 765, - "color_complexity": 0.012594515438637684 - }, - { - "songno": "959", - "difficulty": "oni", - "note_count": 671, - "density_avg": 5.168538106861948, - "density_peak": 10, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004870882559130469 - }, - { - "songno": "959", - "difficulty": "ura", - "note_count": 969, - "density_avg": 7.433711507293355, - "density_peak": 15, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 826, - "color_complexity": 0.012659436123553755 - }, - { - "songno": "781", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.080459770114942, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 895, - "color_complexity": 0.014007261227643465 - }, - { - "songno": "1215", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.0917941585535464, - "density_peak": 14, - "bpm_avg": 268.32191780821915, - "bpm_change": 62, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010456238520281644 - }, - { - "songno": "1215", - "difficulty": "ura", - "note_count": 1353, - "density_avg": 9.408901251738525, - "density_peak": 18, - "bpm_avg": 276.57058388765705, - "bpm_change": 69, - "scroll_change": 0, - "rhythm_complexity": 1278, - "color_complexity": 0.024616621667793968 - }, - { - "songno": "1201", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.9520568284212696, - "density_peak": 11, - "bpm_avg": 199.97635258358673, - "bpm_change": 12, - "scroll_change": 12, - "rhythm_complexity": 226, - "color_complexity": 0.000788095675923605 - }, - { - "songno": "1201", - "difficulty": "ura", - "note_count": 889, - "density_avg": 7.976402349674755, - "density_peak": 14, - "bpm_avg": 200.0003329583802, - "bpm_change": 18, - "scroll_change": 17, - "rhythm_complexity": 790, - "color_complexity": 0.013375321772669582 - }, - { - "songno": "795", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.025, - "density_peak": 7, - "bpm_avg": 183.42028985507247, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0009213481405473305 - }, - { - "songno": "795", - "difficulty": "ura", - "note_count": 532, - "density_avg": 6.084967320261438, - "density_peak": 11, - "bpm_avg": 182.6315789473684, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 413, - "color_complexity": 0.004021757654829363 - }, - { - "songno": "568", - "difficulty": "oni", - "note_count": 829, - "density_avg": 5.9989222478829864, - "density_peak": 12, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 740, - "color_complexity": 0.007838384394011081 - }, - { - "songno": "540", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.379717986410894, - "density_peak": 12, - "bpm_avg": 168.00325000000015, - "bpm_change": 42, - "scroll_change": 4, - "rhythm_complexity": 453, - "color_complexity": 0.004948341856870142 - }, - { - "songno": "226", - "difficulty": "oni", - "note_count": 691, - "density_avg": 5.991329479768786, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 671, - "color_complexity": 0.006179420370120491 - }, - { - "songno": "226", - "difficulty": "ura", - "note_count": 691, - "density_avg": 5.726519337016574, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.0048015509750566855 - }, - { - "songno": "554", - "difficulty": "oni", - "note_count": 661, - "density_avg": 5.8185113268608415, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 632, - "color_complexity": 0.0046141551464559385 - }, - { - "songno": "583", - "difficulty": "oni", - "note_count": 339, - "density_avg": 2.998027892944747, - "density_peak": 10, - "bpm_avg": 159.98834808259585, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 302, - "color_complexity": 0.0014730143572736357 - }, - { - "songno": "1003", - "difficulty": "oni", - "note_count": 312, - "density_avg": 3.5433628318584067, - "density_peak": 7, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 208, - "color_complexity": 0.0007564534779320977 - }, - { - "songno": "1002", - "difficulty": "oni", - "note_count": 420, - "density_avg": 5.71559633027523, - "density_peak": 10, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 384, - "color_complexity": 0.002528679663731411 - }, - { - "songno": "596", - "difficulty": "oni", - "note_count": 622, - "density_avg": 4.990678466076695, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.004067071640300878 - }, - { - "songno": "233", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.155502392344498, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0012268098724489778 - }, - { - "songno": "555", - "difficulty": "oni", - "note_count": 1290, - "density_avg": 8.231221088733648, - "density_peak": 17, - "bpm_avg": 231.4418604651163, - "bpm_change": 7, - "scroll_change": 4, - "rhythm_complexity": 1220, - "color_complexity": 0.020162583684220053 - }, - { - "songno": "541", - "difficulty": "oni", - "note_count": 473, - "density_avg": 5.149255848799893, - "density_peak": 10, - "bpm_avg": 216.4387315010569, - "bpm_change": 35, - "scroll_change": 9, - "rhythm_complexity": 400, - "color_complexity": 0.002421928650842573 - }, - { - "songno": "569", - "difficulty": "oni", - "note_count": 834, - "density_avg": 6.133682527524497, - "density_peak": 15, - "bpm_avg": 190.77937649880096, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 780, - "color_complexity": 0.009285071302363085 - }, - { - "songno": "794", - "difficulty": "oni", - "note_count": 520, - "density_avg": 6.4465528146742574, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 494, - "color_complexity": 0.0039931374796231545 - }, - { - "songno": "1200", - "difficulty": "oni", - "note_count": 305, - "density_avg": 4.166666666666667, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0011883900799521609 - }, - { - "songno": "1214", - "difficulty": "oni", - "note_count": 606, - "density_avg": 4.523876791657335, - "density_peak": 13, - "bpm_avg": 234.74257425742573, - "bpm_change": 14, - "scroll_change": 16, - "rhythm_complexity": 513, - "color_complexity": 0.0031818917706805806 - }, - { - "songno": "1214", - "difficulty": "ura", - "note_count": 1054, - "density_avg": 7.4336970014910815, - "density_peak": 17, - "bpm_avg": 240.8349146110057, - "bpm_change": 14, - "scroll_change": 18, - "rhythm_complexity": 893, - "color_complexity": 0.011510096546646231 - }, - { - "songno": "780", - "difficulty": "oni", - "note_count": 726, - "density_avg": 4.843509789702684, - "density_peak": 14, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00468491088123424 - }, - { - "songno": "958", - "difficulty": "oni", - "note_count": 740, - "density_avg": 6.312261995430313, - "density_peak": 12, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 612, - "color_complexity": 0.007320138014814796 - }, - { - "songno": "958", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.796496572734197, - "density_peak": 16, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 814, - "color_complexity": 0.014845986752224365 - }, - { - "songno": "970", - "difficulty": "oni", - "note_count": 862, - "density_avg": 5.902920443101713, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 742, - "color_complexity": 0.006692307181676403 - }, - { - "songno": "1228", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.355084745762712, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 503, - "color_complexity": 0.0020265120471938797 - }, - { - "songno": "964", - "difficulty": "oni", - "note_count": 316, - "density_avg": 4.704976997072355, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0011802832414593977 - }, - { - "songno": "757", - "difficulty": "oni", - "note_count": 1129, - "density_avg": 8.906391432863304, - "density_peak": 17, - "bpm_avg": 184.92825509300266, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 1078, - "color_complexity": 0.02022480349227142 - }, - { - "songno": "1374", - "difficulty": "oni", - "note_count": 322, - "density_avg": 2.4859218891916437, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.00039185137463781906 - }, - { - "songno": "186", - "difficulty": "oni", - "note_count": 903, - "density_avg": 8.343283582089551, - "density_peak": 19, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 815, - "color_complexity": 0.013033689978820212 - }, - { - "songno": "1412", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.3760683760683765, - "density_peak": 10, - "bpm_avg": 249.60254372019077, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 585, - "color_complexity": 0.003501775762286951 - }, - { - "songno": "1412", - "difficulty": "ura", - "note_count": 987, - "density_avg": 8.330519918973666, - "density_peak": 17, - "bpm_avg": 247.72036474164133, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 959, - "color_complexity": 0.011959811434796245 - }, - { - "songno": "1406", - "difficulty": "oni", - "note_count": 997, - "density_avg": 7.357430816535702, - "density_peak": 22, - "bpm_avg": 255.6198595787362, - "bpm_change": 5, - "scroll_change": 3, - "rhythm_complexity": 836, - "color_complexity": 0.012847516641651149 - }, - { - "songno": "1360", - "difficulty": "oni", - "note_count": 676, - "density_avg": 4.968256450351837, - "density_peak": 8, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.002824719977946671 - }, - { - "songno": "804", - "difficulty": "oni", - "note_count": 540, - "density_avg": 3.8654852596562095, - "density_peak": 10, - "bpm_avg": 149.13314814814802, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 437, - "color_complexity": 0.002834029395221408 - }, - { - "songno": "804", - "difficulty": "ura", - "note_count": 820, - "density_avg": 5.8698109498483175, - "density_peak": 16, - "bpm_avg": 157.5876829268292, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 734, - "color_complexity": 0.010603336900242089 - }, - { - "songno": "1348", - "difficulty": "oni", - "note_count": 474, - "density_avg": 5.2397959183673475, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.003102418990299837 - }, - { - "songno": "44", - "difficulty": "oni", - "note_count": 455, - "density_avg": 4.257309941520467, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 328, - "color_complexity": 0.0014371882674396018 - }, - { - "songno": "2", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.858883994126285, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.001304997117283953 - }, - { - "songno": "623", - "difficulty": "oni", - "note_count": 364, - "density_avg": 5.037001762558617, - "density_peak": 10, - "bpm_avg": 154.23802197802206, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 305, - "color_complexity": 0.0023195794747126134 - }, - { - "songno": "151", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.638321167883212, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.002730370960155398 - }, - { - "songno": "637", - "difficulty": "oni", - "note_count": 736, - "density_avg": 5.5599622285174695, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.004763446263798519 - }, - { - "songno": "87", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.288145669400578, - "density_peak": 11, - "bpm_avg": 152.0453686200378, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 511, - "color_complexity": 0.003837428390011117 - }, - { - "songno": "179", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.9591618693132125, - "density_peak": 15, - "bpm_avg": 213.36365296803686, - "bpm_change": 11, - "scroll_change": 15, - "rhythm_complexity": 808, - "color_complexity": 0.008317609077654609 - }, - { - "songno": "93", - "difficulty": "oni", - "note_count": 659, - "density_avg": 4.8877979977756105, - "density_peak": 13, - "bpm_avg": 162.99015174506792, - "bpm_change": 18, - "scroll_change": 6, - "rhythm_complexity": 573, - "color_complexity": 0.005791591039194993 - }, - { - "songno": "384", - "difficulty": "oni", - "note_count": 345, - "density_avg": 3.6104651162790695, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.001053859936224488 - }, - { - "songno": "1176", - "difficulty": "oni", - "note_count": 502, - "density_avg": 4.248697916666666, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 464, - "color_complexity": 0.0018802655487143488 - }, - { - "songno": "1162", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.78589263420724, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.0017825193420230704 - }, - { - "songno": "390", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.758041958041957, - "density_peak": 8, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0022402315836734694 - }, - { - "songno": "347", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.666666666666667, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.005925731765801294 - }, - { - "songno": "421", - "difficulty": "oni", - "note_count": 1160, - "density_avg": 7.239944521497919, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1133, - "color_complexity": 0.009281254241263113 - }, - { - "songno": "435", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.653513209668354, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0014969167478685944 - }, - { - "songno": "431", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.95820895522388, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 734, - "color_complexity": 0.010140632783933592 - }, - { - "songno": "425", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.898988800751897, - "density_peak": 11, - "bpm_avg": 170.0056862745098, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 665, - "color_complexity": 0.006579899651231696 - }, - { - "songno": "425", - "difficulty": "ura", - "note_count": 876, - "density_avg": 6.755576491539141, - "density_peak": 12, - "bpm_avg": 170.02246575342468, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 819, - "color_complexity": 0.008822365948660765 - }, - { - "songno": "343", - "difficulty": "oni", - "note_count": 375, - "density_avg": 3.817919416506573, - "density_peak": 10, - "bpm_avg": 144.02287999999993, - "bpm_change": 8, - "scroll_change": 7, - "rhythm_complexity": 328, - "color_complexity": 0.0023856146920736144 - }, - { - "songno": "1199", - "difficulty": "oni", - "note_count": 279, - "density_avg": 2.651315789473684, - "density_peak": 7, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00039626902284807894 - }, - { - "songno": "419", - "difficulty": "oni", - "note_count": 769, - "density_avg": 6.580497512437812, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.00952969950011453 - }, - { - "songno": "394", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.871710526315789, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.00545371061728395 - }, - { - "songno": "1166", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.785100286532952, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 750, - "color_complexity": 0.00822286029332596 - }, - { - "songno": "1172", - "difficulty": "oni", - "note_count": 995, - "density_avg": 8.040585676037484, - "density_peak": 22, - "bpm_avg": 241.3386623115556, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 729, - "color_complexity": 0.011765713239051826 - }, - { - "songno": "380", - "difficulty": "oni", - "note_count": 299, - "density_avg": 3.698567708333333, - "density_peak": 10, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 246, - "color_complexity": 0.000826477353899929 - }, - { - "songno": "155", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.582669196710942, - "density_peak": 11, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 521, - "color_complexity": 0.0029702074307249595 - }, - { - "songno": "141", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "627", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.32128514056225, - "density_peak": 18, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 844, - "color_complexity": 0.013643740370567333 - }, - { - "songno": "97", - "difficulty": "oni", - "note_count": 804, - "density_avg": 5.502368987796122, - "density_peak": 13, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.005160073315990605 - }, - { - "songno": "169", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.556042031523643, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 437, - "color_complexity": 0.002719541472348197 - }, - { - "songno": "83", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.751104565537555, - "density_peak": 12, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.003500847777647112 - }, - { - "songno": "1364", - "difficulty": "oni", - "note_count": 683, - "density_avg": 5.382336956521739, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 614, - "color_complexity": 0.005573890630681125 - }, - { - "songno": "1364", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.628260869565218, - "density_peak": 14, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 856, - "color_complexity": 0.013824094595296977 - }, - { - "songno": "68", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.1951404916509984, - "density_peak": 20, - "bpm_avg": 193.25997425997426, - "bpm_change": 9, - "scroll_change": 18, - "rhythm_complexity": 684, - "color_complexity": 0.007131557028309479 - }, - { - "songno": "828", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.472049689440993, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 519, - "color_complexity": 0.002757052519935577 - }, - { - "songno": "196", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.12019286230545, - "density_peak": 11, - "bpm_avg": 159.7987637362637, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 699, - "color_complexity": 0.005276624785479498 - }, - { - "songno": "1402", - "difficulty": "oni", - "note_count": 484, - "density_avg": 5.041865353037767, - "density_peak": 9, - "bpm_avg": 129.53140495867768, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 439, - "color_complexity": 0.0029445082519504533 - }, - { - "songno": "182", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.1155314865499, - "density_peak": 10, - "bpm_avg": 135.90625, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 561, - "color_complexity": 0.0037731412126623337 - }, - { - "songno": "1370", - "difficulty": "oni", - "note_count": 786, - "density_avg": 6.605042016806723, - "density_peak": 12, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.0065039530563881995 - }, - { - "songno": "1370", - "difficulty": "ura", - "note_count": 1123, - "density_avg": 9.07108239095315, - "density_peak": 20, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 1059, - "color_complexity": 0.023218155344590735 - }, - { - "songno": "1358", - "difficulty": "oni", - "note_count": 565, - "density_avg": 3.6808981657179003, - "density_peak": 7, - "bpm_avg": 103, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.0012289794200269165 - }, - { - "songno": "814", - "difficulty": "oni", - "note_count": 996, - "density_avg": 8.645833333333334, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.016097228731845468 - }, - { - "songno": "40", - "difficulty": "oni", - "note_count": 444, - "density_avg": 5.061313225689626, - "density_peak": 10, - "bpm_avg": 145.01000000000002, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.003436544388238737 - }, - { - "songno": "800", - "difficulty": "oni", - "note_count": 657, - "density_avg": 6.3230075187969925, - "density_peak": 12, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.005861746590915558 - }, - { - "songno": "747", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.87431693989071, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 615, - "color_complexity": 0.0068247013233811915 - }, - { - "songno": "753", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.454812707444287, - "density_peak": 10, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 563, - "color_complexity": 0.00474949881619812 - }, - { - "songno": "784", - "difficulty": "oni", - "note_count": 881, - "density_avg": 7.654279569892473, - "density_peak": 15, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 807, - "color_complexity": 0.013132196554557145 - }, - { - "songno": "1210", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.409149072296865, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0024505255433668826 - }, - { - "songno": "1210", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.527831094049904, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.007820728104686347 - }, - { - "songno": "948", - "difficulty": "oni", - "note_count": 915, - "density_avg": 7.336138518806753, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.010411021576164171 - }, - { - "songno": "1204", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.7977566314625832, - "density_peak": 7, - "bpm_avg": 105.01687272727271, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0009566038523754819 - }, - { - "songno": "790", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3398564905414223, - "density_peak": 6, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 285, - "color_complexity": 0.0011190129123896512 - }, - { - "songno": "960", - "difficulty": "oni", - "note_count": 912, - "density_avg": 6.923336457357076, - "density_peak": 17, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 824, - "color_complexity": 0.010948788171929317 - }, - { - "songno": "960", - "difficulty": "ura", - "note_count": 1240, - "density_avg": 9.413308341143392, - "density_peak": 21, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1100, - "color_complexity": 0.02757118652366326 - }, - { - "songno": "974", - "difficulty": "oni", - "note_count": 216, - "density_avg": 2.049438202247191, - "density_peak": 5, - "bpm_avg": 76, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 189, - "color_complexity": 0 - }, - { - "songno": "223", - "difficulty": "oni", - "note_count": 502, - "density_avg": 5.265597261500406, - "density_peak": 10, - "bpm_avg": 219.91035856573706, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 420, - "color_complexity": 0.0035746818287955393 - }, - { - "songno": "545", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.558155740961462, - "density_peak": 8, - "bpm_avg": 232.39000000000038, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.0033004309608055194 - }, - { - "songno": "551", - "difficulty": "oni", - "note_count": 445, - "density_avg": 4.486744893524555, - "density_peak": 8, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016074770172839485 - }, - { - "songno": "551", - "difficulty": "ura", - "note_count": 553, - "density_avg": 5.575662755323772, - "density_peak": 10, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0033299986814814757 - }, - { - "songno": "237", - "difficulty": "oni", - "note_count": 665, - "density_avg": 4.705188679245282, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.003544677151816613 - }, - { - "songno": "579", - "difficulty": "oni", - "note_count": 588, - "density_avg": 5.402990229789272, - "density_peak": 11, - "bpm_avg": 128.26971088435374, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 520, - "color_complexity": 0.003964036631514234 - }, - { - "songno": "579", - "difficulty": "ura", - "note_count": 566, - "density_avg": 5.200837534116884, - "density_peak": 11, - "bpm_avg": 127.67909893992928, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 528, - "color_complexity": 0.0035817216406916637 - }, - { - "songno": "1012", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.424503882657462, - "density_peak": 16, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.01011744099631783 - }, - { - "songno": "1012", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.341242450388266, - "density_peak": 20, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 889, - "color_complexity": 0.014029091892053891 - }, - { - "songno": "586", - "difficulty": "oni", - "note_count": 397, - "density_avg": 4.5567610062893085, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.002075338630209768 - }, - { - "songno": "592", - "difficulty": "oni", - "note_count": 583, - "density_avg": 5.730928104575163, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 536, - "color_complexity": 0.006021851365487564 - }, - { - "songno": "1006", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.9443374598807885, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.0055697224802468935 - }, - { - "songno": "1007", - "difficulty": "oni", - "note_count": 187, - "density_avg": 2.1062404870624047, - "density_peak": 5, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 139, - "color_complexity": 0.00019671832027643094 - }, - { - "songno": "593", - "difficulty": "oni", - "note_count": 787, - "density_avg": 8.943181818181818, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 736, - "color_complexity": 0.011659247594643603 - }, - { - "songno": "587", - "difficulty": "oni", - "note_count": 406, - "density_avg": 5.278, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0031014543347437254 - }, - { - "songno": "1013", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.473381294964029, - "density_peak": 12, - "bpm_avg": 252, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0032918294702747454 - }, - { - "songno": "578", - "difficulty": "oni", - "note_count": 543, - "density_avg": 4.608849490699526, - "density_peak": 10, - "bpm_avg": 195.6503130755065, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 376, - "color_complexity": 0.0024798459154622577 - }, - { - "songno": "550", - "difficulty": "oni", - "note_count": 745, - "density_avg": 6.349431818181818, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.007397296575500027 - }, - { - "songno": "236", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.235159817351598, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0007795086805555548 - }, - { - "songno": "222", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.395323919400793, - "density_peak": 10, - "bpm_avg": 175.5353282442743, - "bpm_change": 16, - "scroll_change": 8, - "rhythm_complexity": 519, - "color_complexity": 0.0028397254514889556 - }, - { - "songno": "222", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 6.710418197558462, - "density_peak": 17, - "bpm_avg": 176.33152999999916, - "bpm_change": 23, - "scroll_change": 8, - "rhythm_complexity": 910, - "color_complexity": 0.01085106024672434 - }, - { - "songno": "544", - "difficulty": "oni", - "note_count": 609, - "density_avg": 5.933744722312439, - "density_peak": 11, - "bpm_avg": 178.6576354679803, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 584, - "color_complexity": 0.004578889320477496 - }, - { - "songno": "975", - "difficulty": "oni", - "note_count": 839, - "density_avg": 6.337274220032842, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 742, - "color_complexity": 0.0076307409603680425 - }, - { - "songno": "961", - "difficulty": "oni", - "note_count": 918, - "density_avg": 8.033080424886192, - "density_peak": 15, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 856, - "color_complexity": 0.011603203928179734 - }, - { - "songno": "1205", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.43354943273906, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 407, - "color_complexity": 0.0027253798759862146 - }, - { - "songno": "949", - "difficulty": "oni", - "note_count": 503, - "density_avg": 4.584635416666667, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.002234156158771279 - }, - { - "songno": "1211", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.132812499999999, - "density_peak": 8, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0018306425635870687 - }, - { - "songno": "785", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.447837150127226, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.007753697556988684 - }, - { - "songno": "746", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.910623427961922, - "density_peak": 15, - "bpm_avg": 139.28680981595093, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 588, - "color_complexity": 0.005363917713302166 - }, - { - "songno": "801", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.4278450363196127, - "density_peak": 6, - "bpm_avg": 121, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0007325713087555813 - }, - { - "songno": "41", - "difficulty": "oni", - "note_count": 676, - "density_avg": 6.364094143404489, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.0074799023930460905 - }, - { - "songno": "815", - "difficulty": "oni", - "note_count": 934, - "density_avg": 7.861952861952862, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 882, - "color_complexity": 0.0106341135190762 - }, - { - "songno": "55", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.846264113892979, - "density_peak": 12, - "bpm_avg": 140.10400000000269, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 719, - "color_complexity": 0.008034533456349005 - }, - { - "songno": "1359", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.0253004427577475, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 339, - "color_complexity": 0.0010969438400292904 - }, - { - "songno": "183", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.594776931447225, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 963, - "color_complexity": 0.011046133392594271 - }, - { - "songno": "1417", - "difficulty": "oni", - "note_count": 416, - "density_avg": 4.481622306717364, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 387, - "color_complexity": 0.00197118978587963 - }, - { - "songno": "1371", - "difficulty": "oni", - "note_count": 597, - "density_avg": 4.846032992930087, - "density_peak": 11, - "bpm_avg": 207.70519262981574, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 505, - "color_complexity": 0.0033778797897327587 - }, - { - "songno": "1371", - "difficulty": "ura", - "note_count": 819, - "density_avg": 6.640251078854452, - "density_peak": 13, - "bpm_avg": 214.42612942612942, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 721, - "color_complexity": 0.009180812697600552 - }, - { - "songno": "1365", - "difficulty": "oni", - "note_count": 636, - "density_avg": 5.235418359057677, - "density_peak": 12, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.004342289394910552 - }, - { - "songno": "1403", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.846960167714885, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.0027071726989258238 - }, - { - "songno": "197", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.200582829185416, - "density_peak": 9, - "bpm_avg": 167.0040606060606, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0017859149852279255 - }, - { - "songno": "197", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.491809826922916, - "density_peak": 12, - "bpm_avg": 167.0055294117647, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.005326583001696681 - }, - { - "songno": "82", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.775363793859752, - "density_peak": 8, - "bpm_avg": 111.05051835853128, - "bpm_change": 5, - "scroll_change": 6, - "rhythm_complexity": 424, - "color_complexity": 0.001945637675925473 - }, - { - "songno": "96", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.951510388308949, - "density_peak": 13, - "bpm_avg": 136.28221649484536, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 693, - "color_complexity": 0.0064522079293448395 - }, - { - "songno": "168", - "difficulty": "oni", - "note_count": 926, - "density_avg": 7.593528368794326, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.009431230001141383 - }, - { - "songno": "140", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.383458646616542, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.002023183832199547 - }, - { - "songno": "140", - "difficulty": "ura", - "note_count": 900, - "density_avg": 6.7669172932330826, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 837, - "color_complexity": 0.008599765361353855 - }, - { - "songno": "626", - "difficulty": "oni", - "note_count": 682, - "density_avg": 4.895284115829499, - "density_peak": 11, - "bpm_avg": 207.99706744868035, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 562, - "color_complexity": 0.004039241809345363 - }, - { - "songno": "626", - "difficulty": "ura", - "note_count": 1038, - "density_avg": 7.450593712948709, - "density_peak": 15, - "bpm_avg": 208.53082851637765, - "bpm_change": 25, - "scroll_change": 4, - "rhythm_complexity": 903, - "color_complexity": 0.017847570993143443 - }, - { - "songno": "154", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.42570281124498, - "density_peak": 12, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 713, - "color_complexity": 0.004604810736362368 - }, - { - "songno": "154", - "difficulty": "ura", - "note_count": 715, - "density_avg": 6.125836680053547, - "density_peak": 17, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 667, - "color_complexity": 0.004752308184206484 - }, - { - "songno": "1173", - "difficulty": "oni", - "note_count": 819, - "density_avg": 7.508840864440079, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 763, - "color_complexity": 0.009592316471023363 - }, - { - "songno": "381", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.955742312204971, - "density_peak": 9, - "bpm_avg": 179.26491646778044, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 401, - "color_complexity": 0.001423618560845573 - }, - { - "songno": "395", - "difficulty": "oni", - "note_count": 604, - "density_avg": 5.716088328075709, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.004769519402131342 - }, - { - "songno": "1167", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.776421090204933, - "density_peak": 12, - "bpm_avg": 166.64849721706867, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 486, - "color_complexity": 0.002126566604359518 - }, - { - "songno": "418", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.251494768310911, - "density_peak": 12, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 537, - "color_complexity": 0.005891019249115084 - }, - { - "songno": "1198", - "difficulty": "oni", - "note_count": 708, - "density_avg": 6.7420152690763615, - "density_peak": 12, - "bpm_avg": 171.34139830508477, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 649, - "color_complexity": 0.005377823739366038 - }, - { - "songno": "424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.748614021903536, - "density_peak": 12, - "bpm_avg": 175.00762416107392, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 696, - "color_complexity": 0.00652014459445998 - }, - { - "songno": "342", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.507109004739336, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032503275206611573 - }, - { - "songno": "356", - "difficulty": "oni", - "note_count": 570, - "density_avg": 6.824712643678161, - "density_peak": 12, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.004513945578231293 - }, - { - "songno": "430", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.0641087130295768, - "density_peak": 7, - "bpm_avg": 129.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 286, - "color_complexity": 0.0004704779765432086 - }, - { - "songno": "340", - "difficulty": "oni", - "note_count": 538, - "density_avg": 5.512441783100465, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.004311606674063811 - }, - { - "songno": "432", - "difficulty": "oni", - "note_count": 794, - "density_avg": 6.116246498599439, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 753, - "color_complexity": 0.00808079305414643 - }, - { - "songno": "354", - "difficulty": "oni", - "note_count": 570, - "density_avg": 5.3977272727272725, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.002888912925905895 - }, - { - "songno": "368", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.104602510460251, - "density_peak": 6, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.0006784779177676553 - }, - { - "songno": "368", - "difficulty": "ura", - "note_count": 816, - "density_avg": 6.828451882845188, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.0035706481632653024 - }, - { - "songno": "383", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.607514805076435, - "density_peak": 13, - "bpm_avg": 124.02398130841125, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 460, - "color_complexity": 0.002628668752946948 - }, - { - "songno": "1171", - "difficulty": "oni", - "note_count": 647, - "density_avg": 5.283593170007424, - "density_peak": 9, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0036800716326530897 - }, - { - "songno": "1171", - "difficulty": "ura", - "note_count": 870, - "density_avg": 7.096774193548388, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 782, - "color_complexity": 0.010293913885739461 - }, - { - "songno": "1165", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.764462809917355, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 488, - "color_complexity": 0.005490928601838688 - }, - { - "songno": "397", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.792592592592592, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004892909413672529 - }, - { - "songno": "1159", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.665311653116531, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 623, - "color_complexity": 0.0063370985099839156 - }, - { - "songno": "624", - "difficulty": "oni", - "note_count": 476, - "density_avg": 5.086846152415104, - "density_peak": 11, - "bpm_avg": 158.9903844537815, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 387, - "color_complexity": 0.0035114897220843784 - }, - { - "songno": "142", - "difficulty": "oni", - "note_count": 374, - "density_avg": 3.850873679269398, - "density_peak": 8, - "bpm_avg": 160.04160427807486, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0010417564725212153 - }, - { - "songno": "156", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.245303225722078, - "density_peak": 9, - "bpm_avg": 129.97355555555555, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 674, - "color_complexity": 0.004324273473088193 - }, - { - "songno": "156", - "difficulty": "ura", - "note_count": 999, - "density_avg": 6.84974891829589, - "density_peak": 11, - "bpm_avg": 129.95784784784786, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 877, - "color_complexity": 0.00870851332771651 - }, - { - "songno": "630", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.127625186769604, - "density_peak": 14, - "bpm_avg": 197.98951048951048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 793, - "color_complexity": 0.00996794114110347 - }, - { - "songno": "618", - "difficulty": "oni", - "note_count": 450, - "density_avg": 2.959557859413143, - "density_peak": 7, - "bpm_avg": 104.98897777777778, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 342, - "color_complexity": 0.0011989808990196733 - }, - { - "songno": "80", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.150596370938169, - "density_peak": 12, - "bpm_avg": 164.99647887323943, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009185321955568263 - }, - { - "songno": "80", - "difficulty": "ura", - "note_count": 948, - "density_avg": 7.956297370480498, - "density_peak": 13, - "bpm_avg": 164.41244725738397, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.012215325438206293 - }, - { - "songno": "94", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.136403720205955, - "density_peak": 15, - "bpm_avg": 190.85495, - "bpm_change": 9, - "scroll_change": 2, - "rhythm_complexity": 951, - "color_complexity": 0.01409292164827618 - }, - { - "songno": "1373", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.383277456224622, - "density_peak": 9, - "bpm_avg": 144.39680719794342, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 361, - "color_complexity": 0.0013883730557553342 - }, - { - "songno": "1415", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.285714285714286, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 330, - "color_complexity": 0.0013117731039504706 - }, - { - "songno": "181", - "difficulty": "oni", - "note_count": 958, - "density_avg": 7.24543879472693, - "density_peak": 15, - "bpm_avg": 200.79999999999768, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 869, - "color_complexity": 0.013764598164013467 - }, - { - "songno": "181", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.562106847253574, - "density_peak": 21, - "bpm_avg": 200.79999999999728, - "bpm_change": 0, - "scroll_change": 97, - "rhythm_complexity": 919, - "color_complexity": 0.015268327419339723 - }, - { - "songno": "1401", - "difficulty": "oni", - "note_count": 919, - "density_avg": 6.608714043993231, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.009734468185586955 - }, - { - "songno": "1367", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.767708779443255, - "density_peak": 21, - "bpm_avg": 218.9724770642202, - "bpm_change": 14, - "scroll_change": 63, - "rhythm_complexity": 665, - "color_complexity": 0.011174130110903025 - }, - { - "songno": "43", - "difficulty": "oni", - "note_count": 546, - "density_avg": 5.379310344827586, - "density_peak": 12, - "bpm_avg": 198.24175824175825, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 483, - "color_complexity": 0.003468089974759997 - }, - { - "songno": "43", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.536945812807882, - "density_peak": 17, - "bpm_avg": 201.09803921568627, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 687, - "color_complexity": 0.009081133132484391 - }, - { - "songno": "803", - "difficulty": "oni", - "note_count": 1024, - "density_avg": 7.528644499586435, - "density_peak": 13, - "bpm_avg": 222.22000000000105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 974, - "color_complexity": 0.013885935984222594 - }, - { - "songno": "5", - "difficulty": "oni", - "note_count": 848, - "density_avg": 6.189554119655987, - "density_peak": 14, - "bpm_avg": 172.70386792452828, - "bpm_change": 16, - "scroll_change": 15, - "rhythm_complexity": 729, - "color_complexity": 0.0062142659194311944 - }, - { - "songno": "817", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.2587846317066695, - "density_peak": 15, - "bpm_avg": 200.01450980392158, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 687, - "color_complexity": 0.008140177011060406 - }, - { - "songno": "750", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "988", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.1264667535853965, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 746, - "color_complexity": 0.006123601198822141 - }, - { - "songno": "778", - "difficulty": "oni", - "note_count": 788, - "density_avg": 7.6928243116510995, - "density_peak": 17, - "bpm_avg": 226.3365989847717, - "bpm_change": 18, - "scroll_change": 66, - "rhythm_complexity": 624, - "color_complexity": 0.008934335726636976 - }, - { - "songno": "1207", - "difficulty": "oni", - "note_count": 759, - "density_avg": 6.469717362045761, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 744, - "color_complexity": 0.005742742061520157 - }, - { - "songno": "793", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.625766871165644, - "density_peak": 8, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0024683435457593067 - }, - { - "songno": "793", - "difficulty": "ura", - "note_count": 591, - "density_avg": 5.891871165644172, - "density_peak": 12, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0043461886976781695 - }, - { - "songno": "1213", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.464236760124611, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 420, - "color_complexity": 0.0032040001926913735 - }, - { - "songno": "1213", - "difficulty": "ura", - "note_count": 768, - "density_avg": 6.555514018691588, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.008329307549597185 - }, - { - "songno": "977", - "difficulty": "oni", - "note_count": 892, - "density_avg": 7.692403932082216, - "density_peak": 13, - "bpm_avg": 193, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 841, - "color_complexity": 0.010780358781325997 - }, - { - "songno": "963", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.6890756302521, - "density_peak": 10, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 631, - "color_complexity": 0.00395600312500001 - }, - { - "songno": "552", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.3936928971411735, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 489, - "color_complexity": 0.003873716591605892 - }, - { - "songno": "546", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.668952785064181, - "density_peak": 13, - "bpm_avg": 189.66839215686267, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 733, - "color_complexity": 0.007380945314223218 - }, - { - "songno": "220", - "difficulty": "oni", - "note_count": 774, - "density_avg": 6.923662737987307, - "density_peak": 14, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 705, - "color_complexity": 0.007850868394418726 - }, - { - "songno": "208", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.975757575757576, - "density_peak": 7, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 318, - "color_complexity": 0.0010996217679012325 - }, - { - "songno": "591", - "difficulty": "oni", - "note_count": 550, - "density_avg": 6.497445721583653, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.006230203253456314 - }, - { - "songno": "1011", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.038678835289004, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00509121393193868 - }, - { - "songno": "585", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.694927188900561, - "density_peak": 12, - "bpm_avg": 171.13227168949766, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 816, - "color_complexity": 0.006166390185178144 - }, - { - "songno": "1039", - "difficulty": "oni", - "note_count": 979, - "density_avg": 7.178130511463845, - "density_peak": 17, - "bpm_avg": 185.6435137895812, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 910, - "color_complexity": 0.010419887219519058 - }, - { - "songno": "1038", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.156794425087108, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 472, - "color_complexity": 0.0030464437414256286 - }, - { - "songno": "1010", - "difficulty": "oni", - "note_count": 472, - "density_avg": 4.495238095238095, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 421, - "color_complexity": 0.003210095557433995 - }, - { - "songno": "1004", - "difficulty": "oni", - "note_count": 482, - "density_avg": 5.816699282452707, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.004243220327186805 - }, - { - "songno": "209", - "difficulty": "oni", - "note_count": 580, - "density_avg": 5.109935043617381, - "density_peak": 10, - "bpm_avg": 179.98424137931033, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 551, - "color_complexity": 0.002004213840175491 - }, - { - "songno": "547", - "difficulty": "oni", - "note_count": 549, - "density_avg": 4.129386206614364, - "density_peak": 8, - "bpm_avg": 174.987650273224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.00258447784042387 - }, - { - "songno": "221", - "difficulty": "oni", - "note_count": 673, - "density_avg": 4.823610013175231, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.003594547763971267 - }, - { - "songno": "221", - "difficulty": "ura", - "note_count": 800, - "density_avg": 5.6978266561927216, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.0055468972917958265 - }, - { - "songno": "553", - "difficulty": "oni", - "note_count": 797, - "density_avg": 5.524078525641025, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 741, - "color_complexity": 0.002769547858070646 - }, - { - "songno": "553", - "difficulty": "ura", - "note_count": 1208, - "density_avg": 8.37275641025641, - "density_peak": 17, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1152, - "color_complexity": 0.017505897085976867 - }, - { - "songno": "962", - "difficulty": "oni", - "note_count": 335, - "density_avg": 3.7120799273387832, - "density_peak": 7, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0008922093844860172 - }, - { - "songno": "976", - "difficulty": "oni", - "note_count": 524, - "density_avg": 4.435978835978836, - "density_peak": 11, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.003019821877315528 - }, - { - "songno": "1212", - "difficulty": "oni", - "note_count": 251, - "density_avg": 2.894414414414414, - "density_peak": 8, - "bpm_avg": 191.23505976095618, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 219, - "color_complexity": 0.0006565829361958133 - }, - { - "songno": "1212", - "difficulty": "ura", - "note_count": 567, - "density_avg": 6.538378378378378, - "density_peak": 13, - "bpm_avg": 190.64550264550263, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 549, - "color_complexity": 0.005807141929427852 - }, - { - "songno": "786", - "difficulty": "oni", - "note_count": 988, - "density_avg": 7.388888888888889, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 943, - "color_complexity": 0.013753718828957654 - }, - { - "songno": "792", - "difficulty": "oni", - "note_count": 429, - "density_avg": 4.927469879518072, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 397, - "color_complexity": 0.002623869131572016 - }, - { - "songno": "1206", - "difficulty": "oni", - "note_count": 817, - "density_avg": 5.805305542396968, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 747, - "color_complexity": 0.006040146188259872 - }, - { - "songno": "779", - "difficulty": "oni", - "note_count": 983, - "density_avg": 8.610558712121211, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 967, - "color_complexity": 0.01307278424703783 - }, - { - "songno": "745", - "difficulty": "oni", - "note_count": 877, - "density_avg": 8.949047686620432, - "density_peak": 16, - "bpm_avg": 147.37856328392246, - "bpm_change": 8, - "scroll_change": 5, - "rhythm_complexity": 764, - "color_complexity": 0.013001368247462165 - }, - { - "songno": "989", - "difficulty": "oni", - "note_count": 702, - "density_avg": 6.253164556962026, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.006953269428008632 - }, - { - "songno": "751", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.920083682008368, - "density_peak": 11, - "bpm_avg": 149, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.005570093432646433 - }, - { - "songno": "816", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.925, - "density_peak": 13, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 629, - "color_complexity": 0.0071276549487336045 - }, - { - "songno": "816", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.660633484162897, - "density_peak": 18, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 911, - "color_complexity": 0.01703051006851917 - }, - { - "songno": "56", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.710526315789474, - "density_peak": 12, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006675279915123506 - }, - { - "songno": "42", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.7340382630016777, - "density_peak": 6, - "bpm_avg": 96.05787499999998, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.0007873908348305684 - }, - { - "songno": "1428", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.209947643979057, - "density_peak": 10, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.004437146804600891 - }, - { - "songno": "1400", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.088499550763702, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 245, - "color_complexity": 0.0006296764500277547 - }, - { - "songno": "194", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.905559368565545, - "density_peak": 13, - "bpm_avg": 245.759413202934, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 677, - "color_complexity": 0.00810657808974594 - }, - { - "songno": "1366", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.9596284023631747, - "density_peak": 7, - "bpm_avg": 206.02371490280777, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 412, - "color_complexity": 0.0016158759196483428 - }, - { - "songno": "1366", - "difficulty": "ura", - "note_count": 752, - "density_avg": 6.431189111397639, - "density_peak": 14, - "bpm_avg": 206.02291223404254, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 724, - "color_complexity": 0.005002507144932206 - }, - { - "songno": "180", - "difficulty": "oni", - "note_count": 786, - "density_avg": 5.620981988502224, - "density_peak": 13, - "bpm_avg": 185.98715012722644, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 701, - "color_complexity": 0.004677427540990335 - }, - { - "songno": "1414", - "difficulty": "oni", - "note_count": 421, - "density_avg": 3.869485294117647, - "density_peak": 11, - "bpm_avg": 145.90261282660333, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 398, - "color_complexity": 0.0035130826419481854 - }, - { - "songno": "1414", - "difficulty": "ura", - "note_count": 524, - "density_avg": 4.8161764705882355, - "density_peak": 12, - "bpm_avg": 148.7476145038168, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 479, - "color_complexity": 0.004992614716281524 - }, - { - "songno": "95", - "difficulty": "oni", - "note_count": 610, - "density_avg": 5.58260602083915, - "density_peak": 11, - "bpm_avg": 240.00159016393457, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 565, - "color_complexity": 0.0037189892920778535 - }, - { - "songno": "95", - "difficulty": "ura", - "note_count": 861, - "density_avg": 7.879711121217227, - "density_peak": 15, - "bpm_avg": 239.9980371660861, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 838, - "color_complexity": 0.009163695198045368 - }, - { - "songno": "81", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.669449701998124, - "density_peak": 12, - "bpm_avg": 150.1746025877999, - "bpm_change": 15, - "scroll_change": 4, - "rhythm_complexity": 416, - "color_complexity": 0.003117697003649981 - }, - { - "songno": "157", - "difficulty": "oni", - "note_count": 329, - "density_avg": 4.061728395061729, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0010233865435518624 - }, - { - "songno": "625", - "difficulty": "oni", - "note_count": 710, - "density_avg": 5.0643356643356645, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 23, - "rhythm_complexity": 544, - "color_complexity": 0.004051370988278961 - }, - { - "songno": "1158", - "difficulty": "oni", - "note_count": 680, - "density_avg": 5.405405405405405, - "density_peak": 11, - "bpm_avg": 149.83455882352942, - "bpm_change": 2, - "scroll_change": 152, - "rhythm_complexity": 555, - "color_complexity": 0.005146425544873622 - }, - { - "songno": "1164", - "difficulty": "oni", - "note_count": 725, - "density_avg": 5.320785984848484, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.005186734133242906 - }, - { - "songno": "396", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.939102564102564, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.005629562145887713 - }, - { - "songno": "1170", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.102138879561543, - "density_peak": 12, - "bpm_avg": 175.9030065359477, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 719, - "color_complexity": 0.006791863812185975 - }, - { - "songno": "355", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.893704850361197, - "density_peak": 15, - "bpm_avg": 234.4431137724551, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 804, - "color_complexity": 0.007280447263794931 - }, - { - "songno": "341", - "difficulty": "oni", - "note_count": 481, - "density_avg": 4.598470363288719, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 451, - "color_complexity": 0.0030258919556248364 - }, - { - "songno": "427", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.54169888586397, - "density_peak": 14, - "bpm_avg": 171.74774774774775, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 712, - "color_complexity": 0.01151430760134732 - }, - { - "songno": "468", - "difficulty": "oni", - "note_count": 292, - "density_avg": 3.8334358974358973, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0011207831735573044 - }, - { - "songno": "440", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.612581128307539, - "density_peak": 11, - "bpm_avg": 159.9543378995434, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 580, - "color_complexity": 0.005339377185140268 - }, - { - "songno": "454", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.716612868898978, - "density_peak": 13, - "bpm_avg": 185.44401544401543, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.0080543376503791 - }, - { - "songno": "332", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.893865243432331, - "density_peak": 7, - "bpm_avg": 128.00653562653562, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0008580983056978052 - }, - { - "songno": "483", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.939965694682676, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 22, - "rhythm_complexity": 546, - "color_complexity": 0.0042729495382928 - }, - { - "songno": "1117", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.05748884639898, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0017342894868998518 - }, - { - "songno": "1103", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.794805194805194, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0017068116335411908 - }, - { - "songno": "1103", - "difficulty": "ura", - "note_count": 699, - "density_avg": 7.2557017543859645, - "density_peak": 15, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.006939321632125484 - }, - { - "songno": "497", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.994999999999999, - "density_peak": 9, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 522, - "color_complexity": 0.003669970311111108 - }, - { - "songno": "118", - "difficulty": "oni", - "note_count": 366, - "density_avg": 3.8199608610567513, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0015429870175956057 - }, - { - "songno": "118", - "difficulty": "ura", - "note_count": 743, - "density_avg": 7.744625407166123, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 725, - "color_complexity": 0.00658672465723715 - }, - { - "songno": "642", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.330386740331492, - "density_peak": 12, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.003803308079232605 - }, - { - "songno": "124", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.973137697516931, - "density_peak": 10, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.0038597305257116778 - }, - { - "songno": "25", - "difficulty": "oni", - "note_count": 306, - "density_avg": 3.151415094339623, - "density_peak": 7, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 200, - "color_complexity": 0.0002712413709014524 - }, - { - "songno": "1329", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.863192182410423, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 663, - "color_complexity": 0.006160795551172387 - }, - { - "songno": "1329", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.645408163265306, - "density_peak": 19, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 829, - "color_complexity": 0.016536003856181765 - }, - { - "songno": "865", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.591022727272727, - "density_peak": 10, - "bpm_avg": 134.6699999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.002745650613135159 - }, - { - "songno": "31", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.74304347826087, - "density_peak": 13, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.006213240279046773 - }, - { - "songno": "19", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.577897974853846, - "density_peak": 10, - "bpm_avg": 140.006446991404, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 642, - "color_complexity": 0.0046518737926312306 - }, - { - "songno": "1315", - "difficulty": "oni", - "note_count": 569, - "density_avg": 6.446630888491353, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 554, - "color_complexity": 0.003647510369425553 - }, - { - "songno": "681", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.2405033238366565, - "density_peak": 11, - "bpm_avg": 349.53657789613845, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.006770403176708602 - }, - { - "songno": "681", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.553418803418803, - "density_peak": 13, - "bpm_avg": 349.61712871287125, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 874, - "color_complexity": 0.013146867034298846 - }, - { - "songno": "859", - "difficulty": "oni", - "note_count": 821, - "density_avg": 7.278368794326242, - "density_peak": 16, - "bpm_avg": 174.78684531059685, - "bpm_change": 3, - "scroll_change": 12, - "rhythm_complexity": 680, - "color_complexity": 0.012195921288757045 - }, - { - "songno": "695", - "difficulty": "oni", - "note_count": 901, - "density_avg": 8.029591334318068, - "density_peak": 13, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 852, - "color_complexity": 0.010235725579828603 - }, - { - "songno": "1301", - "difficulty": "oni", - "note_count": 270, - "density_avg": 3.205128205128205, - "density_peak": 6, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 232, - "color_complexity": 0.0007651638374485593 - }, - { - "songno": "736", - "difficulty": "oni", - "note_count": 498, - "density_avg": 3.924600638977636, - "density_peak": 8, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.002857194018570982 - }, - { - "songno": "736", - "difficulty": "ura", - "note_count": 829, - "density_avg": 6.533120340788072, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 687, - "color_complexity": 0.009636496234714059 - }, - { - "songno": "722", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.7697589141275545, - "density_peak": 15, - "bpm_avg": 210.98557692307693, - "bpm_change": 17, - "scroll_change": 7, - "rhythm_complexity": 771, - "color_complexity": 0.008627312496384442 - }, - { - "songno": "911", - "difficulty": "oni", - "note_count": 550, - "density_avg": 4.521674140508221, - "density_peak": 9, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.00304304982072175 - }, - { - "songno": "911", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.848281016442452, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.007040081648242609 - }, - { - "songno": "905", - "difficulty": "oni", - "note_count": 747, - "density_avg": 6.766304347826087, - "density_peak": 17, - "bpm_avg": 243.80856760374832, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 684, - "color_complexity": 0.013035318604540649 - }, - { - "songno": "1249", - "difficulty": "oni", - "note_count": 809, - "density_avg": 6.241366642174872, - "density_peak": 13, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 743, - "color_complexity": 0.008287972475140527 - }, - { - "songno": "1249", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 8.921368765926465, - "density_peak": 19, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1001, - "color_complexity": 0.019728057499140254 - }, - { - "songno": "1261", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "939", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1275", - "difficulty": "oni", - "note_count": 512, - "density_avg": 4.447339847991314, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 476, - "color_complexity": 0.0029049006846869076 - }, - { - "songno": "1088", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.4275303643724695, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0009625791821487533 - }, - { - "songno": "1088", - "difficulty": "ura", - "note_count": 669, - "density_avg": 7.181435487265839, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 661, - "color_complexity": 0.004905382530864201 - }, - { - "songno": "252", - "difficulty": "oni", - "note_count": 802, - "density_avg": 5.370859728506788, - "density_peak": 12, - "bpm_avg": 177.60000000000267, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.005244939571555594 - }, - { - "songno": "534", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.682173228182733, - "density_peak": 9, - "bpm_avg": 160.12050541516214, - "bpm_change": 33, - "scroll_change": 2, - "rhythm_complexity": 476, - "color_complexity": 0.0026761583506185365 - }, - { - "songno": "520", - "difficulty": "oni", - "note_count": 1071, - "density_avg": 6.69375, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1024, - "color_complexity": 0.005957452838151928 - }, - { - "songno": "520", - "difficulty": "ura", - "note_count": 1408, - "density_avg": 8.8, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1339, - "color_complexity": 0.014006391813888871 - }, - { - "songno": "246", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.19240790655885, - "density_peak": 7, - "bpm_avg": 179, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 365, - "color_complexity": 0.0009459781568985699 - }, - { - "songno": "291", - "difficulty": "oni", - "note_count": 722, - "density_avg": 4.458657335161869, - "density_peak": 10, - "bpm_avg": 138.49015235457057, - "bpm_change": 65, - "scroll_change": 5, - "rhythm_complexity": 570, - "color_complexity": 0.003939506226192449 - }, - { - "songno": "1063", - "difficulty": "oni", - "note_count": 233, - "density_avg": 3.126412429378531, - "density_peak": 7, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0005572428665910098 - }, - { - "songno": "1077", - "difficulty": "oni", - "note_count": 661, - "density_avg": 4.362489557226399, - "density_peak": 8, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0021825557321554574 - }, - { - "songno": "1077", - "difficulty": "ura", - "note_count": 978, - "density_avg": 6.454636591478696, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 933, - "color_complexity": 0.008111015328558846 - }, - { - "songno": "285", - "difficulty": "oni", - "note_count": 831, - "density_avg": 4.739777777777777, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.003950487947050744 - }, - { - "songno": "285", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 5.703703703703703, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 930, - "color_complexity": 0.007952864150925951 - }, - { - "songno": "1076", - "difficulty": "oni", - "note_count": 268, - "density_avg": 3.172149695387293, - "density_peak": 7, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 252, - "color_complexity": 0.0007572133486028209 - }, - { - "songno": "284", - "difficulty": "oni", - "note_count": 480, - "density_avg": 4.188481675392671, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0020017827356111403 - }, - { - "songno": "284", - "difficulty": "ura", - "note_count": 688, - "density_avg": 6.083112290008842, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 656, - "color_complexity": 0.007194786523731172 - }, - { - "songno": "1062", - "difficulty": "oni", - "note_count": 411, - "density_avg": 4.765217391304348, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.0023948800302751533 - }, - { - "songno": "247", - "difficulty": "oni", - "note_count": 463, - "density_avg": 5.401666666666666, - "density_peak": 12, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.003573478522824629 - }, - { - "songno": "253", - "difficulty": "oni", - "note_count": 485, - "density_avg": 5.574712643678161, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.003843793398841019 - }, - { - "songno": "253", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.341991341991342, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 604, - "color_complexity": 0.006129374814814834 - }, - { - "songno": "535", - "difficulty": "oni", - "note_count": 410, - "density_avg": 4.874341610233258, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.0018738400167455378 - }, - { - "songno": "1089", - "difficulty": "oni", - "note_count": 461, - "density_avg": 5.274367436743675, - "density_peak": 8, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 396, - "color_complexity": 0.002109912667673027 - }, - { - "songno": "1274", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.409819121447028, - "density_peak": 11, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 571, - "color_complexity": 0.00229482111491551 - }, - { - "songno": "1274", - "difficulty": "ura", - "note_count": 906, - "density_avg": 6.203875968992248, - "density_peak": 13, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 855, - "color_complexity": 0.006991300047894472 - }, - { - "songno": "938", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.30130548302872, - "density_peak": 11, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.004930845866851957 - }, - { - "songno": "938", - "difficulty": "ura", - "note_count": 893, - "density_avg": 7.305657093124455, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.011765853918948962 - }, - { - "songno": "1260", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "1248", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.7716588986949344, - "density_peak": 11, - "bpm_avg": 128.1006160164271, - "bpm_change": 9, - "scroll_change": 26, - "rhythm_complexity": 365, - "color_complexity": 0.0023718757897255582 - }, - { - "songno": "910", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.592857142857143, - "density_peak": 14, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 10, - "rhythm_complexity": 607, - "color_complexity": 0.0070297102040816455 - }, - { - "songno": "723", - "difficulty": "oni", - "note_count": 818, - "density_avg": 7.316013628620102, - "density_peak": 17, - "bpm_avg": 208.86308068459658, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 766, - "color_complexity": 0.01543448357574908 - }, - { - "songno": "737", - "difficulty": "oni", - "note_count": 851, - "density_avg": 7.058681780924423, - "density_peak": 14, - "bpm_avg": 255.14688601645125, - "bpm_change": 6, - "scroll_change": 14, - "rhythm_complexity": 812, - "color_complexity": 0.009798307375454942 - }, - { - "songno": "1300", - "difficulty": "oni", - "note_count": 277, - "density_avg": 3.3390985324947593, - "density_peak": 6, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 247, - "color_complexity": 0.0007231685106202011 - }, - { - "songno": "694", - "difficulty": "oni", - "note_count": 304, - "density_avg": 2.4184271476732855, - "density_peak": 5, - "bpm_avg": 86.27661842105262, - "bpm_change": 11, - "scroll_change": 1, - "rhythm_complexity": 134, - "color_complexity": 0.0005287222518615498 - }, - { - "songno": "858", - "difficulty": "oni", - "note_count": 756, - "density_avg": 8.116055889434469, - "density_peak": 19, - "bpm_avg": 258.07473544973544, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 606, - "color_complexity": 0.01259380808891444 - }, - { - "songno": "680", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.306436781609195, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 776, - "color_complexity": 0.01018153529428208 - }, - { - "songno": "1314", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.5234415249871205, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0015259255319242464 - }, - { - "songno": "18", - "difficulty": "oni", - "note_count": 233, - "density_avg": 2.3241161616161614, - "density_peak": 6, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 195, - "color_complexity": 0.00044659974301822084 - }, - { - "songno": "864", - "difficulty": "oni", - "note_count": 882, - "density_avg": 5.9638297297297305, - "density_peak": 12, - "bpm_avg": 150.11000000000038, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 773, - "color_complexity": 0.0071132767572012635 - }, - { - "songno": "1328", - "difficulty": "oni", - "note_count": 1020, - "density_avg": 7.639776181874257, - "density_peak": 15, - "bpm_avg": 167.97058823529412, - "bpm_change": 9, - "scroll_change": 1, - "rhythm_complexity": 866, - "color_complexity": 0.012699294447011882 - }, - { - "songno": "131", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.1615676359039195, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 840, - "color_complexity": 0.009776475112071855 - }, - { - "songno": "496", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.5812236286919825, - "density_peak": 12, - "bpm_avg": 142.92192192192192, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 613, - "color_complexity": 0.004533200876904673 - }, - { - "songno": "1102", - "difficulty": "oni", - "note_count": 263, - "density_avg": 3.8770077007700774, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 229, - "color_complexity": 0.0004279434841514448 - }, - { - "songno": "1116", - "difficulty": "oni", - "note_count": 412, - "density_avg": 4.790697674418604, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0024907495874056927 - }, - { - "songno": "1116", - "difficulty": "ura", - "note_count": 600, - "density_avg": 6.976744186046512, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.00560416025449816 - }, - { - "songno": "482", - "difficulty": "oni", - "note_count": 346, - "density_avg": 2.9666666666666663, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0006757930263849239 - }, - { - "songno": "482", - "difficulty": "ura", - "note_count": 513, - "density_avg": 4.398554913294797, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 480, - "color_complexity": 0.0035907131067730576 - }, - { - "songno": "455", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.1903055443863675, - "density_peak": 13, - "bpm_avg": 126.00394557823128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 381, - "color_complexity": 0.001977270342343761 - }, - { - "songno": "333", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.486187845303867, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 193, - "color_complexity": 0.00022257125724363814 - }, - { - "songno": "441", - "difficulty": "oni", - "note_count": 951, - "density_avg": 7.644336795390784, - "density_peak": 19, - "bpm_avg": 241.40495268138804, - "bpm_change": 9, - "scroll_change": 29, - "rhythm_complexity": 831, - "color_complexity": 0.01139316057942693 - }, - { - "songno": "469", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.18925831202046, - "density_peak": 8, - "bpm_avg": 105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 442, - "color_complexity": 0.001774896406877779 - }, - { - "songno": "319", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.28423676012461, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0027857307485154507 - }, - { - "songno": "331", - "difficulty": "oni", - "note_count": 794, - "density_avg": 7.565777217437103, - "density_peak": 25, - "bpm_avg": 234.34867758186388, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.011788821284054146 - }, - { - "songno": "457", - "difficulty": "oni", - "note_count": 683, - "density_avg": 4.904137947063638, - "density_peak": 10, - "bpm_avg": 165.31679355783308, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 634, - "color_complexity": 0.005521762476981634 - }, - { - "songno": "457", - "difficulty": "ura", - "note_count": 1142, - "density_avg": 8.036951747666846, - "density_peak": 18, - "bpm_avg": 166.5690455341506, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 913, - "color_complexity": 0.011444538633832872 - }, - { - "songno": "443", - "difficulty": "oni", - "note_count": 480, - "density_avg": 3.9844357976653693, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 441, - "color_complexity": 0.0021895043268307965 - }, - { - "songno": "1100", - "difficulty": "oni", - "note_count": 627, - "density_avg": 4.823076923076922, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 579, - "color_complexity": 0.0021371049502445848 - }, - { - "songno": "1100", - "difficulty": "ura", - "note_count": 1107, - "density_avg": 8.179802955665025, - "density_peak": 17, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 999, - "color_complexity": 0.013102841020408195 - }, - { - "songno": "480", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.398998330550919, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.0018797628022121156 - }, - { - "songno": "1114", - "difficulty": "oni", - "note_count": 369, - "density_avg": 4.786699507389163, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.0010793154580246889 - }, - { - "songno": "133", - "difficulty": "oni", - "note_count": 544, - "density_avg": 5.0057545623698445, - "density_peak": 10, - "bpm_avg": 144.92279411764707, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0032187253988867075 - }, - { - "songno": "127", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.927693018955154, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 639, - "color_complexity": 0.005087802207716049 - }, - { - "songno": "641", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.359351596313936, - "density_peak": 13, - "bpm_avg": 183.46736596736596, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.007526604336568293 - }, - { - "songno": "32", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.0825386386057225, - "density_peak": 11, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002612798357609391 - }, - { - "songno": "26", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.028589263420724, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.002527332777864558 - }, - { - "songno": "866", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.45085665999179, - "density_peak": 13, - "bpm_avg": 217.26135013623974, - "bpm_change": 43, - "scroll_change": 48, - "rhythm_complexity": 613, - "color_complexity": 0.009144396327225066 - }, - { - "songno": "866", - "difficulty": "ura", - "note_count": 1059, - "density_avg": 7.81759859835489, - "density_peak": 19, - "bpm_avg": 219.09038054768666, - "bpm_change": 45, - "scroll_change": 50, - "rhythm_complexity": 951, - "color_complexity": 0.01660116475855062 - }, - { - "songno": "1302", - "difficulty": "oni", - "note_count": 224, - "density_avg": 3.0713947990543735, - "density_peak": 6, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 198, - "color_complexity": 0.0005196148454731401 - }, - { - "songno": "1316", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.258333333333334, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 337, - "color_complexity": 0.0013286353470143718 - }, - { - "songno": "709", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.732472324723247, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 387, - "color_complexity": 0.0016200186091317227 - }, - { - "songno": "721", - "difficulty": "oni", - "note_count": 923, - "density_avg": 7.917892156862746, - "density_peak": 15, - "bpm_avg": 204.88082340195015, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.012838028494088861 - }, - { - "songno": "721", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 9.548801870251314, - "density_peak": 26, - "bpm_avg": 204.24164524421593, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1051, - "color_complexity": 0.022632751140664233 - }, - { - "songno": "735", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.531003382187148, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.003388610484622033 - }, - { - "songno": "735", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 8.267568583239383, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 48, - "rhythm_complexity": 952, - "color_complexity": 0.01657038160020572 - }, - { - "songno": "906", - "difficulty": "oni", - "note_count": 696, - "density_avg": 7.472659176029962, - "density_peak": 15, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 624, - "color_complexity": 0.00839009090689488 - }, - { - "songno": "1276", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.493214019388516, - "density_peak": 13, - "bpm_avg": 216.7317972715736, - "bpm_change": 5, - "scroll_change": 8, - "rhythm_complexity": 688, - "color_complexity": 0.007771442995791033 - }, - { - "songno": "1276", - "difficulty": "ura", - "note_count": 982, - "density_avg": 8.089534992079024, - "density_peak": 17, - "bpm_avg": 217.068641802444, - "bpm_change": 5, - "scroll_change": 10, - "rhythm_complexity": 796, - "color_complexity": 0.015560678058738977 - }, - { - "songno": "1262", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "279", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.401634877384196, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 681, - "color_complexity": 0.0056647583111110985 - }, - { - "songno": "523", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.7142857142857144, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.001784775393817142 - }, - { - "songno": "537", - "difficulty": "oni", - "note_count": 889, - "density_avg": 6.808141878274888, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.0073329498418997115 - }, - { - "songno": "537", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.313939393939394, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 1024, - "color_complexity": 0.013760207343649366 - }, - { - "songno": "251", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.363757416230901, - "density_peak": 13, - "bpm_avg": 186.34351949420443, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 902, - "color_complexity": 0.00947505778911815 - }, - { - "songno": "1048", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.0745706892495885, - "density_peak": 16, - "bpm_avg": 303.39435774309726, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 731, - "color_complexity": 0.0073422698513376265 - }, - { - "songno": "1048", - "difficulty": "ura", - "note_count": 1210, - "density_avg": 8.823806163255703, - "density_peak": 20, - "bpm_avg": 306.797520661157, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 1104, - "color_complexity": 0.02650355526827244 - }, - { - "songno": "286", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.269201444823582, - "density_peak": 15, - "bpm_avg": 208.30490236382323, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 907, - "color_complexity": 0.014135846372470484 - }, - { - "songno": "1074", - "difficulty": "oni", - "note_count": 275, - "density_avg": 1.7748151589665229, - "density_peak": 5, - "bpm_avg": 130.66709090909075, - "bpm_change": 11, - "scroll_change": 7, - "rhythm_complexity": 207, - "color_complexity": 0.00027986797386202303 - }, - { - "songno": "1060", - "difficulty": "oni", - "note_count": 500, - "density_avg": 5.930470347648262, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.002777855949231541 - }, - { - "songno": "1061", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.065082508250826, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 420, - "color_complexity": 0.0025310427215227017 - }, - { - "songno": "1061", - "difficulty": "ura", - "note_count": 641, - "density_avg": 7.439235080778107, - "density_peak": 16, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.006176335937067828 - }, - { - "songno": "293", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.9115131578947375, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.003279314286055951 - }, - { - "songno": "287", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.9213917525773185, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 599, - "color_complexity": 0.002723945555555559 - }, - { - "songno": "1075", - "difficulty": "oni", - "note_count": 412, - "density_avg": 3.9806763285024154, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.001552322414077725 - }, - { - "songno": "1049", - "difficulty": "oni", - "note_count": 904, - "density_avg": 7.082621082621083, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.011640283195851569 - }, - { - "songno": "536", - "difficulty": "oni", - "note_count": 799, - "density_avg": 6.234971098265896, - "density_peak": 11, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.006309692173469361 - }, - { - "songno": "250", - "difficulty": "oni", - "note_count": 431, - "density_avg": 4.221134020618557, - "density_peak": 7, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.001356092488888879 - }, - { - "songno": "278", - "difficulty": "oni", - "note_count": 453, - "density_avg": 4.724022346368715, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 427, - "color_complexity": 0.00194132242501966 - }, - { - "songno": "278", - "difficulty": "ura", - "note_count": 541, - "density_avg": 5.648023862788963, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 496, - "color_complexity": 0.003116365466390776 - }, - { - "songno": "1263", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1277", - "difficulty": "oni", - "note_count": 491, - "density_avg": 5.385740402193784, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 428, - "color_complexity": 0.002492755502040824 - }, - { - "songno": "913", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.1119047619047615, - "density_peak": 8, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0012284065765495128 - }, - { - "songno": "907", - "difficulty": "oni", - "note_count": 782, - "density_avg": 6.61590524534687, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 766, - "color_complexity": 0.0077117502362762935 - }, - { - "songno": "734", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.751937984496124, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 970, - "color_complexity": 0.012236749636918528 - }, - { - "songno": "720", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.019466316710411, - "density_peak": 16, - "bpm_avg": 163.7781875658588, - "bpm_change": 13, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.01109974827783315 - }, - { - "songno": "1317", - "difficulty": "oni", - "note_count": 1234, - "density_avg": 9.02537216828479, - "density_peak": 23, - "bpm_avg": 226, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1091, - "color_complexity": 0.017659061497894216 - }, - { - "songno": "1303", - "difficulty": "oni", - "note_count": 331, - "density_avg": 3.787117117117117, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 262, - "color_complexity": 0.000637195013216569 - }, - { - "songno": "1303", - "difficulty": "ura", - "note_count": 548, - "density_avg": 6.26990990990991, - "density_peak": 10, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0038538314767354843 - }, - { - "songno": "697", - "difficulty": "oni", - "note_count": 944, - "density_avg": 8.292297899427117, - "density_peak": 15, - "bpm_avg": 207, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.01912440595191157 - }, - { - "songno": "1465", - "difficulty": "oni", - "note_count": 779, - "density_avg": 5.435659246575343, - "density_peak": 10, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.004299677582128451 - }, - { - "songno": "1465", - "difficulty": "ura", - "note_count": 1226, - "density_avg": 8.51098807495741, - "density_peak": 15, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 1153, - "color_complexity": 0.020153963714935035 - }, - { - "songno": "867", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.747089947089947, - "density_peak": 13, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 128, - "rhythm_complexity": 711, - "color_complexity": 0.010588617046977307 - }, - { - "songno": "27", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.489850746268657, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0021718089383166426 - }, - { - "songno": "33", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 8.508038585209004, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1084, - "color_complexity": 0.02041182051630919 - }, - { - "songno": "126", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.4937901482506324, - "density_peak": 9, - "bpm_avg": 131.52388333333312, - "bpm_change": 48, - "scroll_change": 5, - "rhythm_complexity": 286, - "color_complexity": 0.0013998820823004033 - }, - { - "songno": "640", - "difficulty": "oni", - "note_count": 614, - "density_avg": 5.6095332671300895, - "density_peak": 11, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 519, - "color_complexity": 0.004641319526988624 - }, - { - "songno": "898", - "difficulty": "oni", - "note_count": 580, - "density_avg": 3.877495908984278, - "density_peak": 9, - "bpm_avg": 150.02112068965528, - "bpm_change": 19, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.001957649136187011 - }, - { - "songno": "898", - "difficulty": "ura", - "note_count": 938, - "density_avg": 6.368815541641498, - "density_peak": 15, - "bpm_avg": 149.99675906183387, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.00939578637419635 - }, - { - "songno": "654", - "difficulty": "oni", - "note_count": 616, - "density_avg": 3.92536183938386, - "density_peak": 10, - "bpm_avg": 186.79998376623294, - "bpm_change": 41, - "scroll_change": 6, - "rhythm_complexity": 470, - "color_complexity": 0.0028585566705724417 - }, - { - "songno": "132", - "difficulty": "oni", - "note_count": 563, - "density_avg": 4.691666666666667, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.002632860677335451 - }, - { - "songno": "668", - "difficulty": "oni", - "note_count": 156, - "density_avg": 3.177829262914469, - "density_peak": 7, - "bpm_avg": 135.98147435897434, - "bpm_change": 11, - "scroll_change": 13, - "rhythm_complexity": 127, - "color_complexity": 0.0008434745846855931 - }, - { - "songno": "1115", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.168462926836902, - "density_peak": 9, - "bpm_avg": 174.25453874538744, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 508, - "color_complexity": 0.00322141847576798 - }, - { - "songno": "481", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.73644578313253, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 517, - "color_complexity": 0.0047526776359383405 - }, - { - "songno": "481", - "difficulty": "ura", - "note_count": 475, - "density_avg": 4.053714859437751, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.0018344381725787617 - }, - { - "songno": "495", - "difficulty": "oni", - "note_count": 993, - "density_avg": 7.860899067005938, - "density_peak": 13, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 791, - "color_complexity": 0.012232142048901003 - }, - { - "songno": "1101", - "difficulty": "oni", - "note_count": 495, - "density_avg": 5.7894736842105265, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 465, - "color_complexity": 0.0032142460871756066 - }, - { - "songno": "1129", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.159734126855776, - "density_peak": 15, - "bpm_avg": 296.9753340184995, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 923, - "color_complexity": 0.009354891517815087 - }, - { - "songno": "1129", - "difficulty": "ura", - "note_count": 1365, - "density_avg": 10.044231329042274, - "density_peak": 20, - "bpm_avg": 296.7956043956044, - "bpm_change": 2, - "scroll_change": 15, - "rhythm_complexity": 1282, - "color_complexity": 0.02926541851588723 - }, - { - "songno": "442", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.122371364653243, - "density_peak": 12, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 20, - "rhythm_complexity": 734, - "color_complexity": 0.009553534772088045 - }, - { - "songno": "324", - "difficulty": "oni", - "note_count": 697, - "density_avg": 4.525265259199076, - "density_peak": 10, - "bpm_avg": 268.00206599713056, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 620, - "color_complexity": 0.003041911468725504 - }, - { - "songno": "324", - "difficulty": "ura", - "note_count": 765, - "density_avg": 4.966754552779474, - "density_peak": 12, - "bpm_avg": 268.00470588235294, - "bpm_change": 1, - "scroll_change": 22, - "rhythm_complexity": 692, - "color_complexity": 0.006480207457907696 - }, - { - "songno": "456", - "difficulty": "oni", - "note_count": 1052, - "density_avg": 6.975627240143369, - "density_peak": 15, - "bpm_avg": 296, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 1020, - "color_complexity": 0.0104755202393025 - }, - { - "songno": "452", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.981268011527377, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.009637653491878782 - }, - { - "songno": "446", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.244131455399061, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 623, - "color_complexity": 0.006658715071534216 - }, - { - "songno": "308", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.795676429567643, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.00253320567901235 - }, - { - "songno": "1105", - "difficulty": "oni", - "note_count": 463, - "density_avg": 4.185310734463277, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002284756822053213 - }, - { - "songno": "491", - "difficulty": "oni", - "note_count": 932, - "density_avg": 6.502331793527954, - "density_peak": 14, - "bpm_avg": 161.98175965665223, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 856, - "color_complexity": 0.00782917512138684 - }, - { - "songno": "1111", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.501388888888889, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.002801646771296996 - }, - { - "songno": "1139", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.968747990482927, - "density_peak": 11, - "bpm_avg": 152.99175824175825, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 604, - "color_complexity": 0.0052596733884919394 - }, - { - "songno": "136", - "difficulty": "oni", - "note_count": 814, - "density_avg": 7.643192488262911, - "density_peak": 16, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 764, - "color_complexity": 0.010545037209956436 - }, - { - "songno": "888", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.460512681214576, - "density_peak": 11, - "bpm_avg": 144.99224422442217, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.0030275976389252494 - }, - { - "songno": "650", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.469626168224299, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.0041490764891975365 - }, - { - "songno": "644", - "difficulty": "oni", - "note_count": 526, - "density_avg": 3.742728343561653, - "density_peak": 10, - "bpm_avg": 195.00511406844106, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 490, - "color_complexity": 0.00343634256456614 - }, - { - "songno": "122", - "difficulty": "oni", - "note_count": 321, - "density_avg": 3.6626159554730977, - "density_peak": 8, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.001234696834722224 - }, - { - "songno": "678", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.8727205610926547, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0009340853032533977 - }, - { - "songno": "693", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.2436549692893575, - "density_peak": 10, - "bpm_avg": 181.52077328646715, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 494, - "color_complexity": 0.003001491882724897 - }, - { - "songno": "1307", - "difficulty": "oni", - "note_count": 616, - "density_avg": 5.09201318555651, - "density_peak": 10, - "bpm_avg": 146.6896103896104, - "bpm_change": 12, - "scroll_change": 5, - "rhythm_complexity": 584, - "color_complexity": 0.0037493678072959163 - }, - { - "songno": "1313", - "difficulty": "oni", - "note_count": 528, - "density_avg": 6.195515695067265, - "density_peak": 11, - "bpm_avg": 178.7064393939394, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 478, - "color_complexity": 0.004343619469181911 - }, - { - "songno": "687", - "difficulty": "oni", - "note_count": 567, - "density_avg": 3.9722033898305087, - "density_peak": 9, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 423, - "color_complexity": 0.00212110526565366 - }, - { - "songno": "37", - "difficulty": "oni", - "note_count": 701, - "density_avg": 4.963402298850575, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.004542184760286857 - }, - { - "songno": "877", - "difficulty": "oni", - "note_count": 399, - "density_avg": 2.915068493150685, - "density_peak": 6, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0006517097687074822 - }, - { - "songno": "1449", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.530859832068721, - "density_peak": 15, - "bpm_avg": 136.7059413580248, - "bpm_change": 16, - "scroll_change": 14, - "rhythm_complexity": 584, - "color_complexity": 0.005670735901267075 - }, - { - "songno": "724", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.593963254593176, - "density_peak": 13, - "bpm_avg": 193.7581241956242, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 716, - "color_complexity": 0.007963062210979383 - }, - { - "songno": "730", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.04524886877828, - "density_peak": 11, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 638, - "color_complexity": 0.0032692740965143156 - }, - { - "songno": "730", - "difficulty": "ura", - "note_count": 1037, - "density_avg": 7.681481481481482, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1024, - "color_complexity": 0.011726198575945777 - }, - { - "songno": "1298", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.149059334298119, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.004107696043726675 - }, - { - "songno": "1273", - "difficulty": "oni", - "note_count": 559, - "density_avg": 4.3843137254901965, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.00328769555464253 - }, - { - "songno": "1267", - "difficulty": "oni", - "note_count": 460, - "density_avg": 4.924574209245741, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0025164288827408967 - }, - { - "songno": "917", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.838535080038504, - "density_peak": 10, - "bpm_avg": 145.02262365591397, - "bpm_change": 6, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0033781766485795534 - }, - { - "songno": "526", - "difficulty": "oni", - "note_count": 714, - "density_avg": 5.871710526315789, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.006141511181211432 - }, - { - "songno": "268", - "difficulty": "oni", - "note_count": 378, - "density_avg": 4.1902325581395345, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0021932849596014987 - }, - { - "songno": "1071", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.9375, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.008914481841283513 - }, - { - "songno": "283", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.639147061016703, - "density_peak": 14, - "bpm_avg": 205.49019607843138, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 653, - "color_complexity": 0.007625387708608697 - }, - { - "songno": "283", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.669944985562987, - "density_peak": 18, - "bpm_avg": 205.3053053053053, - "bpm_change": 4, - "scroll_change": 13, - "rhythm_complexity": 872, - "color_complexity": 0.01671678965963029 - }, - { - "songno": "297", - "difficulty": "oni", - "note_count": 624, - "density_avg": 5.595547309833024, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.003784621852709177 - }, - { - "songno": "1065", - "difficulty": "oni", - "note_count": 336, - "density_avg": 4.592, - "density_peak": 8, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0009060710100874766 - }, - { - "songno": "1059", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.345862335653519, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 378, - "color_complexity": 0.0019647515162428087 - }, - { - "songno": "1058", - "difficulty": "oni", - "note_count": 795, - "density_avg": 6.5645371577574965, - "density_peak": 11, - "bpm_avg": 189.76815094339622, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 783, - "color_complexity": 0.00496280243878555 - }, - { - "songno": "1058", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.233376792698826, - "density_peak": 13, - "bpm_avg": 189.7895890410959, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 820, - "color_complexity": 0.00983635725238653 - }, - { - "songno": "296", - "difficulty": "oni", - "note_count": 587, - "density_avg": 6.103056269637246, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.003780445755006863 - }, - { - "songno": "1064", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.6298761904761907, - "density_peak": 9, - "bpm_avg": 164.81599999999935, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0009446727030675987 - }, - { - "songno": "1070", - "difficulty": "oni", - "note_count": 573, - "density_avg": 4.2308186195826645, - "density_peak": 8, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.0023749551743585374 - }, - { - "songno": "269", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.350411700975081, - "density_peak": 16, - "bpm_avg": 153.24000000000194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.00800766673684429 - }, - { - "songno": "255", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.924686192468619, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0028616076480792695 - }, - { - "songno": "527", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "241", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.6587995337995336, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.0012068473393913384 - }, - { - "songno": "1266", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "719", - "difficulty": "oni", - "note_count": 839, - "density_avg": 5.97153024911032, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.006764592762703618 - }, - { - "songno": "725", - "difficulty": "oni", - "note_count": 498, - "density_avg": 4.2872689814712395, - "density_peak": 8, - "bpm_avg": 167.41385542168666, - "bpm_change": 15, - "scroll_change": 10, - "rhythm_complexity": 443, - "color_complexity": 0.0017903915766308703 - }, - { - "songno": "22", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.3395061728395055, - "density_peak": 10, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 544, - "color_complexity": 0.004619385588120113 - }, - { - "songno": "36", - "difficulty": "oni", - "note_count": 368, - "density_avg": 2.5309236947791165, - "density_peak": 8, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0006423521938571453 - }, - { - "songno": "686", - "difficulty": "oni", - "note_count": 925, - "density_avg": 7.2146962233169125, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 876, - "color_complexity": 0.011704902266348089 - }, - { - "songno": "1312", - "difficulty": "oni", - "note_count": 360, - "density_avg": 4.335078534031414, - "density_peak": 7, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0013944065741496629 - }, - { - "songno": "1312", - "difficulty": "ura", - "note_count": 526, - "density_avg": 6.056570713391739, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 495, - "color_complexity": 0.002340517933844544 - }, - { - "songno": "1306", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.591201027617212, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 475, - "color_complexity": 0.0030538636486317824 - }, - { - "songno": "645", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.683760683760684, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006414190609269058 - }, - { - "songno": "645", - "difficulty": "ura", - "note_count": 832, - "density_avg": 7.300333810205055, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 816, - "color_complexity": 0.009342611821617549 - }, - { - "songno": "123", - "difficulty": "oni", - "note_count": 528, - "density_avg": 5.995604395604396, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 518, - "color_complexity": 0.0045457546914036626 - }, - { - "songno": "137", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "651", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.9873396065012825, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.00553034806308897 - }, - { - "songno": "889", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.066865375062096, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.002981817735605234 - }, - { - "songno": "1138", - "difficulty": "oni", - "note_count": 448, - "density_avg": 5.3096296296296295, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.003017227591582135 - }, - { - "songno": "1110", - "difficulty": "oni", - "note_count": 251, - "density_avg": 3.164316239316239, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0004965848950098353 - }, - { - "songno": "484", - "difficulty": "oni", - "note_count": 520, - "density_avg": 4.227642276422764, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 40, - "rhythm_complexity": 455, - "color_complexity": 0.0028291318569163963 - }, - { - "songno": "1104", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.403447789220843, - "density_peak": 16, - "bpm_avg": 193.87020262216922, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 780, - "color_complexity": 0.014285011267083994 - }, - { - "songno": "309", - "difficulty": "oni", - "note_count": 618, - "density_avg": 5.3794604812109235, - "density_peak": 11, - "bpm_avg": 154.40082524271844, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 519, - "color_complexity": 0.003937963855438437 - }, - { - "songno": "309", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.625254662687328, - "density_peak": 15, - "bpm_avg": 154.5685388127854, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 757, - "color_complexity": 0.01123083437064483 - }, - { - "songno": "321", - "difficulty": "oni", - "note_count": 639, - "density_avg": 5.020324508966695, - "density_peak": 10, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.003100579766717255 - }, - { - "songno": "447", - "difficulty": "oni", - "note_count": 494, - "density_avg": 4.526693227091633, - "density_peak": 9, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 448, - "color_complexity": 0.0021139227356413745 - }, - { - "songno": "447", - "difficulty": "ura", - "note_count": 666, - "density_avg": 6.066534653465347, - "density_peak": 10, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.004969979980555542 - }, - { - "songno": "453", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.92126329787234, - "density_peak": 11, - "bpm_avg": 156.29999999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 968, - "color_complexity": 0.009461813131184854 - }, - { - "songno": "335", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.878111511478374, - "density_peak": 16, - "bpm_avg": 205.3310502283105, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 863, - "color_complexity": 0.011918825632733525 - }, - { - "songno": "445", - "difficulty": "oni", - "note_count": 663, - "density_avg": 5.738245614035087, - "density_peak": 11, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 592, - "color_complexity": 0.002741165773605207 - }, - { - "songno": "323", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "337", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.954337899543379, - "density_peak": 10, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 530, - "color_complexity": 0.00540433278911567 - }, - { - "songno": "451", - "difficulty": "oni", - "note_count": 675, - "density_avg": 6.030499075785582, - "density_peak": 12, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.006355690813494686 - }, - { - "songno": "451", - "difficulty": "ura", - "note_count": 904, - "density_avg": 8.076401725200245, - "density_peak": 20, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.016481866291770234 - }, - { - "songno": "479", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.143258426966293, - "density_peak": 10, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 452, - "color_complexity": 0.002890690486212669 - }, - { - "songno": "1112", - "difficulty": "oni", - "note_count": 297, - "density_avg": 3.234262948207171, - "density_peak": 7, - "bpm_avg": 82, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 180, - "color_complexity": 0.0006824491879567726 - }, - { - "songno": "1106", - "difficulty": "oni", - "note_count": 860, - "density_avg": 6.653993663498415, - "density_peak": 16, - "bpm_avg": 229.84186046511627, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 775, - "color_complexity": 0.01017047065329758 - }, - { - "songno": "492", - "difficulty": "oni", - "note_count": 145, - "density_avg": 2.1286701208981, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 85, - "color_complexity": 0.0001495424017940449 - }, - { - "songno": "121", - "difficulty": "oni", - "note_count": 961, - "density_avg": 6.779719459795932, - "density_peak": 12, - "bpm_avg": 160.00915712799167, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 892, - "color_complexity": 0.009872271932460493 - }, - { - "songno": "647", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.119283746556475, - "density_peak": 11, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.0075567133961082205 - }, - { - "songno": "653", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.74982332155477, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.006002838991383211 - }, - { - "songno": "135", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.124043176566487, - "density_peak": 7, - "bpm_avg": 127.82057971014493, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 307, - "color_complexity": 0.0014613397656190884 - }, - { - "songno": "135", - "difficulty": "ura", - "note_count": 423, - "density_avg": 5.056435546920649, - "density_peak": 9, - "bpm_avg": 128.03806146572103, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 405, - "color_complexity": 0.002892080706412024 - }, - { - "songno": "109", - "difficulty": "oni", - "note_count": 478, - "density_avg": 4.8141300263059, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.002880150077937775 - }, - { - "songno": "109", - "difficulty": "ura", - "note_count": 497, - "density_avg": 5.192826510721248, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0032293518594411477 - }, - { - "songno": "1310", - "difficulty": "oni", - "note_count": 598, - "density_avg": 5.3257986064533664, - "density_peak": 9, - "bpm_avg": 261.52732441471574, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 575, - "color_complexity": 0.004213323953528848 - }, - { - "songno": "1310", - "difficulty": "ura", - "note_count": 985, - "density_avg": 7.9181984335657365, - "density_peak": 19, - "bpm_avg": 254.14044670050765, - "bpm_change": 9, - "scroll_change": 5, - "rhythm_complexity": 956, - "color_complexity": 0.019816319412825162 - }, - { - "songno": "684", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.283624493743577, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 720, - "color_complexity": 0.008447770747929774 - }, - { - "songno": "1304", - "difficulty": "oni", - "note_count": 575, - "density_avg": 4.523519870235199, - "density_peak": 9, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.0023624683895295574 - }, - { - "songno": "1304", - "difficulty": "ura", - "note_count": 949, - "density_avg": 7.38047704950892, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.009710451252269789 - }, - { - "songno": "848", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.65424076832215, - "density_peak": 7, - "bpm_avg": 180.95689655172413, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 331, - "color_complexity": 0.001347099303615295 - }, - { - "songno": "20", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.491734221728307, - "density_peak": 15, - "bpm_avg": 172.07752941176471, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 699, - "color_complexity": 0.007847222396499294 - }, - { - "songno": "860", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.362857142857142, - "density_peak": 19, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.011084398681655753 - }, - { - "songno": "1338", - "difficulty": "oni", - "note_count": 944, - "density_avg": 6.865454545454545, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 902, - "color_complexity": 0.010048223995663687 - }, - { - "songno": "34", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.754545454545455, - "density_peak": 11, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0020538075597567305 - }, - { - "songno": "874", - "difficulty": "oni", - "note_count": 647, - "density_avg": 4.785740160601408, - "density_peak": 11, - "bpm_avg": 133.0293663060278, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 560, - "color_complexity": 0.003804069931307931 - }, - { - "songno": "733", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.9326823271883042, - "density_peak": 9, - "bpm_avg": 132.03435714285703, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0014474566408557068 - }, - { - "songno": "727", - "difficulty": "oni", - "note_count": 719, - "density_avg": 6.166666666666667, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007623319369613549 - }, - { - "songno": "928", - "difficulty": "oni", - "note_count": 787, - "density_avg": 6.369061652818427, - "density_peak": 16, - "bpm_avg": 156.3456162642948, - "bpm_change": 7, - "scroll_change": 9, - "rhythm_complexity": 670, - "color_complexity": 0.008903162415004665 - }, - { - "songno": "1264", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1264", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "914", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.440860215053763, - "density_peak": 15, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 629, - "color_complexity": 0.00678543800602485 - }, - { - "songno": "1258", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "257", - "difficulty": "oni", - "note_count": 574, - "density_avg": 5.18734793187348, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.003024306608009598 - }, - { - "songno": "243", - "difficulty": "oni", - "note_count": 999, - "density_avg": 7.826923076923077, - "density_peak": 17, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 920, - "color_complexity": 0.0158010503577592 - }, - { - "songno": "525", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.87701317715959, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.005645533537414956 - }, - { - "songno": "1099", - "difficulty": "oni", - "note_count": 753, - "density_avg": 6.486905582356996, - "density_peak": 17, - "bpm_avg": 245.84993359893758, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 610, - "color_complexity": 0.011756473364341697 - }, - { - "songno": "519", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.8282548229615285, - "density_peak": 13, - "bpm_avg": 193.53182666666666, - "bpm_change": 8, - "scroll_change": 4, - "rhythm_complexity": 695, - "color_complexity": 0.007047309575744179 - }, - { - "songno": "519", - "difficulty": "ura", - "note_count": 1045, - "density_avg": 8.120701719993063, - "density_peak": 16, - "bpm_avg": 193.6839043062201, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 957, - "color_complexity": 0.014275378863811972 - }, - { - "songno": "1066", - "difficulty": "oni", - "note_count": 1008, - "density_avg": 8.023880597014927, - "density_peak": 17, - "bpm_avg": 223.83333333333334, - "bpm_change": 2, - "scroll_change": 60, - "rhythm_complexity": 921, - "color_complexity": 0.013031484161489732 - }, - { - "songno": "294", - "difficulty": "oni", - "note_count": 456, - "density_avg": 5.076683607331519, - "density_peak": 10, - "bpm_avg": 169.01565789473682, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0034697152173827597 - }, - { - "songno": "280", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.439428885227897, - "density_peak": 9, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.002407244655127435 - }, - { - "songno": "1072", - "difficulty": "oni", - "note_count": 974, - "density_avg": 6.608182247274705, - "density_peak": 12, - "bpm_avg": 265.2977412731006, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 884, - "color_complexity": 0.0070010094576651374 - }, - { - "songno": "1072", - "difficulty": "ura", - "note_count": 1400, - "density_avg": 9.495571695489103, - "density_peak": 23, - "bpm_avg": 269.7139285714286, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 1277, - "color_complexity": 0.0335805889531643 - }, - { - "songno": "281", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.730113636363637, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 511, - "color_complexity": 0.0042082094969739334 - }, - { - "songno": "281", - "difficulty": "ura", - "note_count": 568, - "density_avg": 4.8, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004120663794395485 - }, - { - "songno": "1073", - "difficulty": "oni", - "note_count": 398, - "density_avg": 3.7932121829710144, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.0012424587810011976 - }, - { - "songno": "1067", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.974137931034483, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.006562313074548445 - }, - { - "songno": "1067", - "difficulty": "ura", - "note_count": 518, - "density_avg": 4.441586280814576, - "density_peak": 12, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.00247671069063878 - }, - { - "songno": "518", - "difficulty": "oni", - "note_count": 987, - "density_avg": 8.803048502151556, - "density_peak": 20, - "bpm_avg": 242.59473150962512, - "bpm_change": 23, - "scroll_change": 201, - "rhythm_complexity": 899, - "color_complexity": 0.018626343258294577 - }, - { - "songno": "1098", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.4555314533622563, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 117, - "color_complexity": 0.0015401502067561236 - }, - { - "songno": "242", - "difficulty": "oni", - "note_count": 377, - "density_avg": 3.3248131539611356, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0009504215126543182 - }, - { - "songno": "524", - "difficulty": "oni", - "note_count": 725, - "density_avg": 6.220714018022406, - "density_peak": 13, - "bpm_avg": 177.29444137930983, - "bpm_change": 66, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.00586770711563485 - }, - { - "songno": "530", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.465020576131686, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0020684337247432526 - }, - { - "songno": "256", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.751552795031056, - "density_peak": 9, - "bpm_avg": 147.41721854304635, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 262, - "color_complexity": 0.0016181926166362723 - }, - { - "songno": "256", - "difficulty": "ura", - "note_count": 416, - "density_avg": 5.143740340030912, - "density_peak": 10, - "bpm_avg": 150.8653846153846, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 354, - "color_complexity": 0.0024673533825034562 - }, - { - "songno": "1259", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "915", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.3522033898305086, - "density_peak": 7, - "bpm_avg": 93, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0008326252898563732 - }, - { - "songno": "1271", - "difficulty": "oni", - "note_count": 395, - "density_avg": 3.6056453883996116, - "density_peak": 7, - "bpm_avg": 104.6088101265824, - "bpm_change": 19, - "scroll_change": 2, - "rhythm_complexity": 342, - "color_complexity": 0.0016478852131883524 - }, - { - "songno": "1271", - "difficulty": "ura", - "note_count": 705, - "density_avg": 6.42036702121103, - "density_peak": 12, - "bpm_avg": 103.91668085106386, - "bpm_change": 25, - "scroll_change": 2, - "rhythm_complexity": 621, - "color_complexity": 0.003912253740360649 - }, - { - "songno": "929", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.489709013484741, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 717, - "color_complexity": 0.008077239489795926 - }, - { - "songno": "726", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.781094527363184, - "density_peak": 10, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0026125022149435817 - }, - { - "songno": "732", - "difficulty": "oni", - "note_count": 327, - "density_avg": 3.4112489803198, - "density_peak": 6, - "bpm_avg": 128.002874617737, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 312, - "color_complexity": 0.0008848248717018 - }, - { - "songno": "875", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.645539906103287, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004144921585630589 - }, - { - "songno": "35", - "difficulty": "oni", - "note_count": 315, - "density_avg": 3.23855421686747, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 240, - "color_complexity": 0.0006133637138780425 - }, - { - "songno": "1339", - "difficulty": "oni", - "note_count": 433, - "density_avg": 4.926052332195677, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002240042845895285 - }, - { - "songno": "861", - "difficulty": "oni", - "note_count": 416, - "density_avg": 5.10063694267516, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.001895326770581583 - }, - { - "songno": "21", - "difficulty": "oni", - "note_count": 835, - "density_avg": 7.665267282395746, - "density_peak": 12, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 791, - "color_complexity": 0.010350692863008938 - }, - { - "songno": "849", - "difficulty": "oni", - "note_count": 1210, - "density_avg": 8.016327577363652, - "density_peak": 21, - "bpm_avg": 293.9834710743802, - "bpm_change": 9, - "scroll_change": 15, - "rhythm_complexity": 1082, - "color_complexity": 0.032368213694464 - }, - { - "songno": "1305", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.909838472834068, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.003986833247174614 - }, - { - "songno": "685", - "difficulty": "oni", - "note_count": 885, - "density_avg": 7.6991813655950425, - "density_peak": 19, - "bpm_avg": 217.13902372881356, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 821, - "color_complexity": 0.011592309992935527 - }, - { - "songno": "1311", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.347980997624703, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 380, - "color_complexity": 0.0023727944962687662 - }, - { - "songno": "1311", - "difficulty": "ura", - "note_count": 897, - "density_avg": 7.463153724247228, - "density_peak": 27, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 763, - "color_complexity": 0.0067704685133135835 - }, - { - "songno": "108", - "difficulty": "oni", - "note_count": 882, - "density_avg": 6.468000000000001, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.009115015090832046 - }, - { - "songno": "652", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.469015003261578, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.002473152164784899 - }, - { - "songno": "652", - "difficulty": "ura", - "note_count": 614, - "density_avg": 5.206784083496412, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 531, - "color_complexity": 0.002866896583522302 - }, - { - "songno": "134", - "difficulty": "oni", - "note_count": 635, - "density_avg": 6.1092246745897, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.005163154842975053 - }, - { - "songno": "120", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.216357950447204, - "density_peak": 20, - "bpm_avg": 206.61401307189553, - "bpm_change": 15, - "scroll_change": 224, - "rhythm_complexity": 543, - "color_complexity": 0.004980770586693651 - }, - { - "songno": "646", - "difficulty": "oni", - "note_count": 456, - "density_avg": 3.5800807537012114, - "density_peak": 8, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0015286650613049817 - }, - { - "songno": "646", - "difficulty": "ura", - "note_count": 756, - "density_avg": 5.935397039030955, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.008138518238598654 - }, - { - "songno": "493", - "difficulty": "oni", - "note_count": 552, - "density_avg": 3.9239193083573487, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 450, - "color_complexity": 0.0017604967403042494 - }, - { - "songno": "493", - "difficulty": "ura", - "note_count": 1035, - "density_avg": 7.357348703170029, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.012013295995585432 - }, - { - "songno": "1107", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.535869996036465, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 814, - "color_complexity": 0.007554047567047632 - }, - { - "songno": "1113", - "difficulty": "oni", - "note_count": 561, - "density_avg": 4.46087786259542, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 553, - "color_complexity": 0.0028368573020750966 - }, - { - "songno": "487", - "difficulty": "oni", - "note_count": 556, - "density_avg": 4.5315763787213275, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0027883777378602532 - }, - { - "songno": "487", - "difficulty": "ura", - "note_count": 806, - "density_avg": 6.569155685700342, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 784, - "color_complexity": 0.007836578406899344 - }, - { - "songno": "478", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.020559210526316, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0026770483889597546 - }, - { - "songno": "336", - "difficulty": "oni", - "note_count": 1304, - "density_avg": 11.808920081503283, - "density_peak": 21, - "bpm_avg": 291.5184049079755, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1255, - "color_complexity": 0.03172641728093539 - }, - { - "songno": "450", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "322", - "difficulty": "oni", - "note_count": 607, - "density_avg": 4.979395030714651, - "density_peak": 13, - "bpm_avg": 149.54920922570017, - "bpm_change": 15, - "scroll_change": 15, - "rhythm_complexity": 560, - "color_complexity": 0.005248271768336951 - } -] \ No newline at end of file diff --git a/output/lightgbm3/compare.json b/output/lightgbm3/compare.json deleted file mode 100644 index 0d8b042..0000000 --- a/output/lightgbm3/compare.json +++ /dev/null @@ -1,9824 +0,0 @@ -{ - "summary": { - "total_compared": 1402, - "average_absolute_error": 0.3542819543509273, - "timestamp": "2026-04-25T06:33:02.669Z", - "script_used": "predict/predict_lightgbm.py" - }, - "details": [ - { - "songno": "1214", - "diff": "oni", - "actual": 6, - "predicted": 8.412, - "error": 2.412000000000001 - }, - { - "songno": "1397", - "diff": "oni", - "actual": 3.3, - "predicted": 5.5676, - "error": 2.2676 - }, - { - "songno": "48", - "diff": "ura", - "actual": 9.2, - "predicted": 7.1258, - "error": 2.0741999999999994 - }, - { - "songno": "144", - "diff": "oni", - "actual": 2.5, - "predicted": 4.5443, - "error": 2.0443 - }, - { - "songno": "42", - "diff": "oni", - "actual": 1.1, - "predicted": 3.1416, - "error": 2.0416 - }, - { - "songno": "1090", - "diff": "oni", - "actual": 4.2, - "predicted": 2.3203, - "error": 1.8797000000000001 - }, - { - "songno": "762", - "diff": "oni", - "actual": 10.3, - "predicted": 8.4259, - "error": 1.8741000000000003 - }, - { - "songno": "1375", - "diff": "oni", - "actual": 1.1, - "predicted": 2.9092, - "error": 1.8091999999999997 - }, - { - "songno": "976", - "diff": "oni", - "actual": 8.7, - "predicted": 6.9867, - "error": 1.7132999999999994 - }, - { - "songno": "935", - "diff": "oni", - "actual": 9.5, - "predicted": 7.8112, - "error": 1.6887999999999996 - }, - { - "songno": "1199", - "diff": "oni", - "actual": 4.3, - "predicted": 2.6607, - "error": 1.6393 - }, - { - "songno": "506", - "diff": "ura", - "actual": 7.5, - "predicted": 5.9094, - "error": 1.5906000000000002 - }, - { - "songno": "503", - "diff": "oni", - "actual": 11.3, - "predicted": 9.7792, - "error": 1.5208000000000013 - }, - { - "songno": "197", - "diff": "oni", - "actual": 1.7, - "predicted": 3.2149, - "error": 1.5149000000000001 - }, - { - "songno": "915", - "diff": "oni", - "actual": 5.7, - "predicted": 4.1918, - "error": 1.5082000000000004 - }, - { - "songno": "487", - "diff": "oni", - "actual": 3.5, - "predicted": 5.0042, - "error": 1.5042 - }, - { - "songno": "1282", - "diff": "oni", - "actual": 3.8, - "predicted": 2.2982, - "error": 1.5017999999999998 - }, - { - "songno": "339", - "diff": "oni", - "actual": 6.8, - "predicted": 5.326, - "error": 1.4740000000000002 - }, - { - "songno": "79", - "diff": "oni", - "actual": 3.2, - "predicted": 4.6671, - "error": 1.4670999999999994 - }, - { - "songno": "1118", - "diff": "oni", - "actual": 1.2, - "predicted": 2.6641, - "error": 1.4641 - }, - { - "songno": "1349", - "diff": "oni", - "actual": 6.3, - "predicted": 4.8556, - "error": 1.4444 - }, - { - "songno": "607", - "diff": "oni", - "actual": 4.8, - "predicted": 3.37, - "error": 1.4299999999999997 - }, - { - "songno": "61", - "diff": "oni", - "actual": 4.6, - "predicted": 5.9974, - "error": 1.3974000000000002 - }, - { - "songno": "1096", - "diff": "oni", - "actual": 5.1, - "predicted": 3.7122, - "error": 1.3877999999999995 - }, - { - "songno": "1095", - "diff": "oni", - "actual": 6.2, - "predicted": 4.8172, - "error": 1.3828000000000005 - }, - { - "songno": "831", - "diff": "ura", - "actual": 9.5, - "predicted": 8.1179, - "error": 1.3820999999999994 - }, - { - "songno": "1105", - "diff": "oni", - "actual": 5.5, - "predicted": 4.1212, - "error": 1.3788 - }, - { - "songno": "100", - "diff": "oni", - "actual": 5.3, - "predicted": 6.6619, - "error": 1.3619000000000003 - }, - { - "songno": "465", - "diff": "oni", - "actual": 6.9, - "predicted": 8.236, - "error": 1.3360000000000003 - }, - { - "songno": "506", - "diff": "oni", - "actual": 5.6, - "predicted": 4.2664, - "error": 1.3335999999999997 - }, - { - "songno": "1083", - "diff": "oni", - "actual": 7.5, - "predicted": 6.1686, - "error": 1.3314000000000004 - }, - { - "songno": "625", - "diff": "oni", - "actual": 5.5, - "predicted": 6.8112, - "error": 1.3112000000000004 - }, - { - "songno": "749", - "diff": "oni", - "actual": 7.9, - "predicted": 9.1779, - "error": 1.277899999999999 - }, - { - "songno": "654", - "diff": "oni", - "actual": 4.5, - "predicted": 5.7136, - "error": 1.2135999999999996 - }, - { - "songno": "81", - "diff": "oni", - "actual": 4.4, - "predicted": 5.6124, - "error": 1.2123999999999997 - }, - { - "songno": "365", - "diff": "oni", - "actual": 10, - "predicted": 8.7933, - "error": 1.2066999999999997 - }, - { - "songno": "401", - "diff": "oni", - "actual": 11.3, - "predicted": 10.101, - "error": 1.1989999999999998 - }, - { - "songno": "719", - "diff": "oni", - "actual": 9.9, - "predicted": 8.7038, - "error": 1.196200000000001 - }, - { - "songno": "222", - "diff": "oni", - "actual": 4.4, - "predicted": 5.5877, - "error": 1.1876999999999995 - }, - { - "songno": "1047", - "diff": "oni", - "actual": 8.7, - "predicted": 7.5265, - "error": 1.1734999999999989 - }, - { - "songno": "260", - "diff": "oni", - "actual": 8.8, - "predicted": 7.6297, - "error": 1.170300000000001 - }, - { - "songno": "11", - "diff": "oni", - "actual": 1.5, - "predicted": 2.6674, - "error": 1.1674000000000002 - }, - { - "songno": "739", - "diff": "oni", - "actual": 7.1, - "predicted": 8.2536, - "error": 1.1536000000000008 - }, - { - "songno": "663", - "diff": "oni", - "actual": 4.1, - "predicted": 5.25, - "error": 1.1500000000000004 - }, - { - "songno": "1187", - "diff": "oni", - "actual": 1.8, - "predicted": 2.9407, - "error": 1.1407 - }, - { - "songno": "747", - "diff": "oni", - "actual": 7.3, - "predicted": 8.4212, - "error": 1.1212000000000009 - }, - { - "songno": "1382", - "diff": "oni", - "actual": 3.2, - "predicted": 2.0858, - "error": 1.1142000000000003 - }, - { - "songno": "9", - "diff": "oni", - "actual": 2, - "predicted": 3.1045, - "error": 1.1044999999999998 - }, - { - "songno": "43", - "diff": "oni", - "actual": 8.1, - "predicted": 7.0017, - "error": 1.0983 - }, - { - "songno": "343", - "diff": "oni", - "actual": 6.4, - "predicted": 5.3097, - "error": 1.0903 - }, - { - "songno": "49", - "diff": "oni", - "actual": 4.4, - "predicted": 5.4892, - "error": 1.0892 - }, - { - "songno": "101", - "diff": "oni", - "actual": 1.4, - "predicted": 2.4843, - "error": 1.0843000000000003 - }, - { - "songno": "1303", - "diff": "oni", - "actual": 4.3, - "predicted": 3.224, - "error": 1.0759999999999996 - }, - { - "songno": "312", - "diff": "oni", - "actual": 1.1, - "predicted": 2.1725, - "error": 1.0724999999999998 - }, - { - "songno": "51", - "diff": "oni", - "actual": 3.2, - "predicted": 4.2553, - "error": 1.0553 - }, - { - "songno": "1313", - "diff": "oni", - "actual": 5.3, - "predicted": 6.3459, - "error": 1.0459000000000005 - }, - { - "songno": "1352", - "diff": "oni", - "actual": 8, - "predicted": 9.0438, - "error": 1.0437999999999992 - }, - { - "songno": "122", - "diff": "oni", - "actual": 1.9, - "predicted": 2.9373, - "error": 1.0373 - }, - { - "songno": "586", - "diff": "oni", - "actual": 3.3, - "predicted": 4.3293, - "error": 1.0293 - }, - { - "songno": "1450", - "diff": "oni", - "actual": 2.9, - "predicted": 3.9135, - "error": 1.0135 - }, - { - "songno": "1450", - "diff": "ura", - "actual": 7, - "predicted": 8.0119, - "error": 1.0119000000000007 - }, - { - "songno": "405", - "diff": "ura", - "actual": 6.9, - "predicted": 7.9029, - "error": 1.0028999999999995 - }, - { - "songno": "1082", - "diff": "ura", - "actual": 6.5, - "predicted": 5.4979, - "error": 1.0021000000000004 - }, - { - "songno": "1183", - "diff": "oni", - "actual": 6.5, - "predicted": 5.4994, - "error": 1.0006000000000004 - }, - { - "songno": "1390", - "diff": "oni", - "actual": 5.7, - "predicted": 4.7005, - "error": 0.9995000000000003 - }, - { - "songno": "407", - "diff": "oni", - "actual": 7.4, - "predicted": 8.399, - "error": 0.9989999999999988 - }, - { - "songno": "1394", - "diff": "oni", - "actual": 10.3, - "predicted": 9.302, - "error": 0.9980000000000011 - }, - { - "songno": "455", - "diff": "oni", - "actual": 5.7, - "predicted": 6.6939, - "error": 0.9939 - }, - { - "songno": "252", - "diff": "oni", - "actual": 7.5, - "predicted": 6.5101, - "error": 0.9898999999999996 - }, - { - "songno": "1382", - "diff": "ura", - "actual": 7.6, - "predicted": 6.6123, - "error": 0.9876999999999994 - }, - { - "songno": "111", - "diff": "oni", - "actual": 4.7, - "predicted": 5.6868, - "error": 0.9867999999999997 - }, - { - "songno": "967", - "diff": "oni", - "actual": 8.8, - "predicted": 7.8151, - "error": 0.9849000000000006 - }, - { - "songno": "1084", - "diff": "oni", - "actual": 2.6, - "predicted": 3.5764, - "error": 0.9763999999999999 - }, - { - "songno": "612", - "diff": "oni", - "actual": 6.7, - "predicted": 5.7258, - "error": 0.9742000000000006 - }, - { - "songno": "507", - "diff": "ura", - "actual": 8, - "predicted": 8.9742, - "error": 0.9741999999999997 - }, - { - "songno": "714", - "diff": "oni", - "actual": 9.4, - "predicted": 8.4271, - "error": 0.972900000000001 - }, - { - "songno": "67", - "diff": "oni", - "actual": 7.6, - "predicted": 6.631, - "error": 0.9689999999999994 - }, - { - "songno": "898", - "diff": "ura", - "actual": 7.5, - "predicted": 8.4685, - "error": 0.9685000000000006 - }, - { - "songno": "1396", - "diff": "oni", - "actual": 4.6, - "predicted": 5.5676, - "error": 0.9676 - }, - { - "songno": "456", - "diff": "oni", - "actual": 8.2, - "predicted": 9.1609, - "error": 0.9609000000000005 - }, - { - "songno": "673", - "diff": "oni", - "actual": 8.9, - "predicted": 7.9501, - "error": 0.9499000000000004 - }, - { - "songno": "519", - "diff": "ura", - "actual": 9.4, - "predicted": 10.3463, - "error": 0.946299999999999 - }, - { - "songno": "926", - "diff": "ura", - "actual": 5.4, - "predicted": 6.3443, - "error": 0.9442999999999993 - }, - { - "songno": "1252", - "diff": "oni", - "actual": 4.9, - "predicted": 3.9597, - "error": 0.9403000000000001 - }, - { - "songno": "1138", - "diff": "oni", - "actual": 4.1, - "predicted": 5.0362, - "error": 0.9362000000000004 - }, - { - "songno": "193", - "diff": "oni", - "actual": 4.4, - "predicted": 5.3004, - "error": 0.9003999999999994 - }, - { - "songno": "270", - "diff": "oni", - "actual": 6.9, - "predicted": 6.0003, - "error": 0.8997000000000002 - }, - { - "songno": "273", - "diff": "ura", - "actual": 4.9, - "predicted": 5.7997, - "error": 0.8996999999999993 - }, - { - "songno": "615", - "diff": "oni", - "actual": 9, - "predicted": 8.1069, - "error": 0.8931000000000004 - }, - { - "songno": "93", - "diff": "oni", - "actual": 5.9, - "predicted": 6.778, - "error": 0.8779999999999992 - }, - { - "songno": "1190", - "diff": "oni", - "actual": 5.5, - "predicted": 6.3779, - "error": 0.8779000000000003 - }, - { - "songno": "538", - "diff": "oni", - "actual": 8.6, - "predicted": 9.4756, - "error": 0.8756000000000004 - }, - { - "songno": "205", - "diff": "oni", - "actual": 3, - "predicted": 3.8658, - "error": 0.8658000000000001 - }, - { - "songno": "952", - "diff": "oni", - "actual": 10, - "predicted": 9.1377, - "error": 0.8622999999999994 - }, - { - "songno": "1357", - "diff": "oni", - "actual": 8.1, - "predicted": 7.2424, - "error": 0.8575999999999997 - }, - { - "songno": "1184", - "diff": "oni", - "actual": 6.4, - "predicted": 7.2565, - "error": 0.8564999999999996 - }, - { - "songno": "1371", - "diff": "ura", - "actual": 9.8, - "predicted": 8.9444, - "error": 0.8556000000000008 - }, - { - "songno": "1392", - "diff": "oni", - "actual": 5.4, - "predicted": 6.2551, - "error": 0.8550999999999993 - }, - { - "songno": "824", - "diff": "oni", - "actual": 1.3, - "predicted": 2.1525, - "error": 0.8524999999999998 - }, - { - "songno": "434", - "diff": "oni", - "actual": 4.1, - "predicted": 4.9518, - "error": 0.8518000000000008 - }, - { - "songno": "262", - "diff": "oni", - "actual": 6.8, - "predicted": 5.9494, - "error": 0.8506 - }, - { - "songno": "1273", - "diff": "oni", - "actual": 6.9, - "predicted": 6.0494, - "error": 0.8506 - }, - { - "songno": "1201", - "diff": "oni", - "actual": 1.9, - "predicted": 2.75, - "error": 0.8500000000000001 - }, - { - "songno": "1254", - "diff": "oni", - "actual": 5.9, - "predicted": 5.0515, - "error": 0.8485000000000005 - }, - { - "songno": "259", - "diff": "oni", - "actual": 6.6, - "predicted": 7.4473, - "error": 0.8473000000000006 - }, - { - "songno": "575", - "diff": "oni", - "actual": 9.8, - "predicted": 8.9534, - "error": 0.8466000000000005 - }, - { - "songno": "405", - "diff": "oni", - "actual": 3.1, - "predicted": 3.9395, - "error": 0.8394999999999997 - }, - { - "songno": "709", - "diff": "oni", - "actual": 2.5, - "predicted": 3.3355, - "error": 0.8355000000000001 - }, - { - "songno": "514", - "diff": "oni", - "actual": 7.7, - "predicted": 8.5307, - "error": 0.8306999999999993 - }, - { - "songno": "1122", - "diff": "oni", - "actual": 7.8, - "predicted": 8.6247, - "error": 0.8247000000000009 - }, - { - "songno": "866", - "diff": "oni", - "actual": 7.9, - "predicted": 8.7231, - "error": 0.8231000000000002 - }, - { - "songno": "974", - "diff": "oni", - "actual": 1.5, - "predicted": 2.3203, - "error": 0.8203 - }, - { - "songno": "613", - "diff": "oni", - "actual": 3, - "predicted": 3.8172, - "error": 0.8172000000000001 - }, - { - "songno": "44", - "diff": "oni", - "actual": 3.4, - "predicted": 4.2157, - "error": 0.8157000000000001 - }, - { - "songno": "1196", - "diff": "ura", - "actual": 11.7, - "predicted": 10.886, - "error": 0.8140000000000001 - }, - { - "songno": "221", - "diff": "ura", - "actual": 9.3, - "predicted": 8.4923, - "error": 0.8077000000000005 - }, - { - "songno": "239", - "diff": "oni", - "actual": 7.6, - "predicted": 8.3958, - "error": 0.7957999999999998 - }, - { - "songno": "1207", - "diff": "oni", - "actual": 7.8, - "predicted": 7.0048, - "error": 0.7951999999999995 - }, - { - "songno": "117", - "diff": "oni", - "actual": 8, - "predicted": 7.2066, - "error": 0.7934000000000001 - }, - { - "songno": "442", - "diff": "oni", - "actual": 10.3, - "predicted": 9.5068, - "error": 0.7932000000000006 - }, - { - "songno": "801", - "diff": "oni", - "actual": 4.6, - "predicted": 3.8084, - "error": 0.7915999999999999 - }, - { - "songno": "1447", - "diff": "oni", - "actual": 10.4, - "predicted": 9.6114, - "error": 0.7886000000000006 - }, - { - "songno": "1361", - "diff": "oni", - "actual": 1.5, - "predicted": 2.2864, - "error": 0.7864 - }, - { - "songno": "611", - "diff": "oni", - "actual": 3.8, - "predicted": 4.5833, - "error": 0.7833000000000006 - }, - { - "songno": "230", - "diff": "oni", - "actual": 7.4, - "predicted": 6.6174, - "error": 0.7826000000000004 - }, - { - "songno": "988", - "diff": "oni", - "actual": 5.3, - "predicted": 6.0813, - "error": 0.7812999999999999 - }, - { - "songno": "115", - "diff": "oni", - "actual": 2.3, - "predicted": 3.081, - "error": 0.7810000000000001 - }, - { - "songno": "337", - "diff": "oni", - "actual": 7.2, - "predicted": 7.9802, - "error": 0.7801999999999998 - }, - { - "songno": "1003", - "diff": "oni", - "actual": 5.1, - "predicted": 4.321, - "error": 0.7789999999999999 - }, - { - "songno": "333", - "diff": "oni", - "actual": 1.1, - "predicted": 1.8787, - "error": 0.7787 - }, - { - "songno": "1185", - "diff": "oni", - "actual": 10.5, - "predicted": 9.7237, - "error": 0.7763000000000009 - }, - { - "songno": "1389", - "diff": "oni", - "actual": 1.2, - "predicted": 1.9722, - "error": 0.7722 - }, - { - "songno": "316", - "diff": "oni", - "actual": 7.1, - "predicted": 6.3278, - "error": 0.7721999999999998 - }, - { - "songno": "1391", - "diff": "ura", - "actual": 10.2, - "predicted": 10.9707, - "error": 0.7707000000000015 - }, - { - "songno": "1378", - "diff": "oni", - "actual": 7.1, - "predicted": 7.8664, - "error": 0.7664 - }, - { - "songno": "21", - "diff": "oni", - "actual": 8.1, - "predicted": 8.8661, - "error": 0.7660999999999998 - }, - { - "songno": "1276", - "diff": "oni", - "actual": 9.2, - "predicted": 8.4352, - "error": 0.7647999999999993 - }, - { - "songno": "448", - "diff": "ura", - "actual": 9.6, - "predicted": 8.8375, - "error": 0.7624999999999993 - }, - { - "songno": "118", - "diff": "oni", - "actual": 3, - "predicted": 2.2414, - "error": 0.7585999999999999 - }, - { - "songno": "805", - "diff": "oni", - "actual": 7.5, - "predicted": 6.7423, - "error": 0.7576999999999998 - }, - { - "songno": "1092", - "diff": "oni", - "actual": 4.7, - "predicted": 5.4542, - "error": 0.7542 - }, - { - "songno": "1305", - "diff": "oni", - "actual": 7.8, - "predicted": 7.0481, - "error": 0.7519 - }, - { - "songno": "435", - "diff": "oni", - "actual": 5.7, - "predicted": 4.9491, - "error": 0.7509000000000006 - }, - { - "songno": "981", - "diff": "oni", - "actual": 3.3, - "predicted": 4.0481, - "error": 0.7481 - }, - { - "songno": "60", - "diff": "ura", - "actual": 8.8, - "predicted": 8.0532, - "error": 0.7468000000000004 - }, - { - "songno": "36", - "diff": "oni", - "actual": 1.6, - "predicted": 2.3451, - "error": 0.7450999999999999 - }, - { - "songno": "1032", - "diff": "oni", - "actual": 3.9, - "predicted": 4.6445, - "error": 0.7444999999999999 - }, - { - "songno": "223", - "diff": "oni", - "actual": 8.1, - "predicted": 7.3577, - "error": 0.7422999999999993 - }, - { - "songno": "59", - "diff": "oni", - "actual": 3.6, - "predicted": 2.8579, - "error": 0.7421000000000002 - }, - { - "songno": "818", - "diff": "oni", - "actual": 10.4, - "predicted": 9.6589, - "error": 0.7411000000000012 - }, - { - "songno": "1149", - "diff": "ura", - "actual": 7, - "predicted": 7.7411, - "error": 0.7411000000000003 - }, - { - "songno": "1208", - "diff": "oni", - "actual": 4.3, - "predicted": 3.5672, - "error": 0.7327999999999997 - }, - { - "songno": "686", - "diff": "oni", - "actual": 8.7, - "predicted": 7.9694, - "error": 0.730599999999999 - }, - { - "songno": "558", - "diff": "oni", - "actual": 8.5, - "predicted": 7.7695, - "error": 0.7305000000000001 - }, - { - "songno": "1364", - "diff": "oni", - "actual": 7.7, - "predicted": 6.9699, - "error": 0.7301000000000002 - }, - { - "songno": "1099", - "diff": "oni", - "actual": 11, - "predicted": 10.2723, - "error": 0.7277000000000005 - }, - { - "songno": "445", - "diff": "oni", - "actual": 7.1, - "predicted": 6.3736, - "error": 0.7263999999999999 - }, - { - "songno": "1271", - "diff": "ura", - "actual": 9.3, - "predicted": 8.5745, - "error": 0.7255000000000003 - }, - { - "songno": "1393", - "diff": "ura", - "actual": 8.6, - "predicted": 7.8753, - "error": 0.7246999999999995 - }, - { - "songno": "1240", - "diff": "oni", - "actual": 4.2, - "predicted": 3.4761, - "error": 0.7239 - }, - { - "songno": "146", - "diff": "oni", - "actual": 4.1, - "predicted": 4.8215, - "error": 0.7215000000000007 - }, - { - "songno": "366", - "diff": "ura", - "actual": 4.9, - "predicted": 5.6213, - "error": 0.7212999999999994 - }, - { - "songno": "843", - "diff": "oni", - "actual": 10, - "predicted": 9.2791, - "error": 0.7209000000000003 - }, - { - "songno": "3", - "diff": "oni", - "actual": 3.6, - "predicted": 2.8794, - "error": 0.7206000000000001 - }, - { - "songno": "1353", - "diff": "oni", - "actual": 2.8, - "predicted": 3.5192, - "error": 0.7192000000000003 - }, - { - "songno": "35", - "diff": "oni", - "actual": 3.1, - "predicted": 2.3825, - "error": 0.7175000000000002 - }, - { - "songno": "250", - "diff": "oni", - "actual": 3, - "predicted": 3.7175, - "error": 0.7174999999999998 - }, - { - "songno": "76", - "diff": "oni", - "actual": 3.5, - "predicted": 4.2169, - "error": 0.7168999999999999 - }, - { - "songno": "512", - "diff": "oni", - "actual": 3.4, - "predicted": 4.1109, - "error": 0.7109000000000001 - }, - { - "songno": "368", - "diff": "ura", - "actual": 7.2, - "predicted": 6.4932, - "error": 0.7068000000000003 - }, - { - "songno": "1011", - "diff": "oni", - "actual": 5.8, - "predicted": 6.5064, - "error": 0.7064000000000004 - }, - { - "songno": "287", - "diff": "oni", - "actual": 2.8, - "predicted": 3.5061, - "error": 0.7061000000000002 - }, - { - "songno": "1412", - "diff": "oni", - "actual": 6.2, - "predicted": 6.9043, - "error": 0.7042999999999999 - }, - { - "songno": "1000", - "diff": "oni", - "actual": 8, - "predicted": 7.2959, - "error": 0.7041000000000004 - }, - { - "songno": "1304", - "diff": "oni", - "actual": 4.7, - "predicted": 3.9961, - "error": 0.7039 - }, - { - "songno": "16", - "diff": "oni", - "actual": 8.3, - "predicted": 9.0019, - "error": 0.7018999999999984 - }, - { - "songno": "1098", - "diff": "oni", - "actual": 5.9, - "predicted": 5.1984, - "error": 0.7016 - }, - { - "songno": "466", - "diff": "oni", - "actual": 3, - "predicted": 3.7006, - "error": 0.7006000000000001 - }, - { - "songno": "109", - "diff": "ura", - "actual": 6.6, - "predicted": 5.9014, - "error": 0.6985999999999999 - }, - { - "songno": "274", - "diff": "ura", - "actual": 5, - "predicted": 5.6966, - "error": 0.6966000000000001 - }, - { - "songno": "1245", - "diff": "oni", - "actual": 8.4, - "predicted": 7.7053, - "error": 0.6947000000000001 - }, - { - "songno": "15", - "diff": "oni", - "actual": 5.4, - "predicted": 6.094, - "error": 0.694 - }, - { - "songno": "1225", - "diff": "ura", - "actual": 6.5, - "predicted": 7.1927, - "error": 0.6927000000000003 - }, - { - "songno": "699", - "diff": "oni", - "actual": 9.7, - "predicted": 10.3924, - "error": 0.692400000000001 - }, - { - "songno": "1381", - "diff": "oni", - "actual": 7.3, - "predicted": 7.9906, - "error": 0.6905999999999999 - }, - { - "songno": "142", - "diff": "oni", - "actual": 3, - "predicted": 2.3122, - "error": 0.6878000000000002 - }, - { - "songno": "687", - "diff": "oni", - "actual": 4.3, - "predicted": 4.9852, - "error": 0.6852 - }, - { - "songno": "150", - "diff": "oni", - "actual": 6.3, - "predicted": 6.9833, - "error": 0.6833 - }, - { - "songno": "415", - "diff": "oni", - "actual": 1.8, - "predicted": 2.4827, - "error": 0.6826999999999999 - }, - { - "songno": "842", - "diff": "oni", - "actual": 2.1, - "predicted": 2.7821, - "error": 0.6820999999999997 - }, - { - "songno": "273", - "diff": "oni", - "actual": 3.3, - "predicted": 2.6207, - "error": 0.6793 - }, - { - "songno": "969", - "diff": "oni", - "actual": 5.6, - "predicted": 4.9211, - "error": 0.6788999999999996 - }, - { - "songno": "218", - "diff": "ura", - "actual": 10.3, - "predicted": 9.6214, - "error": 0.6786000000000012 - }, - { - "songno": "921", - "diff": "oni", - "actual": 2.8, - "predicted": 2.1216, - "error": 0.6783999999999999 - }, - { - "songno": "617", - "diff": "oni", - "actual": 5.6, - "predicted": 6.2781, - "error": 0.6781000000000006 - }, - { - "songno": "993", - "diff": "ura", - "actual": 12, - "predicted": 11.3258, - "error": 0.6742000000000008 - }, - { - "songno": "256", - "diff": "ura", - "actual": 6.2, - "predicted": 5.5276, - "error": 0.6724000000000006 - }, - { - "songno": "110", - "diff": "oni", - "actual": 10.9, - "predicted": 10.2284, - "error": 0.6715999999999998 - }, - { - "songno": "394", - "diff": "oni", - "actual": 5.9, - "predicted": 6.5716, - "error": 0.6715999999999998 - }, - { - "songno": "25", - "diff": "oni", - "actual": 1.6, - "predicted": 2.2703, - "error": 0.6703000000000001 - }, - { - "songno": "1307", - "diff": "oni", - "actual": 6.9, - "predicted": 6.2308, - "error": 0.6692 - }, - { - "songno": "1139", - "diff": "oni", - "actual": 5.9, - "predicted": 6.5682, - "error": 0.6681999999999997 - }, - { - "songno": "993", - "diff": "oni", - "actual": 10, - "predicted": 9.3324, - "error": 0.6676000000000002 - }, - { - "songno": "1417", - "diff": "oni", - "actual": 4.2, - "predicted": 3.5337, - "error": 0.6663000000000001 - }, - { - "songno": "776", - "diff": "ura", - "actual": 8.7, - "predicted": 8.0356, - "error": 0.6643999999999988 - }, - { - "songno": "268", - "diff": "oni", - "actual": 5.1, - "predicted": 4.4358, - "error": 0.6641999999999992 - }, - { - "songno": "1085", - "diff": "oni", - "actual": 10, - "predicted": 9.3363, - "error": 0.6637000000000004 - }, - { - "songno": "496", - "diff": "oni", - "actual": 6.1, - "predicted": 6.7636, - "error": 0.6636000000000006 - }, - { - "songno": "505", - "diff": "oni", - "actual": 3, - "predicted": 3.6629, - "error": 0.6629 - }, - { - "songno": "404", - "diff": "oni", - "actual": 8.5, - "predicted": 7.8435, - "error": 0.6565000000000003 - }, - { - "songno": "523", - "diff": "oni", - "actual": 5.1, - "predicted": 4.4461, - "error": 0.6538999999999993 - }, - { - "songno": "1244", - "diff": "oni", - "actual": 1.6, - "predicted": 2.2535, - "error": 0.6534999999999997 - }, - { - "songno": "790", - "diff": "oni", - "actual": 2.5, - "predicted": 3.1519, - "error": 0.6518999999999999 - }, - { - "songno": "331", - "diff": "oni", - "actual": 9.4, - "predicted": 10.0518, - "error": 0.6517999999999997 - }, - { - "songno": "775", - "diff": "ura", - "actual": 10.6, - "predicted": 9.9524, - "error": 0.6475999999999988 - }, - { - "songno": "559", - "diff": "oni", - "actual": 5.4, - "predicted": 6.0475, - "error": 0.6475 - }, - { - "songno": "878", - "diff": "oni", - "actual": 9.7, - "predicted": 10.3466, - "error": 0.6466000000000012 - }, - { - "songno": "202", - "diff": "ura", - "actual": 9.6, - "predicted": 8.9564, - "error": 0.6435999999999993 - }, - { - "songno": "1297", - "diff": "oni", - "actual": 9.4, - "predicted": 10.0434, - "error": 0.6433999999999997 - }, - { - "songno": "462", - "diff": "oni", - "actual": 7.3, - "predicted": 6.6572, - "error": 0.6428000000000003 - }, - { - "songno": "794", - "diff": "oni", - "actual": 7.6, - "predicted": 6.9589, - "error": 0.6410999999999998 - }, - { - "songno": "280", - "diff": "oni", - "actual": 2.5, - "predicted": 3.1411, - "error": 0.6410999999999998 - }, - { - "songno": "121", - "diff": "oni", - "actual": 9.3, - "predicted": 8.6595, - "error": 0.6405000000000012 - }, - { - "songno": "1136", - "diff": "oni", - "actual": 2.7, - "predicted": 3.3404, - "error": 0.6403999999999996 - }, - { - "songno": "1010", - "diff": "oni", - "actual": 4.8, - "predicted": 5.4402, - "error": 0.6402000000000001 - }, - { - "songno": "1374", - "diff": "oni", - "actual": 1.6, - "predicted": 2.2399, - "error": 0.6398999999999999 - }, - { - "songno": "1243", - "diff": "oni", - "actual": 1.1, - "predicted": 1.7383, - "error": 0.6382999999999999 - }, - { - "songno": "956", - "diff": "ura", - "actual": 6.2, - "predicted": 5.5632, - "error": 0.6368 - }, - { - "songno": "647", - "diff": "oni", - "actual": 7.8, - "predicted": 7.1634, - "error": 0.6365999999999996 - }, - { - "songno": "666", - "diff": "oni", - "actual": 6.7, - "predicted": 7.3355, - "error": 0.6354999999999995 - }, - { - "songno": "1274", - "diff": "oni", - "actual": 4.8, - "predicted": 5.4354, - "error": 0.6353999999999997 - }, - { - "songno": "591", - "diff": "oni", - "actual": 6.2, - "predicted": 6.834, - "error": 0.6339999999999995 - }, - { - "songno": "961", - "diff": "oni", - "actual": 10.2, - "predicted": 9.5663, - "error": 0.6336999999999993 - }, - { - "songno": "9", - "diff": "ura", - "actual": 5.4, - "predicted": 6.0292, - "error": 0.6292 - }, - { - "songno": "930", - "diff": "oni", - "actual": 7.1, - "predicted": 7.7266, - "error": 0.6266000000000007 - }, - { - "songno": "1332", - "diff": "oni", - "actual": 1.5, - "predicted": 2.1264, - "error": 0.6263999999999998 - }, - { - "songno": "392", - "diff": "oni", - "actual": 9, - "predicted": 8.3756, - "error": 0.6243999999999996 - }, - { - "songno": "1333", - "diff": "oni", - "actual": 1.7, - "predicted": 2.3203, - "error": 0.6203000000000001 - }, - { - "songno": "1225", - "diff": "oni", - "actual": 5.3, - "predicted": 5.9181, - "error": 0.6181000000000001 - }, - { - "songno": "604", - "diff": "oni", - "actual": 1, - "predicted": 1.6167, - "error": 0.6167 - }, - { - "songno": "1171", - "diff": "oni", - "actual": 6.1, - "predicted": 5.4839, - "error": 0.6160999999999994 - }, - { - "songno": "109", - "diff": "oni", - "actual": 4.6, - "predicted": 5.2116, - "error": 0.6116000000000001 - }, - { - "songno": "537", - "diff": "ura", - "actual": 9, - "predicted": 9.6116, - "error": 0.6115999999999993 - }, - { - "songno": "489", - "diff": "oni", - "actual": 4.7, - "predicted": 4.089, - "error": 0.6109999999999998 - }, - { - "songno": "1344", - "diff": "oni", - "actual": 4.7, - "predicted": 4.09, - "error": 0.6100000000000003 - }, - { - "songno": "1074", - "diff": "oni", - "actual": 3.1, - "predicted": 2.4913, - "error": 0.6087000000000002 - }, - { - "songno": "308", - "diff": "oni", - "actual": 5.2, - "predicted": 4.5913, - "error": 0.6086999999999998 - }, - { - "songno": "1279", - "diff": "oni", - "actual": 8.4, - "predicted": 9.0068, - "error": 0.6067999999999998 - }, - { - "songno": "932", - "diff": "oni", - "actual": 7.5, - "predicted": 6.8934, - "error": 0.6066000000000003 - }, - { - "songno": "804", - "diff": "oni", - "actual": 5.7, - "predicted": 5.0953, - "error": 0.6047000000000002 - }, - { - "songno": "545", - "diff": "oni", - "actual": 4.8, - "predicted": 5.3993, - "error": 0.5993000000000004 - }, - { - "songno": "968", - "diff": "oni", - "actual": 7, - "predicted": 7.5965, - "error": 0.5964999999999998 - }, - { - "songno": "1178", - "diff": "oni", - "actual": 3.5, - "predicted": 4.0961, - "error": 0.5960999999999999 - }, - { - "songno": "1023", - "diff": "oni", - "actual": 3.4, - "predicted": 3.9944, - "error": 0.5944000000000003 - }, - { - "songno": "1133", - "diff": "ura", - "actual": 8.6, - "predicted": 8.0057, - "error": 0.5943000000000005 - }, - { - "songno": "1140", - "diff": "oni", - "actual": 5.6, - "predicted": 5.0065, - "error": 0.5934999999999997 - }, - { - "songno": "1152", - "diff": "oni", - "actual": 4.2, - "predicted": 4.7895, - "error": 0.5895000000000001 - }, - { - "songno": "391", - "diff": "oni", - "actual": 7.4, - "predicted": 6.8148, - "error": 0.5852000000000004 - }, - { - "songno": "367", - "diff": "oni", - "actual": 5.8, - "predicted": 6.3822, - "error": 0.5822000000000003 - }, - { - "songno": "264", - "diff": "oni", - "actual": 4.8, - "predicted": 4.2185, - "error": 0.5815000000000001 - }, - { - "songno": "618", - "diff": "oni", - "actual": 5, - "predicted": 4.4186, - "error": 0.5814000000000004 - }, - { - "songno": "1404", - "diff": "oni", - "actual": 9.5, - "predicted": 8.9195, - "error": 0.5805000000000007 - }, - { - "songno": "40", - "diff": "oni", - "actual": 4.6, - "predicted": 5.1797, - "error": 0.5797000000000008 - }, - { - "songno": "1348", - "diff": "oni", - "actual": 6.7, - "predicted": 6.1227, - "error": 0.5773000000000001 - }, - { - "songno": "1306", - "diff": "oni", - "actual": 4.9, - "predicted": 4.3242, - "error": 0.5758000000000001 - }, - { - "songno": "956", - "diff": "oni", - "actual": 2.1, - "predicted": 2.6752, - "error": 0.5751999999999997 - }, - { - "songno": "716", - "diff": "ura", - "actual": 10.9, - "predicted": 10.3256, - "error": 0.5744000000000007 - }, - { - "songno": "2", - "diff": "oni", - "actual": 2.7, - "predicted": 3.2711, - "error": 0.5710999999999999 - }, - { - "songno": "1344", - "diff": "ura", - "actual": 8, - "predicted": 8.5708, - "error": 0.5708000000000002 - }, - { - "songno": "293", - "diff": "oni", - "actual": 3.9, - "predicted": 4.4702, - "error": 0.5702000000000003 - }, - { - "songno": "715", - "diff": "oni", - "actual": 8.4, - "predicted": 7.8338, - "error": 0.5662000000000003 - }, - { - "songno": "835", - "diff": "oni", - "actual": 10.2, - "predicted": 9.6345, - "error": 0.5655000000000001 - }, - { - "songno": "991", - "diff": "oni", - "actual": 6.3, - "predicted": 6.8643, - "error": 0.5643000000000002 - }, - { - "songno": "724", - "diff": "oni", - "actual": 8.5, - "predicted": 7.9368, - "error": 0.5632000000000001 - }, - { - "songno": "792", - "diff": "oni", - "actual": 3.7, - "predicted": 4.2629, - "error": 0.5629 - }, - { - "songno": "524", - "diff": "oni", - "actual": 8.9, - "predicted": 8.3374, - "error": 0.5625999999999998 - }, - { - "songno": "209", - "diff": "oni", - "actual": 3.1, - "predicted": 3.6624, - "error": 0.5623999999999998 - }, - { - "songno": "1343", - "diff": "oni", - "actual": 1.4, - "predicted": 1.962, - "error": 0.562 - }, - { - "songno": "797", - "diff": "oni", - "actual": 8.8, - "predicted": 8.2386, - "error": 0.5614000000000008 - }, - { - "songno": "811", - "diff": "oni", - "actual": 1, - "predicted": 1.5581, - "error": 0.5581 - }, - { - "songno": "1037", - "diff": "oni", - "actual": 9.2, - "predicted": 9.7573, - "error": 0.5573000000000015 - }, - { - "songno": "256", - "diff": "oni", - "actual": 4.9, - "predicted": 4.3437, - "error": 0.5563000000000002 - }, - { - "songno": "662", - "diff": "oni", - "actual": 7.4, - "predicted": 6.8439, - "error": 0.5561000000000007 - }, - { - "songno": "120", - "diff": "oni", - "actual": 11.9, - "predicted": 11.3441, - "error": 0.5559000000000012 - }, - { - "songno": "1036", - "diff": "oni", - "actual": 6.5, - "predicted": 5.9441, - "error": 0.5559000000000003 - }, - { - "songno": "845", - "diff": "oni", - "actual": 7.5, - "predicted": 6.9463, - "error": 0.5537000000000001 - }, - { - "songno": "651", - "diff": "oni", - "actual": 7.1, - "predicted": 6.5475, - "error": 0.5524999999999993 - }, - { - "songno": "151", - "diff": "oni", - "actual": 4.8, - "predicted": 5.3517, - "error": 0.5517000000000003 - }, - { - "songno": "14", - "diff": "oni", - "actual": 3.7, - "predicted": 3.1515, - "error": 0.5485000000000002 - }, - { - "songno": "276", - "diff": "oni", - "actual": 3.7, - "predicted": 4.2469, - "error": 0.5468999999999999 - }, - { - "songno": "332", - "diff": "oni", - "actual": 2.5, - "predicted": 3.0466, - "error": 0.5466000000000002 - }, - { - "songno": "498", - "diff": "oni", - "actual": 6.7, - "predicted": 6.1534, - "error": 0.5465999999999998 - }, - { - "songno": "1163", - "diff": "oni", - "actual": 8.3, - "predicted": 7.7547, - "error": 0.545300000000001 - }, - { - "songno": "1296", - "diff": "oni", - "actual": 7.9, - "predicted": 8.4447, - "error": 0.5446999999999989 - }, - { - "songno": "1114", - "diff": "oni", - "actual": 2, - "predicted": 2.5437, - "error": 0.5436999999999999 - }, - { - "songno": "938", - "diff": "ura", - "actual": 8.5, - "predicted": 7.9605, - "error": 0.5395000000000003 - }, - { - "songno": "881", - "diff": "ura", - "actual": 10.1, - "predicted": 9.5611, - "error": 0.5388999999999999 - }, - { - "songno": "629", - "diff": "oni", - "actual": 7.3, - "predicted": 6.7619, - "error": 0.5381 - }, - { - "songno": "661", - "diff": "oni", - "actual": 2.9, - "predicted": 3.4369, - "error": 0.5369000000000002 - }, - { - "songno": "291", - "diff": "oni", - "actual": 5.9, - "predicted": 6.4358, - "error": 0.5358 - }, - { - "songno": "1269", - "diff": "oni", - "actual": 3.2, - "predicted": 2.6648, - "error": 0.5352000000000001 - }, - { - "songno": "191", - "diff": "oni", - "actual": 6.9, - "predicted": 7.4349, - "error": 0.5348999999999995 - }, - { - "songno": "1266", - "diff": "oni", - "actual": 6.9, - "predicted": 7.4349, - "error": 0.5348999999999995 - }, - { - "songno": "1040", - "diff": "oni", - "actual": 11.6, - "predicted": 11.0656, - "error": 0.5343999999999998 - }, - { - "songno": "19", - "diff": "oni", - "actual": 7.5, - "predicted": 6.9662, - "error": 0.5338000000000003 - }, - { - "songno": "412", - "diff": "oni", - "actual": 7, - "predicted": 6.467, - "error": 0.5330000000000004 - }, - { - "songno": "777", - "diff": "oni", - "actual": 10.8, - "predicted": 10.2692, - "error": 0.530800000000001 - }, - { - "songno": "989", - "diff": "oni", - "actual": 6.4, - "predicted": 6.9268, - "error": 0.5267999999999997 - }, - { - "songno": "1268", - "diff": "ura", - "actual": 9.1, - "predicted": 9.624, - "error": 0.5240000000000009 - }, - { - "songno": "1426", - "diff": "oni", - "actual": 6.2, - "predicted": 5.6763, - "error": 0.5236999999999998 - }, - { - "songno": "381", - "diff": "oni", - "actual": 2.3, - "predicted": 2.8228, - "error": 0.5228000000000002 - }, - { - "songno": "284", - "diff": "ura", - "actual": 6.2, - "predicted": 6.7227, - "error": 0.5226999999999995 - }, - { - "songno": "891", - "diff": "oni", - "actual": 6.8, - "predicted": 7.3211, - "error": 0.5211000000000006 - }, - { - "songno": "171", - "diff": "oni", - "actual": 9.6, - "predicted": 9.0791, - "error": 0.5208999999999993 - }, - { - "songno": "202", - "diff": "oni", - "actual": 7.9, - "predicted": 7.3795, - "error": 0.5205000000000002 - }, - { - "songno": "1393", - "diff": "oni", - "actual": 5.2, - "predicted": 4.6817, - "error": 0.5183 - }, - { - "songno": "478", - "diff": "oni", - "actual": 5.8, - "predicted": 5.2821, - "error": 0.5179 - }, - { - "songno": "831", - "diff": "oni", - "actual": 1.2, - "predicted": 1.7177, - "error": 0.5177 - }, - { - "songno": "345", - "diff": "oni", - "actual": 4.5, - "predicted": 3.9825, - "error": 0.5175000000000001 - }, - { - "songno": "1145", - "diff": "oni", - "actual": 7.2, - "predicted": 7.7133, - "error": 0.5133000000000001 - }, - { - "songno": "182", - "diff": "oni", - "actual": 6.4, - "predicted": 5.8875, - "error": 0.5125000000000002 - }, - { - "songno": "959", - "diff": "ura", - "actual": 10.7, - "predicted": 10.1883, - "error": 0.5116999999999994 - }, - { - "songno": "1097", - "diff": "ura", - "actual": 10.1, - "predicted": 9.5888, - "error": 0.5111999999999988 - }, - { - "songno": "278", - "diff": "oni", - "actual": 3.8, - "predicted": 4.3111, - "error": 0.5110999999999999 - }, - { - "songno": "1107", - "diff": "oni", - "actual": 6.5, - "predicted": 7.0109, - "error": 0.5109000000000004 - }, - { - "songno": "1342", - "diff": "oni", - "actual": 2.2, - "predicted": 2.7104, - "error": 0.5103999999999997 - }, - { - "songno": "279", - "diff": "oni", - "actual": 4.7, - "predicted": 5.2093, - "error": 0.5092999999999996 - }, - { - "songno": "688", - "diff": "oni", - "actual": 6.3, - "predicted": 6.8076, - "error": 0.5076 - }, - { - "songno": "1408", - "diff": "oni", - "actual": 4.5, - "predicted": 5.0074, - "error": 0.5073999999999996 - }, - { - "songno": "1137", - "diff": "oni", - "actual": 7.1, - "predicted": 6.593, - "error": 0.5069999999999997 - }, - { - "songno": "383", - "diff": "oni", - "actual": 6.1, - "predicted": 6.6064, - "error": 0.5064000000000002 - }, - { - "songno": "928", - "diff": "oni", - "actual": 10.3, - "predicted": 9.794, - "error": 0.5060000000000002 - }, - { - "songno": "1410", - "diff": "oni", - "actual": 3, - "predicted": 3.5046, - "error": 0.5045999999999999 - }, - { - "songno": "152", - "diff": "oni", - "actual": 7.9, - "predicted": 7.3975, - "error": 0.5025000000000004 - }, - { - "songno": "351", - "diff": "oni", - "actual": 8.7, - "predicted": 8.1979, - "error": 0.5020999999999987 - }, - { - "songno": "851", - "diff": "oni", - "actual": 10.1, - "predicted": 10.6012, - "error": 0.5012000000000008 - }, - { - "songno": "98", - "diff": "oni", - "actual": 3.1, - "predicted": 3.6005, - "error": 0.5004999999999997 - }, - { - "songno": "352", - "diff": "oni", - "actual": 2.5, - "predicted": 3.0004, - "error": 0.5004 - }, - { - "songno": "447", - "diff": "oni", - "actual": 4, - "predicted": 4.5001, - "error": 0.5000999999999998 - }, - { - "songno": "128", - "diff": "oni", - "actual": 9.2, - "predicted": 8.7003, - "error": 0.4996999999999989 - }, - { - "songno": "918", - "diff": "oni", - "actual": 6.4, - "predicted": 5.901, - "error": 0.49900000000000055 - }, - { - "songno": "377", - "diff": "oni", - "actual": 4.3, - "predicted": 3.8034, - "error": 0.49659999999999993 - }, - { - "songno": "630", - "diff": "oni", - "actual": 9.3, - "predicted": 8.8036, - "error": 0.4964000000000013 - }, - { - "songno": "453", - "diff": "oni", - "actual": 6.5, - "predicted": 6.9963, - "error": 0.49629999999999974 - }, - { - "songno": "1130", - "diff": "oni", - "actual": 5.9, - "predicted": 6.3943, - "error": 0.49429999999999996 - }, - { - "songno": "592", - "diff": "oni", - "actual": 7.1, - "predicted": 6.6059, - "error": 0.49409999999999954 - }, - { - "songno": "1380", - "diff": "ura", - "actual": 8.9, - "predicted": 9.3932, - "error": 0.49319999999999986 - }, - { - "songno": "8", - "diff": "oni", - "actual": 2.2, - "predicted": 2.6922, - "error": 0.49219999999999997 - }, - { - "songno": "1061", - "diff": "ura", - "actual": 7.7, - "predicted": 8.1918, - "error": 0.49180000000000046 - }, - { - "songno": "448", - "diff": "oni", - "actual": 5.5, - "predicted": 5.0094, - "error": 0.4905999999999997 - }, - { - "songno": "1164", - "diff": "oni", - "actual": 5.4, - "predicted": 5.89, - "error": 0.4899999999999993 - }, - { - "songno": "1414", - "diff": "ura", - "actual": 7.8, - "predicted": 7.3111, - "error": 0.4889000000000001 - }, - { - "songno": "894", - "diff": "oni", - "actual": 1.7, - "predicted": 2.1889, - "error": 0.4888999999999999 - }, - { - "songno": "479", - "diff": "oni", - "actual": 4.9, - "predicted": 4.4115, - "error": 0.48850000000000016 - }, - { - "songno": "1312", - "diff": "ura", - "actual": 6.3, - "predicted": 6.7854, - "error": 0.4854000000000003 - }, - { - "songno": "972", - "diff": "ura", - "actual": 10.9, - "predicted": 10.4149, - "error": 0.485100000000001 - }, - { - "songno": "578", - "diff": "oni", - "actual": 6.5, - "predicted": 6.015, - "error": 0.4850000000000003 - }, - { - "songno": "701", - "diff": "oni", - "actual": 6.6, - "predicted": 6.1151, - "error": 0.48489999999999966 - }, - { - "songno": "390", - "diff": "oni", - "actual": 4.8, - "predicted": 4.3154, - "error": 0.4845999999999995 - }, - { - "songno": "1421", - "diff": "oni", - "actual": 8.1, - "predicted": 8.5841, - "error": 0.48409999999999975 - }, - { - "songno": "149", - "diff": "oni", - "actual": 4.8, - "predicted": 5.2825, - "error": 0.48249999999999993 - }, - { - "songno": "543", - "diff": "oni", - "actual": 5.5, - "predicted": 5.0175, - "error": 0.48249999999999993 - }, - { - "songno": "1155", - "diff": "oni", - "actual": 4.3, - "predicted": 4.7808, - "error": 0.48080000000000034 - }, - { - "songno": "1413", - "diff": "ura", - "actual": 10.8, - "predicted": 10.3199, - "error": 0.4801000000000002 - }, - { - "songno": "845", - "diff": "ura", - "actual": 10.5, - "predicted": 10.9791, - "error": 0.47910000000000075 - }, - { - "songno": "281", - "diff": "oni", - "actual": 4.2, - "predicted": 4.6789, - "error": 0.47889999999999944 - }, - { - "songno": "1250", - "diff": "oni", - "actual": 6, - "predicted": 6.4785, - "error": 0.47850000000000037 - }, - { - "songno": "154", - "diff": "oni", - "actual": 7.7, - "predicted": 8.177, - "error": 0.4769999999999994 - }, - { - "songno": "616", - "diff": "oni", - "actual": 5.8, - "predicted": 6.2767, - "error": 0.4767000000000001 - }, - { - "songno": "63", - "diff": "oni", - "actual": 6.1, - "predicted": 5.6245, - "error": 0.47549999999999937 - }, - { - "songno": "1383", - "diff": "oni", - "actual": 9.3, - "predicted": 9.7752, - "error": 0.4751999999999992 - }, - { - "songno": "1070", - "diff": "oni", - "actual": 3.5, - "predicted": 3.975, - "error": 0.4750000000000001 - }, - { - "songno": "1052", - "diff": "oni", - "actual": 8.1, - "predicted": 8.575, - "error": 0.47499999999999964 - }, - { - "songno": "1020", - "diff": "ura", - "actual": 8, - "predicted": 7.5259, - "error": 0.47409999999999997 - }, - { - "songno": "913", - "diff": "oni", - "actual": 2.1, - "predicted": 2.5715, - "error": 0.4714999999999998 - }, - { - "songno": "540", - "diff": "oni", - "actual": 5.9, - "predicted": 6.3713, - "error": 0.4712999999999994 - }, - { - "songno": "92", - "diff": "oni", - "actual": 2.4, - "predicted": 2.8703, - "error": 0.47029999999999994 - }, - { - "songno": "799", - "diff": "oni", - "actual": 5.7, - "predicted": 5.2298, - "error": 0.4702000000000002 - }, - { - "songno": "34", - "diff": "oni", - "actual": 6.3, - "predicted": 5.831, - "error": 0.4689999999999994 - }, - { - "songno": "875", - "diff": "oni", - "actual": 5.1, - "predicted": 5.5679, - "error": 0.4679000000000002 - }, - { - "songno": "680", - "diff": "oni", - "actual": 7.9, - "predicted": 8.3669, - "error": 0.466899999999999 - }, - { - "songno": "1205", - "diff": "oni", - "actual": 6.1, - "predicted": 5.6335, - "error": 0.4664999999999999 - }, - { - "songno": "1022", - "diff": "oni", - "actual": 2.7, - "predicted": 3.1658, - "error": 0.46579999999999977 - }, - { - "songno": "1061", - "diff": "oni", - "actual": 3.9, - "predicted": 3.4349, - "error": 0.46510000000000007 - }, - { - "songno": "1413", - "diff": "oni", - "actual": 7.6, - "predicted": 7.1352, - "error": 0.46479999999999944 - }, - { - "songno": "819", - "diff": "ura", - "actual": 10.1, - "predicted": 10.5644, - "error": 0.4643999999999995 - }, - { - "songno": "1157", - "diff": "oni", - "actual": 4.6, - "predicted": 4.136, - "error": 0.4639999999999995 - }, - { - "songno": "828", - "diff": "oni", - "actual": 4.1, - "predicted": 4.5627, - "error": 0.4627000000000008 - }, - { - "songno": "553", - "diff": "oni", - "actual": 4.7, - "predicted": 5.1607, - "error": 0.4607000000000001 - }, - { - "songno": "1234", - "diff": "oni", - "actual": 6.6, - "predicted": 6.1396, - "error": 0.4603999999999999 - }, - { - "songno": "473", - "diff": "oni", - "actual": 5.4, - "predicted": 5.8588, - "error": 0.4587999999999992 - }, - { - "songno": "459", - "diff": "oni", - "actual": 5.6, - "predicted": 5.1415, - "error": 0.4584999999999999 - }, - { - "songno": "1144", - "diff": "ura", - "actual": 8.9, - "predicted": 9.3585, - "error": 0.458499999999999 - }, - { - "songno": "88", - "diff": "oni", - "actual": 8.1, - "predicted": 7.6423, - "error": 0.4577 - }, - { - "songno": "1362", - "diff": "oni", - "actual": 6.1, - "predicted": 6.5577, - "error": 0.4577 - }, - { - "songno": "1134", - "diff": "oni", - "actual": 9.6, - "predicted": 9.143, - "error": 0.45699999999999896 - }, - { - "songno": "1356", - "diff": "oni", - "actual": 9.4, - "predicted": 8.9443, - "error": 0.4557000000000002 - }, - { - "songno": "880", - "diff": "oni", - "actual": 5, - "predicted": 5.4548, - "error": 0.45479999999999965 - }, - { - "songno": "1057", - "diff": "oni", - "actual": 6.4, - "predicted": 6.8543, - "error": 0.4542999999999999 - }, - { - "songno": "1150", - "diff": "oni", - "actual": 4.1, - "predicted": 3.6462, - "error": 0.45379999999999976 - }, - { - "songno": "1457", - "diff": "oni", - "actual": 5.4, - "predicted": 5.8528, - "error": 0.45279999999999987 - }, - { - "songno": "1387", - "diff": "oni", - "actual": 4, - "predicted": 3.5487, - "error": 0.4512999999999998 - }, - { - "songno": "920", - "diff": "ura", - "actual": 9.2, - "predicted": 8.7493, - "error": 0.45069999999999943 - }, - { - "songno": "824", - "diff": "ura", - "actual": 5.1, - "predicted": 5.5497, - "error": 0.4497 - }, - { - "songno": "1226", - "diff": "ura", - "actual": 6.1, - "predicted": 6.5494, - "error": 0.4494000000000007 - }, - { - "songno": "652", - "diff": "oni", - "actual": 3.7, - "predicted": 4.1486, - "error": 0.4485999999999999 - }, - { - "songno": "64", - "diff": "oni", - "actual": 6.3, - "predicted": 6.7461, - "error": 0.4461000000000004 - }, - { - "songno": "1140", - "diff": "ura", - "actual": 8.6, - "predicted": 9.0451, - "error": 0.44510000000000005 - }, - { - "songno": "1045", - "diff": "oni", - "actual": 8, - "predicted": 8.4448, - "error": 0.44480000000000075 - }, - { - "songno": "1320", - "diff": "oni", - "actual": 8, - "predicted": 7.5556, - "error": 0.4443999999999999 - }, - { - "songno": "1069", - "diff": "oni", - "actual": 8, - "predicted": 7.5558, - "error": 0.4442000000000004 - }, - { - "songno": "1438", - "diff": "oni", - "actual": 7.4, - "predicted": 7.8439, - "error": 0.4438999999999993 - }, - { - "songno": "1072", - "diff": "oni", - "actual": 9.8, - "predicted": 9.3562, - "error": 0.4438000000000013 - }, - { - "songno": "208", - "diff": "oni", - "actual": 4.5, - "predicted": 4.0565, - "error": 0.4435000000000002 - }, - { - "songno": "1213", - "diff": "oni", - "actual": 5.3, - "predicted": 5.7434, - "error": 0.44340000000000046 - }, - { - "songno": "62", - "diff": "oni", - "actual": 6.1, - "predicted": 6.5425, - "error": 0.4425000000000008 - }, - { - "songno": "43", - "diff": "ura", - "actual": 10.1, - "predicted": 9.6576, - "error": 0.44239999999999924 - }, - { - "songno": "601", - "diff": "oni", - "actual": 3.5, - "predicted": 3.9418, - "error": 0.4418000000000002 - }, - { - "songno": "895", - "diff": "oni", - "actual": 1, - "predicted": 1.439, - "error": 0.43900000000000006 - }, - { - "songno": "569", - "diff": "oni", - "actual": 7.2, - "predicted": 7.6386, - "error": 0.4386000000000001 - }, - { - "songno": "694", - "diff": "oni", - "actual": 3.5, - "predicted": 3.0637, - "error": 0.43630000000000013 - }, - { - "songno": "246", - "diff": "oni", - "actual": 1.1, - "predicted": 1.5353, - "error": 0.4353 - }, - { - "songno": "648", - "diff": "oni", - "actual": 4.2, - "predicted": 4.6353, - "error": 0.4352999999999998 - }, - { - "songno": "1006", - "diff": "oni", - "actual": 5.3, - "predicted": 5.7349, - "error": 0.43489999999999984 - }, - { - "songno": "68", - "diff": "oni", - "actual": 9.2, - "predicted": 9.6341, - "error": 0.4341000000000008 - }, - { - "songno": "507", - "diff": "oni", - "actual": 5.8, - "predicted": 6.2324, - "error": 0.43240000000000034 - }, - { - "songno": "1370", - "diff": "oni", - "actual": 8.6, - "predicted": 8.1686, - "error": 0.4314 - }, - { - "songno": "72", - "diff": "oni", - "actual": 7.4, - "predicted": 7.8288, - "error": 0.42879999999999985 - }, - { - "songno": "355", - "diff": "oni", - "actual": 10, - "predicted": 9.5731, - "error": 0.42689999999999984 - }, - { - "songno": "55", - "diff": "oni", - "actual": 8.7, - "predicted": 8.2735, - "error": 0.426499999999999 - }, - { - "songno": "348", - "diff": "ura", - "actual": 6.7, - "predicted": 6.274, - "error": 0.42600000000000016 - }, - { - "songno": "1235", - "diff": "oni", - "actual": 7.8, - "predicted": 7.3761, - "error": 0.4238999999999997 - }, - { - "songno": "639", - "diff": "oni", - "actual": 7, - "predicted": 6.577, - "error": 0.42300000000000004 - }, - { - "songno": "649", - "diff": "oni", - "actual": 7.6, - "predicted": 7.1772, - "error": 0.4227999999999996 - }, - { - "songno": "1354", - "diff": "oni", - "actual": 7, - "predicted": 7.4228, - "error": 0.4227999999999996 - }, - { - "songno": "425", - "diff": "ura", - "actual": 8.6, - "predicted": 8.1778, - "error": 0.42220000000000013 - }, - { - "songno": "492", - "diff": "oni", - "actual": 1.9, - "predicted": 2.3203, - "error": 0.4203000000000001 - }, - { - "songno": "652", - "diff": "ura", - "actual": 5.5, - "predicted": 5.9201, - "error": 0.4200999999999997 - }, - { - "songno": "138", - "diff": "oni", - "actual": 7.7, - "predicted": 7.2803, - "error": 0.41969999999999974 - }, - { - "songno": "1015", - "diff": "oni", - "actual": 8.7, - "predicted": 8.2803, - "error": 0.41969999999999885 - }, - { - "songno": "374", - "diff": "oni", - "actual": 5.4, - "predicted": 5.8196, - "error": 0.4196 - }, - { - "songno": "641", - "diff": "oni", - "actual": 8.4, - "predicted": 7.9808, - "error": 0.4192 - }, - { - "songno": "324", - "diff": "oni", - "actual": 5.6, - "predicted": 6.0189, - "error": 0.4189000000000007 - }, - { - "songno": "1215", - "diff": "ura", - "actual": 11.2, - "predicted": 11.6181, - "error": 0.4181000000000008 - }, - { - "songno": "1230", - "diff": "oni", - "actual": 3.4, - "predicted": 2.9821, - "error": 0.41789999999999994 - }, - { - "songno": "1285", - "diff": "oni", - "actual": 2.4, - "predicted": 1.9832, - "error": 0.41679999999999984 - }, - { - "songno": "199", - "diff": "oni", - "actual": 3.1, - "predicted": 2.6836, - "error": 0.4163999999999999 - }, - { - "songno": "800", - "diff": "oni", - "actual": 7.3, - "predicted": 6.8853, - "error": 0.41469999999999985 - }, - { - "songno": "363", - "diff": "oni", - "actual": 8.1, - "predicted": 7.6858, - "error": 0.41419999999999924 - }, - { - "songno": "1311", - "diff": "oni", - "actual": 6.7, - "predicted": 7.1139, - "error": 0.41389999999999993 - }, - { - "songno": "907", - "diff": "oni", - "actual": 7.9, - "predicted": 7.4869, - "error": 0.4131 - }, - { - "songno": "795", - "diff": "ura", - "actual": 7.3, - "predicted": 6.887, - "error": 0.41300000000000026 - }, - { - "songno": "449", - "diff": "oni", - "actual": 8.1, - "predicted": 8.5109, - "error": 0.4108999999999998 - }, - { - "songno": "721", - "diff": "oni", - "actual": 9.3, - "predicted": 9.7097, - "error": 0.40969999999999906 - }, - { - "songno": "285", - "diff": "ura", - "actual": 5.9, - "predicted": 6.3094, - "error": 0.40939999999999976 - }, - { - "songno": "368", - "diff": "oni", - "actual": 1.8, - "predicted": 2.208, - "error": 0.40800000000000014 - }, - { - "songno": "461", - "diff": "oni", - "actual": 7.1, - "predicted": 6.6928, - "error": 0.40719999999999956 - }, - { - "songno": "1051", - "diff": "oni", - "actual": 8.7, - "predicted": 9.1063, - "error": 0.4062999999999999 - }, - { - "songno": "711", - "diff": "oni", - "actual": 2, - "predicted": 2.4057, - "error": 0.40569999999999995 - }, - { - "songno": "1300", - "diff": "oni", - "actual": 2, - "predicted": 2.4054, - "error": 0.4054000000000002 - }, - { - "songno": "713", - "diff": "oni", - "actual": 8.3, - "predicted": 7.8952, - "error": 0.4048000000000007 - }, - { - "songno": "106", - "diff": "oni", - "actual": 5.1, - "predicted": 5.5044, - "error": 0.40440000000000076 - }, - { - "songno": "460", - "diff": "oni", - "actual": 2.7, - "predicted": 3.1044, - "error": 0.40439999999999987 - }, - { - "songno": "487", - "diff": "ura", - "actual": 6.6, - "predicted": 7.0043, - "error": 0.4043000000000001 - }, - { - "songno": "1446", - "diff": "oni", - "actual": 8, - "predicted": 7.5967, - "error": 0.40329999999999977 - }, - { - "songno": "1278", - "diff": "oni", - "actual": 11.7, - "predicted": 11.2969, - "error": 0.40309999999999846 - }, - { - "songno": "753", - "diff": "oni", - "actual": 5.3, - "predicted": 5.703, - "error": 0.40300000000000047 - }, - { - "songno": "748", - "diff": "oni", - "actual": 10.8, - "predicted": 10.3972, - "error": 0.40280000000000094 - }, - { - "songno": "941", - "diff": "oni", - "actual": 4.6, - "predicted": 5.0028, - "error": 0.40280000000000005 - }, - { - "songno": "865", - "diff": "oni", - "actual": 5.6, - "predicted": 5.1974, - "error": 0.4025999999999996 - }, - { - "songno": "477", - "diff": "oni", - "actual": 9.3, - "predicted": 8.8992, - "error": 0.40080000000000027 - }, - { - "songno": "105", - "diff": "oni", - "actual": 2.9, - "predicted": 3.2984, - "error": 0.3984000000000001 - }, - { - "songno": "17", - "diff": "oni", - "actual": 7.3, - "predicted": 6.9016, - "error": 0.39839999999999964 - }, - { - "songno": "100", - "diff": "ura", - "actual": 7, - "predicted": 7.3981, - "error": 0.39810000000000034 - }, - { - "songno": "504", - "diff": "oni", - "actual": 6.1, - "predicted": 6.4969, - "error": 0.3969000000000005 - }, - { - "songno": "1117", - "diff": "oni", - "actual": 2.9, - "predicted": 3.2962, - "error": 0.3961999999999999 - }, - { - "songno": "66", - "diff": "oni", - "actual": 5.9, - "predicted": 6.2951, - "error": 0.39509999999999934 - }, - { - "songno": "349", - "diff": "oni", - "actual": 6.8, - "predicted": 6.4061, - "error": 0.3938999999999995 - }, - { - "songno": "887", - "diff": "oni", - "actual": 7.2, - "predicted": 6.8062, - "error": 0.3938000000000006 - }, - { - "songno": "12", - "diff": "oni", - "actual": 7.5, - "predicted": 7.1063, - "error": 0.39369999999999994 - }, - { - "songno": "1068", - "diff": "oni", - "actual": 9.2, - "predicted": 8.8063, - "error": 0.39369999999999905 - }, - { - "songno": "711", - "diff": "ura", - "actual": 5, - "predicted": 5.3923, - "error": 0.39229999999999965 - }, - { - "songno": "340", - "diff": "oni", - "actual": 5.2, - "predicted": 5.5919, - "error": 0.3918999999999997 - }, - { - "songno": "579", - "diff": "ura", - "actual": 7.2, - "predicted": 6.8082, - "error": 0.3917999999999999 - }, - { - "songno": "1054", - "diff": "oni", - "actual": 3.9, - "predicted": 4.2913, - "error": 0.39129999999999976 - }, - { - "songno": "1194", - "diff": "oni", - "actual": 4.2, - "predicted": 4.5893, - "error": 0.38929999999999954 - }, - { - "songno": "65", - "diff": "oni", - "actual": 6.2, - "predicted": 6.589, - "error": 0.38900000000000023 - }, - { - "songno": "1227", - "diff": "ura", - "actual": 12, - "predicted": 11.6139, - "error": 0.3861000000000008 - }, - { - "songno": "624", - "diff": "oni", - "actual": 5.6, - "predicted": 5.9843, - "error": 0.38430000000000053 - }, - { - "songno": "1386", - "diff": "oni", - "actual": 5.4, - "predicted": 5.0159, - "error": 0.3841000000000001 - }, - { - "songno": "474", - "diff": "oni", - "actual": 5.3, - "predicted": 4.9161, - "error": 0.3838999999999997 - }, - { - "songno": "738", - "diff": "oni", - "actual": 7.9, - "predicted": 7.518, - "error": 0.38200000000000056 - }, - { - "songno": "1053", - "diff": "oni", - "actual": 4.6, - "predicted": 4.219, - "error": 0.38099999999999934 - }, - { - "songno": "1353", - "diff": "ura", - "actual": 7.8, - "predicted": 7.4197, - "error": 0.3803000000000001 - }, - { - "songno": "1309", - "diff": "oni", - "actual": 6.5, - "predicted": 6.1203, - "error": 0.3796999999999997 - }, - { - "songno": "204", - "diff": "oni", - "actual": 2.4, - "predicted": 2.0203, - "error": 0.3796999999999997 - }, - { - "songno": "1094", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6793, - "error": 0.37929999999999975 - }, - { - "songno": "1119", - "diff": "oni", - "actual": 5.2, - "predicted": 5.5786, - "error": 0.3785999999999996 - }, - { - "songno": "742", - "diff": "oni", - "actual": 6.9, - "predicted": 6.5215, - "error": 0.3785000000000007 - }, - { - "songno": "920", - "diff": "oni", - "actual": 4.9, - "predicted": 5.2768, - "error": 0.37679999999999936 - }, - { - "songno": "703", - "diff": "oni", - "actual": 5.1, - "predicted": 5.4765, - "error": 0.37650000000000006 - }, - { - "songno": "1321", - "diff": "oni", - "actual": 5.8, - "predicted": 6.1759, - "error": 0.37590000000000057 - }, - { - "songno": "257", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6725, - "error": 0.3725000000000005 - }, - { - "songno": "671", - "diff": "oni", - "actual": 2.6, - "predicted": 2.972, - "error": 0.3719999999999999 - }, - { - "songno": "196", - "diff": "oni", - "actual": 5.3, - "predicted": 5.6712, - "error": 0.3712 - }, - { - "songno": "1330", - "diff": "oni", - "actual": 1.6, - "predicted": 1.9709, - "error": 0.3709 - }, - { - "songno": "156", - "diff": "oni", - "actual": 5.8, - "predicted": 6.1704, - "error": 0.37040000000000006 - }, - { - "songno": "481", - "diff": "ura", - "actual": 3.4, - "predicted": 3.0298, - "error": 0.3702000000000001 - }, - { - "songno": "134", - "diff": "oni", - "actual": 6.4, - "predicted": 6.7699, - "error": 0.36989999999999945 - }, - { - "songno": "1204", - "diff": "oni", - "actual": 3.1, - "predicted": 3.4679, - "error": 0.3679000000000001 - }, - { - "songno": "82", - "diff": "oni", - "actual": 5.7, - "predicted": 5.3329, - "error": 0.36709999999999976 - }, - { - "songno": "1077", - "diff": "ura", - "actual": 7.1, - "predicted": 6.7332, - "error": 0.36679999999999957 - }, - { - "songno": "1210", - "diff": "oni", - "actual": 3.2, - "predicted": 3.5663, - "error": 0.36629999999999985 - }, - { - "songno": "938", - "diff": "oni", - "actual": 5.3, - "predicted": 5.6663, - "error": 0.36629999999999985 - }, - { - "songno": "888", - "diff": "oni", - "actual": 6.1, - "predicted": 6.4657, - "error": 0.36570000000000036 - }, - { - "songno": "623", - "diff": "oni", - "actual": 5, - "predicted": 5.3637, - "error": 0.3636999999999997 - }, - { - "songno": "488", - "diff": "oni", - "actual": 5.7, - "predicted": 5.3378, - "error": 0.3622000000000005 - }, - { - "songno": "758", - "diff": "oni", - "actual": 10.8, - "predicted": 10.4392, - "error": 0.3608000000000011 - }, - { - "songno": "793", - "diff": "oni", - "actual": 3.1, - "predicted": 3.4598, - "error": 0.3597999999999999 - }, - { - "songno": "1391", - "diff": "oni", - "actual": 7.8, - "predicted": 8.159, - "error": 0.3590000000000009 - }, - { - "songno": "457", - "diff": "oni", - "actual": 6.5, - "predicted": 6.1411, - "error": 0.3589000000000002 - }, - { - "songno": "1112", - "diff": "oni", - "actual": 3.8, - "predicted": 4.1581, - "error": 0.3581000000000003 - }, - { - "songno": "38", - "diff": "oni", - "actual": 5.7, - "predicted": 6.0581, - "error": 0.3580999999999994 - }, - { - "songno": "408", - "diff": "oni", - "actual": 3.6, - "predicted": 3.9577, - "error": 0.3576999999999999 - }, - { - "songno": "1121", - "diff": "ura", - "actual": 10.2, - "predicted": 9.8428, - "error": 0.35719999999999885 - }, - { - "songno": "764", - "diff": "oni", - "actual": 11.2, - "predicted": 10.8428, - "error": 0.35719999999999885 - }, - { - "songno": "980", - "diff": "oni", - "actual": 8.8, - "predicted": 8.4429, - "error": 0.35710000000000086 - }, - { - "songno": "484", - "diff": "oni", - "actual": 5.3, - "predicted": 5.657, - "error": 0.3570000000000002 - }, - { - "songno": "1411", - "diff": "oni", - "actual": 9.1, - "predicted": 9.4569, - "error": 0.35689999999999955 - }, - { - "songno": "198", - "diff": "oni", - "actual": 2.4, - "predicted": 2.7567, - "error": 0.3567 - }, - { - "songno": "940", - "diff": "oni", - "actual": 9.1, - "predicted": 9.4567, - "error": 0.3567 - }, - { - "songno": "164", - "diff": "oni", - "actual": 8, - "predicted": 7.6436, - "error": 0.35639999999999983 - }, - { - "songno": "416", - "diff": "oni", - "actual": 6, - "predicted": 5.6443, - "error": 0.3556999999999997 - }, - { - "songno": "1303", - "diff": "ura", - "actual": 6.2, - "predicted": 6.5556, - "error": 0.3555999999999999 - }, - { - "songno": "972", - "diff": "oni", - "actual": 7.5, - "predicted": 7.8553, - "error": 0.3552999999999997 - }, - { - "songno": "567", - "diff": "oni", - "actual": 7.1, - "predicted": 6.7451, - "error": 0.35489999999999977 - }, - { - "songno": "1420", - "diff": "oni", - "actual": 3.7, - "predicted": 4.0542, - "error": 0.3541999999999996 - }, - { - "songno": "1315", - "diff": "oni", - "actual": 5.9, - "predicted": 6.2524, - "error": 0.3523999999999994 - }, - { - "songno": "676", - "diff": "ura", - "actual": 7.4, - "predicted": 7.0477, - "error": 0.3523000000000005 - }, - { - "songno": "728", - "diff": "oni", - "actual": 4.9, - "predicted": 5.2514, - "error": 0.35139999999999993 - }, - { - "songno": "366", - "diff": "oni", - "actual": 1.5, - "predicted": 1.851, - "error": 0.351 - }, - { - "songno": "1355", - "diff": "oni", - "actual": 9, - "predicted": 9.3505, - "error": 0.35050000000000026 - }, - { - "songno": "1002", - "diff": "oni", - "actual": 4.9, - "predicted": 4.5495, - "error": 0.35050000000000026 - }, - { - "songno": "732", - "diff": "oni", - "actual": 2.4, - "predicted": 2.0497, - "error": 0.35029999999999983 - }, - { - "songno": "341", - "diff": "oni", - "actual": 3.3, - "predicted": 3.6496, - "error": 0.34960000000000013 - }, - { - "songno": "1388", - "diff": "oni", - "actual": 6.1, - "predicted": 6.4491, - "error": 0.34909999999999997 - }, - { - "songno": "168", - "diff": "oni", - "actual": 8.6, - "predicted": 8.251, - "error": 0.3490000000000002 - }, - { - "songno": "319", - "diff": "oni", - "actual": 4.4, - "predicted": 4.7485, - "error": 0.3484999999999996 - }, - { - "songno": "429", - "diff": "oni", - "actual": 4.7, - "predicted": 4.3519, - "error": 0.3481000000000005 - }, - { - "songno": "924", - "diff": "oni", - "actual": 2.8, - "predicted": 3.148, - "error": 0.3480000000000003 - }, - { - "songno": "468", - "diff": "oni", - "actual": 2.7, - "predicted": 3.048, - "error": 0.34799999999999986 - }, - { - "songno": "324", - "diff": "ura", - "actual": 8.9, - "predicted": 8.5526, - "error": 0.3474000000000004 - }, - { - "songno": "1293", - "diff": "oni", - "actual": 3.8, - "predicted": 3.4526, - "error": 0.34739999999999993 - }, - { - "songno": "556", - "diff": "oni", - "actual": 4.4, - "predicted": 4.7465, - "error": 0.3464999999999998 - }, - { - "songno": "755", - "diff": "oni", - "actual": 6.9, - "predicted": 7.2455, - "error": 0.3454999999999995 - }, - { - "songno": "1314", - "diff": "oni", - "actual": 4.4, - "predicted": 4.0552, - "error": 0.3448000000000002 - }, - { - "songno": "274", - "diff": "oni", - "actual": 4.3, - "predicted": 4.6446, - "error": 0.3445999999999998 - }, - { - "songno": "1192", - "diff": "oni", - "actual": 5.7, - "predicted": 6.0438, - "error": 0.3437999999999999 - }, - { - "songno": "740", - "diff": "oni", - "actual": 8.8, - "predicted": 8.4563, - "error": 0.3437000000000001 - }, - { - "songno": "926", - "diff": "oni", - "actual": 3.7, - "predicted": 4.0428, - "error": 0.34279999999999955 - }, - { - "songno": "971", - "diff": "oni", - "actual": 10.3, - "predicted": 9.9574, - "error": 0.3426000000000009 - }, - { - "songno": "359", - "diff": "oni", - "actual": 8.3, - "predicted": 8.6425, - "error": 0.34249999999999936 - }, - { - "songno": "1215", - "diff": "oni", - "actual": 8.3, - "predicted": 8.6413, - "error": 0.3412999999999986 - }, - { - "songno": "1079", - "diff": "oni", - "actual": 5.6, - "predicted": 5.2611, - "error": 0.33889999999999976 - }, - { - "songno": "452", - "diff": "oni", - "actual": 8.5, - "predicted": 8.1612, - "error": 0.3388000000000009 - }, - { - "songno": "550", - "diff": "oni", - "actual": 7.8, - "predicted": 8.1377, - "error": 0.3377000000000008 - }, - { - "songno": "798", - "diff": "oni", - "actual": 9.1, - "predicted": 8.7628, - "error": 0.3371999999999993 - }, - { - "songno": "354", - "diff": "oni", - "actual": 4.8, - "predicted": 4.4631, - "error": 0.3369 - }, - { - "songno": "395", - "diff": "oni", - "actual": 7.7, - "predicted": 7.364, - "error": 0.3360000000000003 - }, - { - "songno": "1318", - "diff": "oni", - "actual": 8.9, - "predicted": 9.2337, - "error": 0.33370000000000033 - }, - { - "songno": "266", - "diff": "ura", - "actual": 9.1, - "predicted": 8.7678, - "error": 0.3322000000000003 - }, - { - "songno": "224", - "diff": "oni", - "actual": 6.8, - "predicted": 6.4681, - "error": 0.3319000000000001 - }, - { - "songno": "1370", - "diff": "ura", - "actual": 11.3, - "predicted": 11.6317, - "error": 0.33169999999999966 - }, - { - "songno": "1373", - "diff": "oni", - "actual": 2.1, - "predicted": 2.4311, - "error": 0.33109999999999973 - }, - { - "songno": "1027", - "diff": "oni", - "actual": 3.9, - "predicted": 4.2305, - "error": 0.33050000000000024 - }, - { - "songno": "1212", - "diff": "oni", - "actual": 1.4, - "predicted": 1.7302, - "error": 0.33020000000000005 - }, - { - "songno": "955", - "diff": "oni", - "actual": 10.5, - "predicted": 10.17, - "error": 0.33000000000000007 - }, - { - "songno": "169", - "diff": "oni", - "actual": 3.7, - "predicted": 4.0291, - "error": 0.3290999999999995 - }, - { - "songno": "1111", - "diff": "oni", - "actual": 4, - "predicted": 4.3279, - "error": 0.32789999999999964 - }, - { - "songno": "497", - "diff": "oni", - "actual": 5.4, - "predicted": 5.7277, - "error": 0.3276999999999992 - }, - { - "songno": "124", - "diff": "oni", - "actual": 5.5, - "predicted": 5.8267, - "error": 0.32669999999999977 - }, - { - "songno": "530", - "diff": "oni", - "actual": 4.7, - "predicted": 4.3734, - "error": 0.3266 - }, - { - "songno": "1318", - "diff": "ura", - "actual": 10.7, - "predicted": 11.0261, - "error": 0.3261000000000003 - }, - { - "songno": "716", - "diff": "oni", - "actual": 6.8, - "predicted": 6.4753, - "error": 0.3247 - }, - { - "songno": "447", - "diff": "ura", - "actual": 6.2, - "predicted": 6.5241, - "error": 0.3240999999999996 - }, - { - "songno": "1053", - "diff": "ura", - "actual": 9.9, - "predicted": 9.5762, - "error": 0.3238000000000003 - }, - { - "songno": "677", - "diff": "oni", - "actual": 8.9, - "predicted": 9.2236, - "error": 0.323599999999999 - }, - { - "songno": "868", - "diff": "oni", - "actual": 9.5, - "predicted": 9.8233, - "error": 0.3232999999999997 - }, - { - "songno": "242", - "diff": "oni", - "actual": 2.9, - "predicted": 2.5767, - "error": 0.3232999999999997 - }, - { - "songno": "389", - "diff": "oni", - "actual": 6.2, - "predicted": 5.8782, - "error": 0.32180000000000053 - }, - { - "songno": "221", - "diff": "oni", - "actual": 6.7, - "predicted": 6.3782, - "error": 0.32180000000000053 - }, - { - "songno": "1001", - "diff": "oni", - "actual": 3.6, - "predicted": 3.9213, - "error": 0.3212999999999999 - }, - { - "songno": "482", - "diff": "oni", - "actual": 1.8, - "predicted": 1.4789, - "error": 0.32109999999999994 - }, - { - "songno": "1109", - "diff": "oni", - "actual": 6.8, - "predicted": 6.4792, - "error": 0.3208000000000002 - }, - { - "songno": "1077", - "diff": "oni", - "actual": 3.9, - "predicted": 3.5793, - "error": 0.3207 - }, - { - "songno": "1135", - "diff": "oni", - "actual": 3, - "predicted": 3.32, - "error": 0.31999999999999984 - }, - { - "songno": "441", - "diff": "oni", - "actual": 10.7, - "predicted": 11.0184, - "error": 0.31840000000000046 - }, - { - "songno": "776", - "diff": "oni", - "actual": 7.7, - "predicted": 7.3834, - "error": 0.3166000000000002 - }, - { - "songno": "546", - "diff": "oni", - "actual": 6.8, - "predicted": 7.1154, - "error": 0.31540000000000035 - }, - { - "songno": "41", - "diff": "oni", - "actual": 6.2, - "predicted": 6.5147, - "error": 0.3147000000000002 - }, - { - "songno": "963", - "diff": "oni", - "actual": 7.1, - "predicted": 6.7855, - "error": 0.3144999999999998 - }, - { - "songno": "1052", - "diff": "ura", - "actual": 11.1, - "predicted": 10.7855, - "error": 0.3144999999999989 - }, - { - "songno": "640", - "diff": "oni", - "actual": 8.5, - "predicted": 8.1856, - "error": 0.3143999999999991 - }, - { - "songno": "269", - "diff": "oni", - "actual": 9.5, - "predicted": 9.1868, - "error": 0.31320000000000014 - }, - { - "songno": "539", - "diff": "oni", - "actual": 6, - "predicted": 5.6871, - "error": 0.31289999999999996 - }, - { - "songno": "375", - "diff": "oni", - "actual": 8.7, - "predicted": 9.0126, - "error": 0.31260000000000154 - }, - { - "songno": "301", - "diff": "oni", - "actual": 2.8, - "predicted": 3.1126, - "error": 0.3126000000000002 - }, - { - "songno": "541", - "diff": "oni", - "actual": 5.6, - "predicted": 5.9125, - "error": 0.3125 - }, - { - "songno": "243", - "diff": "oni", - "actual": 11, - "predicted": 10.6876, - "error": 0.31240000000000023 - }, - { - "songno": "1312", - "diff": "oni", - "actual": 2.9, - "predicted": 3.21, - "error": 0.31000000000000005 - }, - { - "songno": "898", - "diff": "oni", - "actual": 3.8, - "predicted": 3.49, - "error": 0.3099999999999996 - }, - { - "songno": "977", - "diff": "oni", - "actual": 8.8, - "predicted": 8.4901, - "error": 0.30990000000000073 - }, - { - "songno": "15", - "diff": "ura", - "actual": 10.2, - "predicted": 10.5098, - "error": 0.30980000000000096 - }, - { - "songno": "1033", - "diff": "ura", - "actual": 8.6, - "predicted": 8.9096, - "error": 0.30959999999999965 - }, - { - "songno": "745", - "diff": "oni", - "actual": 10.4, - "predicted": 10.7093, - "error": 0.30930000000000035 - }, - { - "songno": "1174", - "diff": "oni", - "actual": 6.2, - "predicted": 6.5077, - "error": 0.30769999999999964 - }, - { - "songno": "1465", - "diff": "ura", - "actual": 11, - "predicted": 10.6929, - "error": 0.30710000000000015 - }, - { - "songno": "266", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6068, - "error": 0.30679999999999996 - }, - { - "songno": "911", - "diff": "ura", - "actual": 7.1, - "predicted": 7.4062, - "error": 0.30620000000000047 - }, - { - "songno": "704", - "diff": "oni", - "actual": 6.3, - "predicted": 6.6048, - "error": 0.3048000000000002 - }, - { - "songno": "1334", - "diff": "oni", - "actual": 4, - "predicted": 4.3044, - "error": 0.3044000000000002 - }, - { - "songno": "83", - "diff": "oni", - "actual": 6, - "predicted": 6.3027, - "error": 0.30269999999999975 - }, - { - "songno": "1366", - "diff": "ura", - "actual": 8, - "predicted": 7.6978, - "error": 0.3022 - }, - { - "songno": "317", - "diff": "oni", - "actual": 2.9, - "predicted": 3.2018, - "error": 0.30180000000000007 - }, - { - "songno": "947", - "diff": "oni", - "actual": 5.2, - "predicted": 5.5006, - "error": 0.3006000000000002 - }, - { - "songno": "626", - "diff": "ura", - "actual": 10.4, - "predicted": 10.1005, - "error": 0.2995000000000001 - }, - { - "songno": "951", - "diff": "ura", - "actual": 7.8, - "predicted": 8.0976, - "error": 0.2976000000000001 - }, - { - "songno": "760", - "diff": "oni", - "actual": 10.8, - "predicted": 10.5029, - "error": 0.29710000000000036 - }, - { - "songno": "942", - "diff": "oni", - "actual": 5.5, - "predicted": 5.2029, - "error": 0.29710000000000036 - }, - { - "songno": "1432", - "diff": "oni", - "actual": 10, - "predicted": 9.7033, - "error": 0.2966999999999995 - }, - { - "songno": "882", - "diff": "ura", - "actual": 5.4, - "predicted": 5.1047, - "error": 0.2953000000000001 - }, - { - "songno": "1400", - "diff": "oni", - "actual": 1.6, - "predicted": 1.3052, - "error": 0.2948000000000002 - }, - { - "songno": "555", - "diff": "oni", - "actual": 11.3, - "predicted": 11.0054, - "error": 0.29460000000000086 - }, - { - "songno": "1031", - "diff": "ura", - "actual": 10.5, - "predicted": 10.7945, - "error": 0.2944999999999993 - }, - { - "songno": "1379", - "diff": "oni", - "actual": 9.5, - "predicted": 9.7944, - "error": 0.29439999999999955 - }, - { - "songno": "761", - "diff": "oni", - "actual": 10.4, - "predicted": 10.1073, - "error": 0.29269999999999996 - }, - { - "songno": "1465", - "diff": "oni", - "actual": 6.8, - "predicted": 6.5081, - "error": 0.29190000000000005 - }, - { - "songno": "321", - "diff": "oni", - "actual": 6.3, - "predicted": 6.0081, - "error": 0.29190000000000005 - }, - { - "songno": "1219", - "diff": "ura", - "actual": 7.3, - "predicted": 7.5917, - "error": 0.2917000000000005 - }, - { - "songno": "372", - "diff": "oni", - "actual": 6.4, - "predicted": 6.1091, - "error": 0.2909000000000006 - }, - { - "songno": "951", - "diff": "oni", - "actual": 4.2, - "predicted": 3.9099, - "error": 0.29010000000000025 - }, - { - "songno": "823", - "diff": "oni", - "actual": 5.8, - "predicted": 6.0886, - "error": 0.28859999999999975 - }, - { - "songno": "1304", - "diff": "ura", - "actual": 8.1, - "predicted": 8.3884, - "error": 0.2884000000000011 - }, - { - "songno": "526", - "diff": "oni", - "actual": 7.9, - "predicted": 8.1881, - "error": 0.2881 - }, - { - "songno": "219", - "diff": "oni", - "actual": 5.1, - "predicted": 4.8124, - "error": 0.2875999999999994 - }, - { - "songno": "118", - "diff": "ura", - "actual": 8.4, - "predicted": 8.6875, - "error": 0.28749999999999964 - }, - { - "songno": "889", - "diff": "oni", - "actual": 4.2, - "predicted": 4.4872, - "error": 0.28719999999999946 - }, - { - "songno": "187", - "diff": "oni", - "actual": 7.4, - "predicted": 7.6871, - "error": 0.2870999999999997 - }, - { - "songno": "89", - "diff": "oni", - "actual": 7.6, - "predicted": 7.8862, - "error": 0.2862 - }, - { - "songno": "927", - "diff": "oni", - "actual": 8.9, - "predicted": 9.1862, - "error": 0.2861999999999991 - }, - { - "songno": "700", - "diff": "oni", - "actual": 9.6, - "predicted": 9.8861, - "error": 0.28610000000000113 - }, - { - "songno": "577", - "diff": "oni", - "actual": 9.8, - "predicted": 9.5144, - "error": 0.2856000000000005 - }, - { - "songno": "1357", - "diff": "ura", - "actual": 8.4, - "predicted": 8.1156, - "error": 0.28439999999999976 - }, - { - "songno": "454", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4164, - "error": 0.28359999999999985 - }, - { - "songno": "1148", - "diff": "ura", - "actual": 6.1, - "predicted": 6.3821, - "error": 0.2821000000000007 - }, - { - "songno": "402", - "diff": "oni", - "actual": 6.5, - "predicted": 6.7819, - "error": 0.28190000000000026 - }, - { - "songno": "1366", - "diff": "oni", - "actual": 4.7, - "predicted": 4.4193, - "error": 0.2807000000000004 - }, - { - "songno": "1419", - "diff": "ura", - "actual": 11.9, - "predicted": 11.6195, - "error": 0.28049999999999997 - }, - { - "songno": "139", - "diff": "ura", - "actual": 7.2, - "predicted": 6.9196, - "error": 0.2804000000000002 - }, - { - "songno": "1162", - "diff": "oni", - "actual": 3.9, - "predicted": 3.6197, - "error": 0.2803 - }, - { - "songno": "859", - "diff": "oni", - "actual": 10.2, - "predicted": 9.921, - "error": 0.2789999999999999 - }, - { - "songno": "1329", - "diff": "oni", - "actual": 7.4, - "predicted": 7.1214, - "error": 0.27859999999999996 - }, - { - "songno": "302", - "diff": "oni", - "actual": 6.1, - "predicted": 6.3784, - "error": 0.2784000000000004 - }, - { - "songno": "85", - "diff": "oni", - "actual": 7.4, - "predicted": 7.1216, - "error": 0.2784000000000004 - }, - { - "songno": "92", - "diff": "ura", - "actual": 5.5, - "predicted": 5.2219, - "error": 0.27810000000000024 - }, - { - "songno": "1170", - "diff": "oni", - "actual": 6.9, - "predicted": 6.6219, - "error": 0.27810000000000024 - }, - { - "songno": "849", - "diff": "oni", - "actual": 11.9, - "predicted": 11.6226, - "error": 0.2774000000000001 - }, - { - "songno": "387", - "diff": "oni", - "actual": 4.9, - "predicted": 4.6235, - "error": 0.2765000000000004 - }, - { - "songno": "1188", - "diff": "oni", - "actual": 3.9, - "predicted": 3.6236, - "error": 0.27639999999999976 - }, - { - "songno": "1246", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4237, - "error": 0.2763 - }, - { - "songno": "222", - "diff": "ura", - "actual": 9, - "predicted": 9.2754, - "error": 0.2753999999999994 - }, - { - "songno": "525", - "diff": "oni", - "actual": 6.6, - "predicted": 6.8748, - "error": 0.27479999999999993 - }, - { - "songno": "981", - "diff": "ura", - "actual": 7.1, - "predicted": 7.3741, - "error": 0.2741000000000007 - }, - { - "songno": "771", - "diff": "ura", - "actual": 7.2, - "predicted": 7.4736, - "error": 0.27360000000000007 - }, - { - "songno": "906", - "diff": "oni", - "actual": 9.1, - "predicted": 8.8267, - "error": 0.273299999999999 - }, - { - "songno": "771", - "diff": "oni", - "actual": 3.3, - "predicted": 3.5732, - "error": 0.2732000000000001 - }, - { - "songno": "1100", - "diff": "oni", - "actual": 3.9, - "predicted": 4.1724, - "error": 0.27239999999999975 - }, - { - "songno": "1322", - "diff": "oni", - "actual": 7.9, - "predicted": 8.172, - "error": 0.27200000000000024 - }, - { - "songno": "721", - "diff": "ura", - "actual": 11.7, - "predicted": 11.4284, - "error": 0.2715999999999994 - }, - { - "songno": "438", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4289, - "error": 0.27110000000000056 - }, - { - "songno": "1329", - "diff": "ura", - "actual": 11.2, - "predicted": 10.9294, - "error": 0.27059999999999995 - }, - { - "songno": "1110", - "diff": "oni", - "actual": 1.7, - "predicted": 1.9704, - "error": 0.2704 - }, - { - "songno": "467", - "diff": "oni", - "actual": 2.9, - "predicted": 3.1699, - "error": 0.26990000000000025 - }, - { - "songno": "1419", - "diff": "oni", - "actual": 9.8, - "predicted": 10.0698, - "error": 0.26980000000000004 - }, - { - "songno": "1106", - "diff": "oni", - "actual": 9.1, - "predicted": 9.3684, - "error": 0.26839999999999975 - }, - { - "songno": "114", - "diff": "oni", - "actual": 7, - "predicted": 6.7318, - "error": 0.2682000000000002 - }, - { - "songno": "154", - "diff": "ura", - "actual": 9.8, - "predicted": 9.5318, - "error": 0.2682000000000002 - }, - { - "songno": "548", - "diff": "oni", - "actual": 6.5, - "predicted": 6.232, - "error": 0.2679999999999998 - }, - { - "songno": "178", - "diff": "ura", - "actual": 8.7, - "predicted": 8.432, - "error": 0.2679999999999989 - }, - { - "songno": "181", - "diff": "ura", - "actual": 10.2, - "predicted": 10.467, - "error": 0.26700000000000124 - }, - { - "songno": "675", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4669, - "error": 0.2668999999999997 - }, - { - "songno": "580", - "diff": "oni", - "actual": 3.6, - "predicted": 3.8667, - "error": 0.2666999999999997 - }, - { - "songno": "1271", - "diff": "oni", - "actual": 4.8, - "predicted": 4.5336, - "error": 0.26639999999999997 - }, - { - "songno": "166", - "diff": "oni", - "actual": 6, - "predicted": 5.7348, - "error": 0.2652000000000001 - }, - { - "songno": "1360", - "diff": "oni", - "actual": 5.2, - "predicted": 4.9348, - "error": 0.2652000000000001 - }, - { - "songno": "909", - "diff": "oni", - "actual": 4.8, - "predicted": 4.5353, - "error": 0.2646999999999995 - }, - { - "songno": "551", - "diff": "ura", - "actual": 6.8, - "predicted": 7.0641, - "error": 0.2641 - }, - { - "songno": "1401", - "diff": "oni", - "actual": 7.4, - "predicted": 7.1365, - "error": 0.2635000000000005 - }, - { - "songno": "1237", - "diff": "oni", - "actual": 4.5, - "predicted": 4.7631, - "error": 0.26309999999999967 - }, - { - "songno": "614", - "diff": "oni", - "actual": 6.4, - "predicted": 6.137, - "error": 0.2630000000000008 - }, - { - "songno": "793", - "diff": "ura", - "actual": 6.2, - "predicted": 5.9378, - "error": 0.2622 - }, - { - "songno": "722", - "diff": "oni", - "actual": 9.4, - "predicted": 9.1379, - "error": 0.2621000000000002 - }, - { - "songno": "1067", - "diff": "oni", - "actual": 9.2, - "predicted": 9.462, - "error": 0.26200000000000045 - }, - { - "songno": "446", - "diff": "oni", - "actual": 6.8, - "predicted": 7.0613, - "error": 0.2613000000000003 - }, - { - "songno": "338", - "diff": "oni", - "actual": 9.3, - "predicted": 9.0393, - "error": 0.26069999999999993 - }, - { - "songno": "186", - "diff": "oni", - "actual": 10.9, - "predicted": 10.6393, - "error": 0.26069999999999993 - }, - { - "songno": "1452", - "diff": "ura", - "actual": 9, - "predicted": 8.7395, - "error": 0.2605000000000004 - }, - { - "songno": "1295", - "diff": "ura", - "actual": 6, - "predicted": 6.26, - "error": 0.2599999999999998 - }, - { - "songno": "480", - "diff": "oni", - "actual": 3.2, - "predicted": 3.4592, - "error": 0.2591999999999999 - }, - { - "songno": "504", - "diff": "ura", - "actual": 8.9, - "predicted": 9.1591, - "error": 0.2591000000000001 - }, - { - "songno": "178", - "diff": "oni", - "actual": 6.8, - "predicted": 7.0581, - "error": 0.2580999999999998 - }, - { - "songno": "914", - "diff": "oni", - "actual": 8.7, - "predicted": 8.9579, - "error": 0.25790000000000113 - }, - { - "songno": "698", - "diff": "oni", - "actual": 9.9, - "predicted": 10.1578, - "error": 0.2577999999999996 - }, - { - "songno": "253", - "diff": "oni", - "actual": 5, - "predicted": 5.2568, - "error": 0.25680000000000014 - }, - { - "songno": "990", - "diff": "oni", - "actual": 10.9, - "predicted": 10.6442, - "error": 0.2558000000000007 - }, - { - "songno": "1168", - "diff": "oni", - "actual": 4, - "predicted": 3.7445, - "error": 0.25550000000000006 - }, - { - "songno": "322", - "diff": "oni", - "actual": 7, - "predicted": 7.2555, - "error": 0.2554999999999996 - }, - { - "songno": "437", - "diff": "oni", - "actual": 2.6, - "predicted": 2.854, - "error": 0.254 - }, - { - "songno": "275", - "diff": "oni", - "actual": 3.5, - "predicted": 3.2476, - "error": 0.2524000000000002 - }, - { - "songno": "94", - "diff": "oni", - "actual": 9.9, - "predicted": 10.1522, - "error": 0.2522000000000002 - }, - { - "songno": "451", - "diff": "oni", - "actual": 7.2, - "predicted": 7.4514, - "error": 0.2513999999999994 - }, - { - "songno": "868", - "diff": "ura", - "actual": 11.3, - "predicted": 11.5514, - "error": 0.2513999999999985 - }, - { - "songno": "1133", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4496, - "error": 0.25039999999999996 - }, - { - "songno": "304", - "diff": "oni", - "actual": 5.6, - "predicted": 5.3497, - "error": 0.2502999999999993 - }, - { - "songno": "1220", - "diff": "ura", - "actual": 9.4, - "predicted": 9.6501, - "error": 0.25009999999999977 - }, - { - "songno": "1043", - "diff": "ura", - "actual": 12, - "predicted": 11.7508, - "error": 0.2492000000000001 - }, - { - "songno": "702", - "diff": "oni", - "actual": 10.6, - "predicted": 10.3511, - "error": 0.248899999999999 - }, - { - "songno": "645", - "diff": "ura", - "actual": 7.6, - "predicted": 7.8478, - "error": 0.2478000000000007 - }, - { - "songno": "879", - "diff": "oni", - "actual": 8.5, - "predicted": 8.2523, - "error": 0.24770000000000003 - }, - { - "songno": "215", - "diff": "oni", - "actual": 6.6, - "predicted": 6.8477, - "error": 0.24770000000000003 - }, - { - "songno": "821", - "diff": "oni", - "actual": 6.5, - "predicted": 6.2534, - "error": 0.24659999999999993 - }, - { - "songno": "95", - "diff": "ura", - "actual": 9.6, - "predicted": 9.8465, - "error": 0.24650000000000105 - }, - { - "songno": "482", - "diff": "ura", - "actual": 5.2, - "predicted": 5.4465, - "error": 0.24650000000000016 - }, - { - "songno": "1242", - "diff": "oni", - "actual": 5.8, - "predicted": 6.0463, - "error": 0.24629999999999974 - }, - { - "songno": "925", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4456, - "error": 0.2455999999999996 - }, - { - "songno": "159", - "diff": "oni", - "actual": 7.5, - "predicted": 7.7446, - "error": 0.24460000000000015 - }, - { - "songno": "1120", - "diff": "oni", - "actual": 8.2, - "predicted": 7.9556, - "error": 0.24439999999999973 - }, - { - "songno": "1200", - "diff": "oni", - "actual": 2.4, - "predicted": 2.6442, - "error": 0.2442000000000002 - }, - { - "songno": "1004", - "diff": "oni", - "actual": 5.9, - "predicted": 5.6563, - "error": 0.24370000000000047 - }, - { - "songno": "958", - "diff": "oni", - "actual": 8.4, - "predicted": 8.6434, - "error": 0.2433999999999994 - }, - { - "songno": "576", - "diff": "oni", - "actual": 8, - "predicted": 8.243, - "error": 0.24300000000000033 - }, - { - "songno": "537", - "diff": "oni", - "actual": 6.9, - "predicted": 7.1427, - "error": 0.24269999999999925 - }, - { - "songno": "207", - "diff": "oni", - "actual": 4.2, - "predicted": 4.4423, - "error": 0.24230000000000018 - }, - { - "songno": "384", - "diff": "oni", - "actual": 2.1, - "predicted": 2.3417, - "error": 0.2416999999999998 - }, - { - "songno": "1363", - "diff": "oni", - "actual": 4.4, - "predicted": 4.1588, - "error": 0.24120000000000008 - }, - { - "songno": "317", - "diff": "ura", - "actual": 5.8, - "predicted": 5.5589, - "error": 0.24109999999999943 - }, - { - "songno": "33", - "diff": "oni", - "actual": 10.5, - "predicted": 10.259, - "error": 0.24099999999999966 - }, - { - "songno": "52", - "diff": "oni", - "actual": 5.2, - "predicted": 5.44, - "error": 0.2400000000000002 - }, - { - "songno": "964", - "diff": "oni", - "actual": 2.4, - "predicted": 2.6399, - "error": 0.2399 - }, - { - "songno": "284", - "diff": "oni", - "actual": 3.8, - "predicted": 4.0398, - "error": 0.2397999999999998 - }, - { - "songno": "1323", - "diff": "oni", - "actual": 6.8, - "predicted": 6.5608, - "error": 0.2391999999999994 - }, - { - "songno": "1286", - "diff": "oni", - "actual": 2.2, - "predicted": 1.9615, - "error": 0.23850000000000016 - }, - { - "songno": "1154", - "diff": "oni", - "actual": 8.9, - "predicted": 9.1381, - "error": 0.2380999999999993 - }, - { - "songno": "364", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4369, - "error": 0.23689999999999944 - }, - { - "songno": "681", - "diff": "ura", - "actual": 9.1, - "predicted": 9.3366, - "error": 0.23660000000000103 - }, - { - "songno": "80", - "diff": "ura", - "actual": 9.5, - "predicted": 9.2637, - "error": 0.23629999999999995 - }, - { - "songno": "1456", - "diff": "oni", - "actual": 6.1, - "predicted": 5.8642, - "error": 0.23579999999999934 - }, - { - "songno": "1423", - "diff": "oni", - "actual": 4.7, - "predicted": 4.9356, - "error": 0.2355999999999998 - }, - { - "songno": "277", - "diff": "oni", - "actual": 3.2, - "predicted": 2.9646, - "error": 0.23540000000000028 - }, - { - "songno": "74", - "diff": "oni", - "actual": 4.5, - "predicted": 4.7354, - "error": 0.23540000000000028 - }, - { - "songno": "954", - "diff": "ura", - "actual": 11.8, - "predicted": 11.5652, - "error": 0.2347999999999999 - }, - { - "songno": "181", - "diff": "oni", - "actual": 8.5, - "predicted": 8.7346, - "error": 0.23460000000000036 - }, - { - "songno": "422", - "diff": "oni", - "actual": 3, - "predicted": 3.2346, - "error": 0.23459999999999992 - }, - { - "songno": "1012", - "diff": "oni", - "actual": 9.7, - "predicted": 9.4656, - "error": 0.23439999999999905 - }, - { - "songno": "1116", - "diff": "ura", - "actual": 7.8, - "predicted": 7.5657, - "error": 0.23430000000000017 - }, - { - "songno": "1251", - "diff": "ura", - "actual": 7, - "predicted": 7.2341, - "error": 0.23409999999999975 - }, - { - "songno": "1211", - "diff": "oni", - "actual": 6, - "predicted": 5.7659, - "error": 0.23409999999999975 - }, - { - "songno": "1196", - "diff": "oni", - "actual": 6.6, - "predicted": 6.8339, - "error": 0.23390000000000022 - }, - { - "songno": "765", - "diff": "ura", - "actual": 12, - "predicted": 11.7663, - "error": 0.23370000000000068 - }, - { - "songno": "388", - "diff": "oni", - "actual": 9, - "predicted": 8.7664, - "error": 0.23359999999999914 - }, - { - "songno": "626", - "diff": "oni", - "actual": 6.3, - "predicted": 6.5331, - "error": 0.2331000000000003 - }, - { - "songno": "676", - "diff": "oni", - "actual": 2.6, - "predicted": 2.8325, - "error": 0.23249999999999993 - }, - { - "songno": "203", - "diff": "oni", - "actual": 4.4, - "predicted": 4.168, - "error": 0.2320000000000002 - }, - { - "songno": "741", - "diff": "oni", - "actual": 3.5, - "predicted": 3.732, - "error": 0.2320000000000002 - }, - { - "songno": "161", - "diff": "oni", - "actual": 3, - "predicted": 2.7687, - "error": 0.23130000000000006 - }, - { - "songno": "587", - "diff": "oni", - "actual": 5.2, - "predicted": 4.9688, - "error": 0.2312000000000003 - }, - { - "songno": "621", - "diff": "oni", - "actual": 8.2, - "predicted": 8.4301, - "error": 0.2301000000000002 - }, - { - "songno": "648", - "diff": "ura", - "actual": 7.1, - "predicted": 7.3298, - "error": 0.2298 - }, - { - "songno": "183", - "diff": "oni", - "actual": 7, - "predicted": 7.2295, - "error": 0.22949999999999982 - }, - { - "songno": "1129", - "diff": "oni", - "actual": 9.8, - "predicted": 9.5709, - "error": 0.22910000000000075 - }, - { - "songno": "1403", - "diff": "oni", - "actual": 5, - "predicted": 4.7716, - "error": 0.22839999999999971 - }, - { - "songno": "757", - "diff": "oni", - "actual": 10.5, - "predicted": 10.7281, - "error": 0.22809999999999953 - }, - { - "songno": "313", - "diff": "oni", - "actual": 2.6, - "predicted": 2.3723, - "error": 0.2277 - }, - { - "songno": "1436", - "diff": "oni", - "actual": 6, - "predicted": 6.2275, - "error": 0.22750000000000004 - }, - { - "songno": "1172", - "diff": "oni", - "actual": 11.9, - "predicted": 11.6726, - "error": 0.22740000000000116 - }, - { - "songno": "163", - "diff": "ura", - "actual": 7.2, - "predicted": 6.9726, - "error": 0.22740000000000027 - }, - { - "songno": "784", - "diff": "oni", - "actual": 9.3, - "predicted": 9.5266, - "error": 0.22659999999999947 - }, - { - "songno": "858", - "diff": "oni", - "actual": 11.1, - "predicted": 10.8739, - "error": 0.22609999999999886 - }, - { - "songno": "735", - "diff": "ura", - "actual": 9.7, - "predicted": 9.9258, - "error": 0.22580000000000133 - }, - { - "songno": "495", - "diff": "oni", - "actual": 10.1, - "predicted": 9.8748, - "error": 0.22519999999999918 - }, - { - "songno": "795", - "diff": "oni", - "actual": 2.6, - "predicted": 2.8247, - "error": 0.2246999999999999 - }, - { - "songno": "1062", - "diff": "oni", - "actual": 5, - "predicted": 4.7762, - "error": 0.22379999999999978 - }, - { - "songno": "236", - "diff": "oni", - "actual": 2.2, - "predicted": 2.4232, - "error": 0.22319999999999984 - }, - { - "songno": "1206", - "diff": "oni", - "actual": 7.6, - "predicted": 7.8231, - "error": 0.22310000000000052 - }, - { - "songno": "1080", - "diff": "oni", - "actual": 8, - "predicted": 7.7769, - "error": 0.22309999999999963 - }, - { - "songno": "1327", - "diff": "oni", - "actual": 3.7, - "predicted": 3.4777, - "error": 0.22230000000000016 - }, - { - "songno": "594", - "diff": "oni", - "actual": 9.7, - "predicted": 9.4777, - "error": 0.22229999999999883 - }, - { - "songno": "547", - "diff": "oni", - "actual": 3.8, - "predicted": 3.5778, - "error": 0.22219999999999995 - }, - { - "songno": "156", - "diff": "ura", - "actual": 8.9, - "predicted": 8.6783, - "error": 0.22170000000000023 - }, - { - "songno": "413", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4789, - "error": 0.22109999999999985 - }, - { - "songno": "1233", - "diff": "oni", - "actual": 4.1, - "predicted": 3.879, - "error": 0.22099999999999964 - }, - { - "songno": "922", - "diff": "oni", - "actual": 5.7, - "predicted": 5.4792, - "error": 0.22080000000000055 - }, - { - "songno": "579", - "diff": "oni", - "actual": 7.2, - "predicted": 7.4199, - "error": 0.21989999999999998 - }, - { - "songno": "751", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4802, - "error": 0.21980000000000022 - }, - { - "songno": "344", - "diff": "oni", - "actual": 5.2, - "predicted": 4.9804, - "error": 0.2195999999999998 - }, - { - "songno": "1237", - "diff": "ura", - "actual": 10.3, - "predicted": 10.0818, - "error": 0.21820000000000128 - }, - { - "songno": "107", - "diff": "oni", - "actual": 4.6, - "predicted": 4.3822, - "error": 0.21779999999999955 - }, - { - "songno": "1336", - "diff": "oni", - "actual": 2.9, - "predicted": 3.1177, - "error": 0.21770000000000023 - }, - { - "songno": "725", - "diff": "oni", - "actual": 4.4, - "predicted": 4.1827, - "error": 0.21730000000000071 - }, - { - "songno": "277", - "diff": "ura", - "actual": 4.9, - "predicted": 5.1165, - "error": 0.21649999999999991 - }, - { - "songno": "164", - "diff": "ura", - "actual": 9.8, - "predicted": 9.5835, - "error": 0.21649999999999991 - }, - { - "songno": "542", - "diff": "oni", - "actual": 4.2, - "predicted": 4.4162, - "error": 0.21619999999999973 - }, - { - "songno": "116", - "diff": "oni", - "actual": 2.8, - "predicted": 3.0155, - "error": 0.21550000000000002 - }, - { - "songno": "493", - "diff": "ura", - "actual": 9.4, - "predicted": 9.1848, - "error": 0.21520000000000117 - }, - { - "songno": "1226", - "diff": "oni", - "actual": 3.5, - "predicted": 3.7144, - "error": 0.21439999999999992 - }, - { - "songno": "350", - "diff": "oni", - "actual": 5.5, - "predicted": 5.2861, - "error": 0.21389999999999976 - }, - { - "songno": "1319", - "diff": "oni", - "actual": 8.8, - "predicted": 9.0139, - "error": 0.21389999999999887 - }, - { - "songno": "1390", - "diff": "ura", - "actual": 7.7, - "predicted": 7.9127, - "error": 0.2126999999999999 - }, - { - "songno": "1261", - "diff": "oni", - "actual": 7.3, - "predicted": 7.5126, - "error": 0.21260000000000012 - }, - { - "songno": "527", - "diff": "oni", - "actual": 7.3, - "predicted": 7.5126, - "error": 0.21260000000000012 - }, - { - "songno": "1295", - "diff": "oni", - "actual": 1.3, - "predicted": 1.5118, - "error": 0.2118 - }, - { - "songno": "1024", - "diff": "oni", - "actual": 3.3, - "predicted": 3.5117, - "error": 0.2117 - }, - { - "songno": "783", - "diff": "oni", - "actual": 6, - "predicted": 6.2109, - "error": 0.21089999999999964 - }, - { - "songno": "1043", - "diff": "oni", - "actual": 9.8, - "predicted": 9.5918, - "error": 0.2082000000000015 - }, - { - "songno": "297", - "diff": "oni", - "actual": 6, - "predicted": 5.7924, - "error": 0.20760000000000023 - }, - { - "songno": "1186", - "diff": "oni", - "actual": 1.9, - "predicted": 1.6928, - "error": 0.20719999999999983 - }, - { - "songno": "428", - "diff": "oni", - "actual": 6.5, - "predicted": 6.7064, - "error": 0.20640000000000036 - }, - { - "songno": "140", - "diff": "ura", - "actual": 7.3, - "predicted": 7.5062, - "error": 0.20619999999999994 - }, - { - "songno": "1402", - "diff": "oni", - "actual": 5.8, - "predicted": 5.594, - "error": 0.20599999999999952 - }, - { - "songno": "644", - "diff": "oni", - "actual": 4.4, - "predicted": 4.6051, - "error": 0.20509999999999984 - }, - { - "songno": "560", - "diff": "oni", - "actual": 6, - "predicted": 6.2045, - "error": 0.20450000000000035 - }, - { - "songno": "1100", - "diff": "ura", - "actual": 9.6, - "predicted": 9.804, - "error": 0.20400000000000063 - }, - { - "songno": "1169", - "diff": "oni", - "actual": 3.6, - "predicted": 3.8039, - "error": 0.20389999999999997 - }, - { - "songno": "544", - "diff": "oni", - "actual": 5.9, - "predicted": 6.1036, - "error": 0.20359999999999978 - }, - { - "songno": "733", - "diff": "oni", - "actual": 3.8, - "predicted": 3.5968, - "error": 0.20319999999999983 - }, - { - "songno": "251", - "diff": "oni", - "actual": 8.1, - "predicted": 7.897, - "error": 0.2029999999999994 - }, - { - "songno": "780", - "diff": "oni", - "actual": 8.7, - "predicted": 8.4978, - "error": 0.2021999999999995 - }, - { - "songno": "1176", - "diff": "oni", - "actual": 4, - "predicted": 4.2021, - "error": 0.20209999999999972 - }, - { - "songno": "298", - "diff": "oni", - "actual": 5.2, - "predicted": 5.4018, - "error": 0.20179999999999954 - }, - { - "songno": "190", - "diff": "oni", - "actual": 7.7, - "predicted": 7.4985, - "error": 0.20150000000000023 - }, - { - "songno": "73", - "diff": "oni", - "actual": 8.5, - "predicted": 8.7013, - "error": 0.2012999999999998 - }, - { - "songno": "96", - "diff": "oni", - "actual": 8.8, - "predicted": 8.5988, - "error": 0.20120000000000005 - }, - { - "songno": "53", - "diff": "oni", - "actual": 6.4, - "predicted": 6.6006, - "error": 0.20059999999999967 - }, - { - "songno": "418", - "diff": "oni", - "actual": 8.2, - "predicted": 7.9999, - "error": 0.20009999999999906 - }, - { - "songno": "1030", - "diff": "oni", - "actual": 4.9, - "predicted": 5.0998, - "error": 0.19979999999999976 - }, - { - "songno": "736", - "diff": "oni", - "actual": 3.5, - "predicted": 3.6997, - "error": 0.1997 - }, - { - "songno": "132", - "diff": "oni", - "actual": 4, - "predicted": 4.1993, - "error": 0.19930000000000003 - }, - { - "songno": "917", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5012, - "error": 0.1988000000000003 - }, - { - "songno": "809", - "diff": "oni", - "actual": 3.4, - "predicted": 3.5986, - "error": 0.1985999999999999 - }, - { - "songno": "440", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6021, - "error": 0.19789999999999974 - }, - { - "songno": "155", - "diff": "oni", - "actual": 7.2, - "predicted": 7.0024, - "error": 0.19760000000000044 - }, - { - "songno": "933", - "diff": "oni", - "actual": 7.1, - "predicted": 7.2973, - "error": 0.19730000000000025 - }, - { - "songno": "194", - "diff": "oni", - "actual": 9.4, - "predicted": 9.5971, - "error": 0.19709999999999894 - }, - { - "songno": "1411", - "diff": "ura", - "actual": 11.2, - "predicted": 11.3969, - "error": 0.19690000000000119 - }, - { - "songno": "850", - "diff": "oni", - "actual": 10.7, - "predicted": 10.5033, - "error": 0.19669999999999987 - }, - { - "songno": "113", - "diff": "oni", - "actual": 5.7, - "predicted": 5.8964, - "error": 0.19639999999999969 - }, - { - "songno": "897", - "diff": "oni", - "actual": 4.5, - "predicted": 4.3044, - "error": 0.19559999999999977 - }, - { - "songno": "430", - "diff": "oni", - "actual": 1.5, - "predicted": 1.3045, - "error": 0.1955 - }, - { - "songno": "782", - "diff": "oni", - "actual": 2.7, - "predicted": 2.8952, - "error": 0.19519999999999982 - }, - { - "songno": "1191", - "diff": "oni", - "actual": 5.4, - "predicted": 5.595, - "error": 0.1949999999999994 - }, - { - "songno": "588", - "diff": "oni", - "actual": 8.2, - "predicted": 8.3939, - "error": 0.19390000000000107 - }, - { - "songno": "91", - "diff": "oni", - "actual": 3.8, - "predicted": 3.6061, - "error": 0.19389999999999974 - }, - { - "songno": "1434", - "diff": "oni", - "actual": 9.7, - "predicted": 9.8938, - "error": 0.1938000000000013 - }, - { - "songno": "1385", - "diff": "oni", - "actual": 3.2, - "predicted": 3.0067, - "error": 0.19330000000000025 - }, - { - "songno": "705", - "diff": "oni", - "actual": 5.4, - "predicted": 5.2068, - "error": 0.19320000000000004 - }, - { - "songno": "1309", - "diff": "ura", - "actual": 10.5, - "predicted": 10.3074, - "error": 0.19260000000000055 - }, - { - "songno": "937", - "diff": "oni", - "actual": 5.1, - "predicted": 5.2923, - "error": 0.19230000000000036 - }, - { - "songno": "1103", - "diff": "oni", - "actual": 4.8, - "predicted": 4.6077, - "error": 0.19229999999999947 - }, - { - "songno": "834", - "diff": "oni", - "actual": 9.7, - "predicted": 9.508, - "error": 0.19200000000000017 - }, - { - "songno": "717", - "diff": "oni", - "actual": 5.6, - "predicted": 5.7917, - "error": 0.19169999999999998 - }, - { - "songno": "689", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4913, - "error": 0.19130000000000003 - }, - { - "songno": "13", - "diff": "oni", - "actual": 7.2, - "predicted": 7.3912, - "error": 0.19120000000000026 - }, - { - "songno": "1209", - "diff": "oni", - "actual": 4.1, - "predicted": 4.2912, - "error": 0.19120000000000026 - }, - { - "songno": "568", - "diff": "oni", - "actual": 7.5, - "predicted": 7.3088, - "error": 0.19120000000000026 - }, - { - "songno": "518", - "diff": "oni", - "actual": 11.4, - "predicted": 11.5908, - "error": 0.19079999999999941 - }, - { - "songno": "1166", - "diff": "oni", - "actual": 7.8, - "predicted": 7.6101, - "error": 0.18989999999999974 - }, - { - "songno": "857", - "diff": "oni", - "actual": 7.7, - "predicted": 7.8898, - "error": 0.18979999999999997 - }, - { - "songno": "896", - "diff": "oni", - "actual": 11.1, - "predicted": 10.9103, - "error": 0.1897000000000002 - }, - { - "songno": "826", - "diff": "oni", - "actual": 10.5, - "predicted": 10.3115, - "error": 0.18849999999999945 - }, - { - "songno": "501", - "diff": "oni", - "actual": 7.6, - "predicted": 7.788, - "error": 0.1880000000000006 - }, - { - "songno": "1431", - "diff": "oni", - "actual": 7.8, - "predicted": 7.6124, - "error": 0.18759999999999977 - }, - { - "songno": "150", - "diff": "ura", - "actual": 9.4, - "predicted": 9.5868, - "error": 0.18679999999999986 - }, - { - "songno": "1027", - "diff": "ura", - "actual": 9.1, - "predicted": 9.2858, - "error": 0.1858000000000004 - }, - { - "songno": "1026", - "diff": "oni", - "actual": 4.1, - "predicted": 4.2856, - "error": 0.1856 - }, - { - "songno": "997", - "diff": "ura", - "actual": 7.3, - "predicted": 7.4853, - "error": 0.1852999999999998 - }, - { - "songno": "892", - "diff": "oni", - "actual": 10.9, - "predicted": 10.7151, - "error": 0.18490000000000073 - }, - { - "songno": "296", - "diff": "oni", - "actual": 6.2, - "predicted": 6.0152, - "error": 0.18480000000000008 - }, - { - "songno": "1059", - "diff": "oni", - "actual": 5.6, - "predicted": 5.4155, - "error": 0.1844999999999999 - }, - { - "songno": "763", - "diff": "oni", - "actual": 10.8, - "predicted": 10.6156, - "error": 0.18440000000000012 - }, - { - "songno": "1277", - "diff": "oni", - "actual": 5, - "predicted": 4.8157, - "error": 0.18430000000000035 - }, - { - "songno": "695", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4837, - "error": 0.18369999999999997 - }, - { - "songno": "1377", - "diff": "oni", - "actual": 4.9, - "predicted": 5.0832, - "error": 0.18319999999999936 - }, - { - "songno": "856", - "diff": "oni", - "actual": 8.8, - "predicted": 8.9829, - "error": 0.18290000000000006 - }, - { - "songno": "361", - "diff": "ura", - "actual": 8.6, - "predicted": 8.4175, - "error": 0.18249999999999922 - }, - { - "songno": "1086", - "diff": "oni", - "actual": 10.6, - "predicted": 10.418, - "error": 0.18200000000000038 - }, - { - "songno": "882", - "diff": "oni", - "actual": 1.9, - "predicted": 2.0814, - "error": 0.1814 - }, - { - "songno": "95", - "diff": "oni", - "actual": 7.3, - "predicted": 7.481, - "error": 0.18100000000000005 - }, - { - "songno": "1274", - "diff": "ura", - "actual": 8.2, - "predicted": 8.019, - "error": 0.18099999999999916 - }, - { - "songno": "945", - "diff": "oni", - "actual": 5, - "predicted": 4.8193, - "error": 0.18069999999999986 - }, - { - "songno": "187", - "diff": "ura", - "actual": 7.4, - "predicted": 7.5807, - "error": 0.18069999999999986 - }, - { - "songno": "982", - "diff": "oni", - "actual": 9.9, - "predicted": 10.08, - "error": 0.17999999999999972 - }, - { - "songno": "1276", - "diff": "ura", - "actual": 11.4, - "predicted": 11.2202, - "error": 0.17980000000000018 - }, - { - "songno": "1338", - "diff": "oni", - "actual": 10, - "predicted": 9.8206, - "error": 0.17939999999999934 - }, - { - "songno": "1218", - "diff": "oni", - "actual": 1.4, - "predicted": 1.5791, - "error": 0.17910000000000004 - }, - { - "songno": "80", - "diff": "oni", - "actual": 8.4, - "predicted": 8.2213, - "error": 0.17870000000000097 - }, - { - "songno": "720", - "diff": "oni", - "actual": 9.6, - "predicted": 9.7787, - "error": 0.17870000000000097 - }, - { - "songno": "417", - "diff": "ura", - "actual": 6.9, - "predicted": 7.0777, - "error": 0.17769999999999975 - }, - { - "songno": "1337", - "diff": "oni", - "actual": 3.9, - "predicted": 4.077, - "error": 0.17700000000000005 - }, - { - "songno": "1066", - "diff": "oni", - "actual": 11, - "predicted": 10.8231, - "error": 0.17689999999999984 - }, - { - "songno": "689", - "diff": "ura", - "actual": 8.9, - "predicted": 9.0764, - "error": 0.17639999999999922 - }, - { - "songno": "910", - "diff": "oni", - "actual": 7.3, - "predicted": 7.475, - "error": 0.17499999999999982 - }, - { - "songno": "285", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4749, - "error": 0.17490000000000006 - }, - { - "songno": "1165", - "diff": "oni", - "actual": 7.9, - "predicted": 7.7252, - "error": 0.1748000000000003 - }, - { - "songno": "314", - "diff": "oni", - "actual": 1.3, - "predicted": 1.1252, - "error": 0.17480000000000007 - }, - { - "songno": "1412", - "diff": "ura", - "actual": 10, - "predicted": 10.1743, - "error": 0.17430000000000057 - }, - { - "songno": "1414", - "diff": "oni", - "actual": 5.2, - "predicted": 5.0258, - "error": 0.1741999999999999 - }, - { - "songno": "241", - "diff": "oni", - "actual": 2.6, - "predicted": 2.7737, - "error": 0.17369999999999974 - }, - { - "songno": "844", - "diff": "oni", - "actual": 8.1, - "predicted": 7.9263, - "error": 0.1736999999999993 - }, - { - "songno": "1424", - "diff": "oni", - "actual": 6.4, - "predicted": 6.2275, - "error": 0.17250000000000032 - }, - { - "songno": "1197", - "diff": "oni", - "actual": 4.5, - "predicted": 4.6724, - "error": 0.17239999999999966 - }, - { - "songno": "1034", - "diff": "oni", - "actual": 5.9, - "predicted": 6.0715, - "error": 0.17149999999999999 - }, - { - "songno": "1084", - "diff": "ura", - "actual": 6.7, - "predicted": 6.5287, - "error": 0.17130000000000045 - }, - { - "songno": "717", - "diff": "ura", - "actual": 7.4, - "predicted": 7.2296, - "error": 0.17040000000000077 - }, - { - "songno": "811", - "diff": "ura", - "actual": 8.2, - "predicted": 8.3704, - "error": 0.17040000000000077 - }, - { - "songno": "1339", - "diff": "oni", - "actual": 4.5, - "predicted": 4.6703, - "error": 0.17030000000000012 - }, - { - "songno": "1067", - "diff": "ura", - "actual": 8.2, - "predicted": 8.0303, - "error": 0.16969999999999885 - }, - { - "songno": "1081", - "diff": "oni", - "actual": 5.4, - "predicted": 5.5693, - "error": 0.16929999999999978 - }, - { - "songno": "306", - "diff": "oni", - "actual": 6.3, - "predicted": 6.4692, - "error": 0.16920000000000002 - }, - { - "songno": "886", - "diff": "oni", - "actual": 1.9, - "predicted": 2.0685, - "error": 0.16849999999999987 - }, - { - "songno": "628", - "diff": "oni", - "actual": 10.7, - "predicted": 10.5322, - "error": 0.16779999999999973 - }, - { - "songno": "1082", - "diff": "oni", - "actual": 5, - "predicted": 5.1677, - "error": 0.16769999999999996 - }, - { - "songno": "646", - "diff": "oni", - "actual": 2.3, - "predicted": 2.466, - "error": 0.16600000000000037 - }, - { - "songno": "135", - "diff": "ura", - "actual": 5.8, - "predicted": 5.6341, - "error": 0.16589999999999971 - }, - { - "songno": "1202", - "diff": "oni", - "actual": 4.8, - "predicted": 4.6343, - "error": 0.16570000000000018 - }, - { - "songno": "1232", - "diff": "oni", - "actual": 7.2, - "predicted": 7.0348, - "error": 0.16520000000000046 - }, - { - "songno": "1257", - "diff": "oni", - "actual": 9, - "predicted": 9.1651, - "error": 0.1651000000000007 - }, - { - "songno": "450", - "diff": "oni", - "actual": 9, - "predicted": 9.1651, - "error": 0.1651000000000007 - }, - { - "songno": "1048", - "diff": "ura", - "actual": 11.6, - "predicted": 11.765, - "error": 0.16500000000000092 - }, - { - "songno": "218", - "diff": "oni", - "actual": 7.7, - "predicted": 7.5354, - "error": 0.16460000000000008 - }, - { - "songno": "1146", - "diff": "ura", - "actual": 9.7, - "predicted": 9.8639, - "error": 0.16389999999999993 - }, - { - "songno": "1264", - "diff": "ura", - "actual": 9.7, - "predicted": 9.8639, - "error": 0.16389999999999993 - }, - { - "songno": "960", - "diff": "ura", - "actual": 11.8, - "predicted": 11.6367, - "error": 0.16330000000000133 - }, - { - "songno": "785", - "diff": "oni", - "actual": 8.5, - "predicted": 8.3369, - "error": 0.16310000000000002 - }, - { - "songno": "1380", - "diff": "oni", - "actual": 6.9, - "predicted": 6.7375, - "error": 0.16250000000000053 - }, - { - "songno": "856", - "diff": "ura", - "actual": 11.3, - "predicted": 11.1396, - "error": 0.160400000000001 - }, - { - "songno": "1108", - "diff": "oni", - "actual": 10.4, - "predicted": 10.2406, - "error": 0.15939999999999976 - }, - { - "songno": "866", - "diff": "ura", - "actual": 11, - "predicted": 11.1593, - "error": 0.1593 - }, - { - "songno": "1267", - "diff": "oni", - "actual": 4.7, - "predicted": 4.859, - "error": 0.1589999999999998 - }, - { - "songno": "773", - "diff": "oni", - "actual": 4, - "predicted": 4.1586, - "error": 0.15859999999999985 - }, - { - "songno": "160", - "diff": "oni", - "actual": 5.3, - "predicted": 5.4583, - "error": 0.15830000000000055 - }, - { - "songno": "553", - "diff": "ura", - "actual": 10.5, - "predicted": 10.3418, - "error": 0.15820000000000078 - }, - { - "songno": "1168", - "diff": "ura", - "actual": 8.4, - "predicted": 8.5577, - "error": 0.15770000000000017 - }, - { - "songno": "184", - "diff": "oni", - "actual": 5.2, - "predicted": 5.0423, - "error": 0.15770000000000017 - }, - { - "songno": "22", - "diff": "oni", - "actual": 5.5, - "predicted": 5.3424, - "error": 0.1576000000000004 - }, - { - "songno": "515", - "diff": "oni", - "actual": 3.5, - "predicted": 3.6575, - "error": 0.1575000000000002 - }, - { - "songno": "517", - "diff": "oni", - "actual": 8.2, - "predicted": 8.3572, - "error": 0.15720000000000134 - }, - { - "songno": "470", - "diff": "oni", - "actual": 5, - "predicted": 4.8442, - "error": 0.15580000000000016 - }, - { - "songno": "672", - "diff": "oni", - "actual": 2.4, - "predicted": 2.5556, - "error": 0.15560000000000018 - }, - { - "songno": "596", - "diff": "oni", - "actual": 6.8, - "predicted": 6.6454, - "error": 0.1545999999999994 - }, - { - "songno": "1097", - "diff": "oni", - "actual": 5.1, - "predicted": 4.9456, - "error": 0.15439999999999987 - }, - { - "songno": "1032", - "diff": "ura", - "actual": 11.6, - "predicted": 11.4462, - "error": 0.15380000000000038 - }, - { - "songno": "1371", - "diff": "oni", - "actual": 6.5, - "predicted": 6.6533, - "error": 0.15329999999999977 - }, - { - "songno": "1388", - "diff": "ura", - "actual": 6.9, - "predicted": 6.7474, - "error": 0.1526000000000005 - }, - { - "songno": "248", - "diff": "ura", - "actual": 8.7, - "predicted": 8.5474, - "error": 0.15259999999999962 - }, - { - "songno": "131", - "diff": "oni", - "actual": 8.2, - "predicted": 8.3525, - "error": 0.15249999999999986 - }, - { - "songno": "984", - "diff": "oni", - "actual": 4.2, - "predicted": 4.0476, - "error": 0.1524000000000001 - }, - { - "songno": "670", - "diff": "oni", - "actual": 8.1, - "predicted": 7.9476, - "error": 0.1523999999999992 - }, - { - "songno": "311", - "diff": "oni", - "actual": 7, - "predicted": 6.8485, - "error": 0.1515000000000004 - }, - { - "songno": "554", - "diff": "oni", - "actual": 5.9, - "predicted": 6.0513, - "error": 0.1513 - }, - { - "songno": "551", - "diff": "oni", - "actual": 4.5, - "predicted": 4.6512, - "error": 0.15120000000000022 - }, - { - "songno": "411", - "diff": "oni", - "actual": 4.8, - "predicted": 4.951, - "error": 0.1509999999999998 - }, - { - "songno": "949", - "diff": "oni", - "actual": 5.1, - "predicted": 4.9492, - "error": 0.15079999999999938 - }, - { - "songno": "335", - "diff": "oni", - "actual": 9.4, - "predicted": 9.2504, - "error": 0.1495999999999995 - }, - { - "songno": "1358", - "diff": "oni", - "actual": 3.8, - "predicted": 3.9492, - "error": 0.1492 - }, - { - "songno": "481", - "diff": "oni", - "actual": 5.2, - "predicted": 5.3492, - "error": 0.14919999999999956 - }, - { - "songno": "815", - "diff": "oni", - "actual": 8.9, - "predicted": 9.0491, - "error": 0.1490999999999989 - }, - { - "songno": "425", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5512, - "error": 0.1488000000000005 - }, - { - "songno": "1283", - "diff": "oni", - "actual": 2.2, - "predicted": 2.0512, - "error": 0.14880000000000004 - }, - { - "songno": "1310", - "diff": "ura", - "actual": 11.1, - "predicted": 11.2476, - "error": 0.14760000000000062 - }, - { - "songno": "133", - "diff": "oni", - "actual": 4.8, - "predicted": 4.9474, - "error": 0.1474000000000002 - }, - { - "songno": "1236", - "diff": "oni", - "actual": 11.2, - "predicted": 11.3468, - "error": 0.1468000000000007 - }, - { - "songno": "1308", - "diff": "oni", - "actual": 8.4, - "predicted": 8.5468, - "error": 0.14679999999999893 - }, - { - "songno": "1240", - "diff": "ura", - "actual": 7.8, - "predicted": 7.9466, - "error": 0.14660000000000029 - }, - { - "songno": "499", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6537, - "error": 0.1463000000000001 - }, - { - "songno": "1350", - "diff": "oni", - "actual": 11.9, - "predicted": 11.7543, - "error": 0.14569999999999972 - }, - { - "songno": "1218", - "diff": "ura", - "actual": 6.6, - "predicted": 6.4544, - "error": 0.14559999999999995 - }, - { - "songno": "627", - "diff": "oni", - "actual": 11.5, - "predicted": 11.3553, - "error": 0.14470000000000027 - }, - { - "songno": "1220", - "diff": "oni", - "actual": 3.6, - "predicted": 3.7446, - "error": 0.14460000000000006 - }, - { - "songno": "167", - "diff": "oni", - "actual": 7.1, - "predicted": 7.2441, - "error": 0.14410000000000078 - }, - { - "songno": "646", - "diff": "ura", - "actual": 6.6, - "predicted": 6.744, - "error": 0.14400000000000013 - }, - { - "songno": "814", - "diff": "oni", - "actual": 10.2, - "predicted": 10.0565, - "error": 0.14349999999999952 - }, - { - "songno": "1406", - "diff": "oni", - "actual": 11.4, - "predicted": 11.2566, - "error": 0.14339999999999975 - }, - { - "songno": "309", - "diff": "ura", - "actual": 10.3, - "predicted": 10.1568, - "error": 0.14320000000000022 - }, - { - "songno": "1302", - "diff": "oni", - "actual": 1.4, - "predicted": 1.5432, - "error": 0.1432 - }, - { - "songno": "443", - "diff": "oni", - "actual": 4.4, - "predicted": 4.5428, - "error": 0.14279999999999937 - }, - { - "songno": "360", - "diff": "oni", - "actual": 9.2, - "predicted": 9.3425, - "error": 0.14250000000000007 - }, - { - "songno": "1433", - "diff": "oni", - "actual": 5.5, - "predicted": 5.3578, - "error": 0.14219999999999988 - }, - { - "songno": "574", - "diff": "oni", - "actual": 8.6, - "predicted": 8.459, - "error": 0.14100000000000001 - }, - { - "songno": "999", - "diff": "oni", - "actual": 10.8, - "predicted": 10.6595, - "error": 0.14050000000000118 - }, - { - "songno": "1158", - "diff": "oni", - "actual": 8.6, - "predicted": 8.4596, - "error": 0.14039999999999964 - }, - { - "songno": "1029", - "diff": "oni", - "actual": 1.6, - "predicted": 1.7401, - "error": 0.1400999999999999 - }, - { - "songno": "726", - "diff": "oni", - "actual": 4.6, - "predicted": 4.4601, - "error": 0.1398999999999999 - }, - { - "songno": "1161", - "diff": "oni", - "actual": 3.6, - "predicted": 3.7398, - "error": 0.1397999999999997 - }, - { - "songno": "1351", - "diff": "oni", - "actual": 9.3, - "predicted": 9.1603, - "error": 0.13970000000000127 - }, - { - "songno": "881", - "diff": "oni", - "actual": 7.7, - "predicted": 7.5603, - "error": 0.13970000000000038 - }, - { - "songno": "265", - "diff": "oni", - "actual": 10.2, - "predicted": 10.3394, - "error": 0.1394000000000002 - }, - { - "songno": "212", - "diff": "oni", - "actual": 5.7, - "predicted": 5.5606, - "error": 0.1394000000000002 - }, - { - "songno": "635", - "diff": "oni", - "actual": 8.5, - "predicted": 8.3608, - "error": 0.13920000000000066 - }, - { - "songno": "1080", - "diff": "ura", - "actual": 11.5, - "predicted": 11.3615, - "error": 0.1385000000000005 - }, - { - "songno": "397", - "diff": "oni", - "actual": 7.9, - "predicted": 7.7619, - "error": 0.13810000000000056 - }, - { - "songno": "310", - "diff": "oni", - "actual": 6.2, - "predicted": 6.338, - "error": 0.1379999999999999 - }, - { - "songno": "1228", - "diff": "oni", - "actual": 4.1, - "predicted": 4.2379, - "error": 0.13790000000000013 - }, - { - "songno": "750", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6621, - "error": 0.13790000000000013 - }, - { - "songno": "1260", - "diff": "oni", - "actual": 8.8, - "predicted": 8.6621, - "error": 0.13790000000000013 - }, - { - "songno": "765", - "diff": "oni", - "actual": 11.9, - "predicted": 11.7623, - "error": 0.1377000000000006 - }, - { - "songno": "288", - "diff": "oni", - "actual": 8.2, - "predicted": 8.0627, - "error": 0.13729999999999976 - }, - { - "songno": "87", - "diff": "oni", - "actual": 5.6, - "predicted": 5.4635, - "error": 0.13649999999999984 - }, - { - "songno": "267", - "diff": "oni", - "actual": 3.6, - "predicted": 3.7362, - "error": 0.1362000000000001 - }, - { - "songno": "1343", - "diff": "ura", - "actual": 7, - "predicted": 7.136, - "error": 0.13600000000000012 - }, - { - "songno": "90", - "diff": "oni", - "actual": 5.6, - "predicted": 5.7357, - "error": 0.13569999999999993 - }, - { - "songno": "946", - "diff": "oni", - "actual": 3.4, - "predicted": 3.2646, - "error": 0.13539999999999974 - }, - { - "songno": "585", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5646, - "error": 0.13539999999999974 - }, - { - "songno": "1055", - "diff": "oni", - "actual": 1.8, - "predicted": 1.9352, - "error": 0.1352 - }, - { - "songno": "730", - "diff": "ura", - "actual": 8.5, - "predicted": 8.3658, - "error": 0.13419999999999987 - }, - { - "songno": "929", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4337, - "error": 0.13369999999999926 - }, - { - "songno": "247", - "diff": "oni", - "actual": 5.5, - "predicted": 5.6335, - "error": 0.13349999999999973 - }, - { - "songno": "420", - "diff": "oni", - "actual": 4.3, - "predicted": 4.4322, - "error": 0.1322000000000001 - }, - { - "songno": "1345", - "diff": "oni", - "actual": 4.5, - "predicted": 4.3685, - "error": 0.13149999999999995 - }, - { - "songno": "975", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4314, - "error": 0.1313999999999993 - }, - { - "songno": "1116", - "diff": "oni", - "actual": 4.2, - "predicted": 4.0689, - "error": 0.1311 - }, - { - "songno": "890", - "diff": "oni", - "actual": 11, - "predicted": 10.8692, - "error": 0.1308000000000007 - }, - { - "songno": "650", - "diff": "oni", - "actual": 6.4, - "predicted": 6.2695, - "error": 0.1305000000000005 - }, - { - "songno": "1405", - "diff": "oni", - "actual": 10.3, - "predicted": 10.1698, - "error": 0.13020000000000032 - }, - { - "songno": "1019", - "diff": "oni", - "actual": 5.5, - "predicted": 5.6301, - "error": 0.13009999999999966 - }, - { - "songno": "214", - "diff": "oni", - "actual": 7.8, - "predicted": 7.9289, - "error": 0.1288999999999998 - }, - { - "songno": "583", - "diff": "oni", - "actual": 2.9, - "predicted": 2.7712, - "error": 0.12880000000000003 - }, - { - "songno": "774", - "diff": "oni", - "actual": 9, - "predicted": 9.1282, - "error": 0.12819999999999965 - }, - { - "songno": "905", - "diff": "oni", - "actual": 10.1, - "predicted": 10.228, - "error": 0.1280000000000001 - }, - { - "songno": "994", - "diff": "oni", - "actual": 8.3, - "predicted": 8.4279, - "error": 0.12789999999999857 - }, - { - "songno": "200", - "diff": "oni", - "actual": 2.3, - "predicted": 2.1725, - "error": 0.12749999999999995 - }, - { - "songno": "1201", - "diff": "ura", - "actual": 9.9, - "predicted": 9.7729, - "error": 0.12710000000000043 - }, - { - "songno": "779", - "diff": "oni", - "actual": 8.5, - "predicted": 8.6269, - "error": 0.12689999999999912 - }, - { - "songno": "283", - "diff": "ura", - "actual": 11.1, - "predicted": 11.2267, - "error": 0.1266999999999996 - }, - { - "songno": "609", - "diff": "oni", - "actual": 5.8, - "predicted": 5.9262, - "error": 0.12619999999999987 - }, - { - "songno": "869", - "diff": "oni", - "actual": 10.9, - "predicted": 11.0262, - "error": 0.12619999999999898 - }, - { - "songno": "1451", - "diff": "oni", - "actual": 5.1, - "predicted": 5.2258, - "error": 0.1257999999999999 - }, - { - "songno": "736", - "diff": "ura", - "actual": 9.5, - "predicted": 9.3744, - "error": 0.12560000000000038 - }, - { - "songno": "1241", - "diff": "oni", - "actual": 5, - "predicted": 5.1251, - "error": 0.12509999999999977 - }, - { - "songno": "346", - "diff": "oni", - "actual": 6.4, - "predicted": 6.525, - "error": 0.125 - }, - { - "songno": "286", - "diff": "oni", - "actual": 10, - "predicted": 9.8751, - "error": 0.12490000000000023 - }, - { - "songno": "1145", - "diff": "ura", - "actual": 11.3, - "predicted": 11.1757, - "error": 0.12429999999999986 - }, - { - "songno": "817", - "diff": "oni", - "actual": 8, - "predicted": 8.1242, - "error": 0.12420000000000009 - }, - { - "songno": "458", - "diff": "oni", - "actual": 6.3, - "predicted": 6.4223, - "error": 0.12230000000000008 - }, - { - "songno": "1455", - "diff": "ura", - "actual": 8.5, - "predicted": 8.6221, - "error": 0.12209999999999965 - }, - { - "songno": "27", - "diff": "oni", - "actual": 3.1, - "predicted": 3.2217, - "error": 0.1216999999999997 - }, - { - "songno": "177", - "diff": "oni", - "actual": 2, - "predicted": 1.8791, - "error": 0.12090000000000001 - }, - { - "songno": "1281", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3203, - "error": 0.12029999999999985 - }, - { - "songno": "1331", - "diff": "oni", - "actual": 2.2, - "predicted": 2.3203, - "error": 0.12029999999999985 - }, - { - "songno": "39", - "diff": "oni", - "actual": 5.6, - "predicted": 5.7202, - "error": 0.12020000000000053 - }, - { - "songno": "1104", - "diff": "oni", - "actual": 9.7, - "predicted": 9.8198, - "error": 0.11980000000000146 - }, - { - "songno": "1427", - "diff": "oni", - "actual": 7.6, - "predicted": 7.7194, - "error": 0.11940000000000062 - }, - { - "songno": "1049", - "diff": "oni", - "actual": 9.5, - "predicted": 9.6194, - "error": 0.11940000000000062 - }, - { - "songno": "200", - "diff": "ura", - "actual": 6.7, - "predicted": 6.8192, - "error": 0.1192000000000002 - }, - { - "songno": "141", - "diff": "oni", - "actual": 4.6, - "predicted": 4.4814, - "error": 0.11859999999999982 - }, - { - "songno": "1258", - "diff": "oni", - "actual": 4.6, - "predicted": 4.4814, - "error": 0.11859999999999982 - }, - { - "songno": "385", - "diff": "oni", - "actual": 5.1, - "predicted": 5.2183, - "error": 0.11830000000000052 - }, - { - "songno": "414", - "diff": "ura", - "actual": 8.4, - "predicted": 8.2817, - "error": 0.11829999999999963 - }, - { - "songno": "1216", - "diff": "oni", - "actual": 10, - "predicted": 9.882, - "error": 0.11800000000000033 - }, - { - "songno": "653", - "diff": "oni", - "actual": 6.7, - "predicted": 6.5822, - "error": 0.1177999999999999 - }, - { - "songno": "305", - "diff": "oni", - "actual": 3.7, - "predicted": 3.5827, - "error": 0.11730000000000018 - }, - { - "songno": "1325", - "diff": "oni", - "actual": 8.2, - "predicted": 8.316, - "error": 0.11600000000000144 - }, - { - "songno": "534", - "diff": "oni", - "actual": 4, - "predicted": 4.1159, - "error": 0.11589999999999989 - }, - { - "songno": "1129", - "diff": "ura", - "actual": 11.8, - "predicted": 11.6844, - "error": 0.11560000000000059 - }, - { - "songno": "781", - "diff": "oni", - "actual": 10.1, - "predicted": 10.214, - "error": 0.11400000000000077 - }, - { - "songno": "261", - "diff": "oni", - "actual": 7.4, - "predicted": 7.2864, - "error": 0.11359999999999992 - }, - { - "songno": "1415", - "diff": "oni", - "actual": 3.6, - "predicted": 3.4871, - "error": 0.11290000000000022 - }, - { - "songno": "500", - "diff": "ura", - "actual": 8.5, - "predicted": 8.3874, - "error": 0.11260000000000048 - }, - { - "songno": "842", - "diff": "ura", - "actual": 4.9, - "predicted": 4.7883, - "error": 0.1117000000000008 - }, - { - "songno": "1121", - "diff": "oni", - "actual": 8.6, - "predicted": 8.7115, - "error": 0.11149999999999949 - }, - { - "songno": "1422", - "diff": "oni", - "actual": 5.6, - "predicted": 5.4891, - "error": 0.1109 - }, - { - "songno": "45", - "diff": "ura", - "actual": 8.4, - "predicted": 8.5108, - "error": 0.11079999999999934 - }, - { - "songno": "180", - "diff": "oni", - "actual": 7.3, - "predicted": 7.1896, - "error": 0.11039999999999939 - }, - { - "songno": "1311", - "diff": "ura", - "actual": 10.3, - "predicted": 10.1897, - "error": 0.11030000000000051 - }, - { - "songno": "436", - "diff": "oni", - "actual": 3.7, - "predicted": 3.8102, - "error": 0.11019999999999985 - }, - { - "songno": "535", - "diff": "oni", - "actual": 3.7, - "predicted": 3.8102, - "error": 0.11019999999999985 - }, - { - "songno": "309", - "diff": "oni", - "actual": 6.6, - "predicted": 6.7095, - "error": 0.1095000000000006 - }, - { - "songno": "573", - "diff": "oni", - "actual": 8, - "predicted": 7.8907, - "error": 0.10930000000000017 - }, - { - "songno": "1248", - "diff": "oni", - "actual": 6.6, - "predicted": 6.4908, - "error": 0.10919999999999952 - }, - { - "songno": "723", - "diff": "oni", - "actual": 9.9, - "predicted": 10.0091, - "error": 0.10909999999999975 - }, - { - "songno": "1310", - "diff": "oni", - "actual": 6, - "predicted": 5.8909, - "error": 0.10909999999999975 - }, - { - "songno": "432", - "diff": "oni", - "actual": 6.6, - "predicted": 6.7089, - "error": 0.10890000000000022 - }, - { - "songno": "1072", - "diff": "ura", - "actual": 11.7, - "predicted": 11.8078, - "error": 0.107800000000001 - }, - { - "songno": "300", - "diff": "oni", - "actual": 4, - "predicted": 4.1071, - "error": 0.10709999999999997 - }, - { - "songno": "1392", - "diff": "ura", - "actual": 11.6, - "predicted": 11.4929, - "error": 0.10709999999999908 - }, - { - "songno": "819", - "diff": "oni", - "actual": 8.6, - "predicted": 8.4932, - "error": 0.10679999999999978 - }, - { - "songno": "1365", - "diff": "oni", - "actual": 7.3, - "predicted": 7.1934, - "error": 0.10660000000000025 - }, - { - "songno": "49", - "diff": "ura", - "actual": 7.3, - "predicted": 7.1936, - "error": 0.10639999999999983 - }, - { - "songno": "605", - "diff": "oni", - "actual": 6.9, - "predicted": 7.0056, - "error": 0.10559999999999992 - }, - { - "songno": "852", - "diff": "oni", - "actual": 6.6, - "predicted": 6.7053, - "error": 0.10530000000000062 - }, - { - "songno": "37", - "diff": "oni", - "actual": 5.3, - "predicted": 5.405, - "error": 0.10500000000000043 - }, - { - "songno": "962", - "diff": "oni", - "actual": 2.6, - "predicted": 2.7048, - "error": 0.1048 - }, - { - "songno": "948", - "diff": "oni", - "actual": 8.3, - "predicted": 8.1962, - "error": 0.10380000000000145 - }, - { - "songno": "32", - "diff": "oni", - "actual": 6.8, - "predicted": 6.9035, - "error": 0.10350000000000037 - }, - { - "songno": "399", - "diff": "ura", - "actual": 8.7, - "predicted": 8.5965, - "error": 0.1034999999999986 - }, - { - "songno": "400", - "diff": "ura", - "actual": 8.7, - "predicted": 8.5965, - "error": 0.1034999999999986 - }, - { - "songno": "511", - "diff": "oni", - "actual": 2.3, - "predicted": 2.4029, - "error": 0.10289999999999999 - }, - { - "songno": "1284", - "diff": "oni", - "actual": 2.3, - "predicted": 2.1975, - "error": 0.10250000000000004 - }, - { - "songno": "1153", - "diff": "oni", - "actual": 1.8, - "predicted": 1.6978, - "error": 0.10220000000000007 - }, - { - "songno": "1231", - "diff": "oni", - "actual": 5.7, - "predicted": 5.8022, - "error": 0.10219999999999985 - }, - { - "songno": "637", - "diff": "oni", - "actual": 6.6, - "predicted": 6.702, - "error": 0.10200000000000031 - }, - { - "songno": "734", - "diff": "oni", - "actual": 8.6, - "predicted": 8.4987, - "error": 0.10130000000000017 - }, - { - "songno": "1148", - "diff": "oni", - "actual": 3.4, - "predicted": 3.2988, - "error": 0.10119999999999996 - }, - { - "songno": "943", - "diff": "oni", - "actual": 9.6, - "predicted": 9.7005, - "error": 0.10050000000000026 - }, - { - "songno": "1275", - "diff": "oni", - "actual": 4.1, - "predicted": 4.2004, - "error": 0.10040000000000049 - }, - { - "songno": "472", - "diff": "oni", - "actual": 5.9, - "predicted": 6.0004, - "error": 0.1003999999999996 - }, - { - "songno": "184", - "diff": "ura", - "actual": 7.2, - "predicted": 7.0998, - "error": 0.10020000000000007 - }, - { - "songno": "431", - "diff": "oni", - "actual": 7.6, - "predicted": 7.7001, - "error": 0.1001000000000003 - }, - { - "songno": "1132", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1996, - "error": 0.09960000000000058 - }, - { - "songno": "294", - "diff": "oni", - "actual": 4.3, - "predicted": 4.3996, - "error": 0.09960000000000058 - }, - { - "songno": "347", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7995, - "error": 0.09949999999999992 - }, - { - "songno": "1131", - "diff": "ura", - "actual": 5.8, - "predicted": 5.8991, - "error": 0.09909999999999997 - }, - { - "songno": "1216", - "diff": "ura", - "actual": 11.6, - "predicted": 11.5021, - "error": 0.09789999999999921 - }, - { - "songno": "1451", - "diff": "ura", - "actual": 6.2, - "predicted": 6.1033, - "error": 0.09670000000000023 - }, - { - "songno": "1395", - "diff": "oni", - "actual": 9, - "predicted": 8.9035, - "error": 0.0965000000000007 - }, - { - "songno": "278", - "diff": "ura", - "actual": 6.5, - "predicted": 6.4037, - "error": 0.09630000000000027 - }, - { - "songno": "911", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7962, - "error": 0.09619999999999962 - }, - { - "songno": "1335", - "diff": "oni", - "actual": 4, - "predicted": 4.0959, - "error": 0.09590000000000032 - }, - { - "songno": "1452", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0042, - "error": 0.09579999999999878 - }, - { - "songno": "1159", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0043, - "error": 0.0956999999999999 - }, - { - "songno": "855", - "diff": "oni", - "actual": 5.7, - "predicted": 5.6059, - "error": 0.09410000000000007 - }, - { - "songno": "786", - "diff": "oni", - "actual": 9.3, - "predicted": 9.206, - "error": 0.0940000000000012 - }, - { - "songno": "26", - "diff": "oni", - "actual": 4.1, - "predicted": 4.1938, - "error": 0.09380000000000077 - }, - { - "songno": "958", - "diff": "ura", - "actual": 10.7, - "predicted": 10.6064, - "error": 0.09359999999999857 - }, - { - "songno": "727", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6066, - "error": 0.09339999999999993 - }, - { - "songno": "571", - "diff": "oni", - "actual": 9.1, - "predicted": 9.0071, - "error": 0.0929000000000002 - }, - { - "songno": "299", - "diff": "oni", - "actual": 3.4, - "predicted": 3.4927, - "error": 0.09270000000000023 - }, - { - "songno": "1035", - "diff": "ura", - "actual": 8.6, - "predicted": 8.6925, - "error": 0.09250000000000114 - }, - { - "songno": "1014", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2075, - "error": 0.09250000000000025 - }, - { - "songno": "1262", - "diff": "oni", - "actual": 4.3, - "predicted": 4.2076, - "error": 0.0923999999999996 - }, - { - "songno": "323", - "diff": "oni", - "actual": 4.3, - "predicted": 4.2076, - "error": 0.0923999999999996 - }, - { - "songno": "1425", - "diff": "oni", - "actual": 7.9, - "predicted": 7.808, - "error": 0.09200000000000053 - }, - { - "songno": "233", - "diff": "oni", - "actual": 3.1, - "predicted": 3.1916, - "error": 0.09160000000000013 - }, - { - "songno": "1229", - "diff": "oni", - "actual": 9.7, - "predicted": 9.7914, - "error": 0.09140000000000015 - }, - { - "songno": "1076", - "diff": "oni", - "actual": 2.1, - "predicted": 2.0088, - "error": 0.09120000000000017 - }, - { - "songno": "157", - "diff": "oni", - "actual": 3.3, - "predicted": 3.2093, - "error": 0.0907 - }, - { - "songno": "693", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6905, - "error": 0.09050000000000047 - }, - { - "songno": "1407", - "diff": "oni", - "actual": 2.8, - "predicted": 2.7097, - "error": 0.0902999999999996 - }, - { - "songno": "86", - "diff": "oni", - "actual": 6.8, - "predicted": 6.8895, - "error": 0.08950000000000014 - }, - { - "songno": "944", - "diff": "oni", - "actual": 7, - "predicted": 6.9111, - "error": 0.08889999999999976 - }, - { - "songno": "992", - "diff": "oni", - "actual": 10.1, - "predicted": 10.0121, - "error": 0.08789999999999942 - }, - { - "songno": "1071", - "diff": "oni", - "actual": 9.6, - "predicted": 9.6876, - "error": 0.08760000000000012 - }, - { - "songno": "741", - "diff": "ura", - "actual": 7.4, - "predicted": 7.4876, - "error": 0.08759999999999923 - }, - { - "songno": "71", - "diff": "oni", - "actual": 6, - "predicted": 5.913, - "error": 0.08699999999999974 - }, - { - "songno": "730", - "diff": "oni", - "actual": 5.1, - "predicted": 5.1869, - "error": 0.08689999999999998 - }, - { - "songno": "1033", - "diff": "oni", - "actual": 4.3, - "predicted": 4.214, - "error": 0.08599999999999941 - }, - { - "songno": "595", - "diff": "oni", - "actual": 9.5, - "predicted": 9.5855, - "error": 0.08549999999999969 - }, - { - "songno": "179", - "diff": "oni", - "actual": 10.2, - "predicted": 10.1145, - "error": 0.08549999999999969 - }, - { - "songno": "1324", - "diff": "oni", - "actual": 9.3, - "predicted": 9.3854, - "error": 0.08539999999999992 - }, - { - "songno": "276", - "diff": "ura", - "actual": 6, - "predicted": 5.9147, - "error": 0.08530000000000015 - }, - { - "songno": "983", - "diff": "oni", - "actual": 8.9, - "predicted": 8.8147, - "error": 0.08530000000000015 - }, - { - "songno": "422", - "diff": "ura", - "actual": 6.2, - "predicted": 6.2847, - "error": 0.08469999999999978 - }, - { - "songno": "226", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6154, - "error": 0.08460000000000001 - }, - { - "songno": "451", - "diff": "ura", - "actual": 11.1, - "predicted": 11.0154, - "error": 0.08460000000000001 - }, - { - "songno": "1341", - "diff": "oni", - "actual": 5.4, - "predicted": 5.484, - "error": 0.08399999999999963 - }, - { - "songno": "70", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1839, - "error": 0.08390000000000075 - }, - { - "songno": "1197", - "diff": "ura", - "actual": 9.8, - "predicted": 9.8837, - "error": 0.08369999999999855 - }, - { - "songno": "1035", - "diff": "oni", - "actual": 5.4, - "predicted": 5.3166, - "error": 0.08340000000000014 - }, - { - "songno": "1012", - "diff": "ura", - "actual": 11.1, - "predicted": 11.0175, - "error": 0.08249999999999957 - }, - { - "songno": "610", - "diff": "oni", - "actual": 6, - "predicted": 5.9178, - "error": 0.08220000000000027 - }, - { - "songno": "1056", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7816, - "error": 0.0815999999999999 - }, - { - "songno": "561", - "diff": "oni", - "actual": 5.5, - "predicted": 5.5809, - "error": 0.08089999999999975 - }, - { - "songno": "108", - "diff": "oni", - "actual": 6.8, - "predicted": 6.8806, - "error": 0.08060000000000045 - }, - { - "songno": "1031", - "diff": "oni", - "actual": 4.7, - "predicted": 4.6199, - "error": 0.08009999999999984 - }, - { - "songno": "127", - "diff": "oni", - "actual": 5.9, - "predicted": 5.9799, - "error": 0.07989999999999942 - }, - { - "songno": "1428", - "diff": "oni", - "actual": 5, - "predicted": 4.9204, - "error": 0.07960000000000012 - }, - { - "songno": "60", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8211, - "error": 0.07889999999999997 - }, - { - "songno": "960", - "diff": "oni", - "actual": 10.1, - "predicted": 10.1787, - "error": 0.07869999999999955 - }, - { - "songno": "778", - "diff": "oni", - "actual": 11, - "predicted": 10.9214, - "error": 0.07859999999999978 - }, - { - "songno": "697", - "diff": "oni", - "actual": 9.9, - "predicted": 9.9786, - "error": 0.07859999999999978 - }, - { - "songno": "549", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3781, - "error": 0.07809999999999917 - }, - { - "songno": "864", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0222, - "error": 0.07779999999999987 - }, - { - "songno": "1018", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8225, - "error": 0.07750000000000057 - }, - { - "songno": "1212", - "diff": "ura", - "actual": 6.7, - "predicted": 6.6239, - "error": 0.07610000000000028 - }, - { - "songno": "1219", - "diff": "oni", - "actual": 4.4, - "predicted": 4.3245, - "error": 0.07550000000000079 - }, - { - "songno": "601", - "diff": "ura", - "actual": 7.4, - "predicted": 7.3252, - "error": 0.07480000000000064 - }, - { - "songno": "1256", - "diff": "oni", - "actual": 6.2, - "predicted": 6.1255, - "error": 0.07450000000000045 - }, - { - "songno": "1115", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8743, - "error": 0.07430000000000003 - }, - { - "songno": "511", - "diff": "ura", - "actual": 6.6, - "predicted": 6.6739, - "error": 0.07390000000000008 - }, - { - "songno": "1287", - "diff": "oni", - "actual": 3.2, - "predicted": 3.2733, - "error": 0.0732999999999997 - }, - { - "songno": "756", - "diff": "oni", - "actual": 10.3, - "predicted": 10.373, - "error": 0.07299999999999862 - }, - { - "songno": "874", - "diff": "oni", - "actual": 7, - "predicted": 7.0729, - "error": 0.07289999999999974 - }, - { - "songno": "1175", - "diff": "oni", - "actual": 4.5, - "predicted": 4.5719, - "error": 0.0719000000000003 - }, - { - "songno": "520", - "diff": "oni", - "actual": 6.7, - "predicted": 6.7718, - "error": 0.07179999999999964 - }, - { - "songno": "565", - "diff": "oni", - "actual": 4.7, - "predicted": 4.7717, - "error": 0.07169999999999987 - }, - { - "songno": "1320", - "diff": "ura", - "actual": 10.7, - "predicted": 10.7708, - "error": 0.0708000000000002 - }, - { - "songno": "471", - "diff": "oni", - "actual": 7.2, - "predicted": 7.2704, - "error": 0.07040000000000024 - }, - { - "songno": "608", - "diff": "oni", - "actual": 3.5, - "predicted": 3.4297, - "error": 0.07030000000000003 - }, - { - "songno": "1131", - "diff": "oni", - "actual": 3.6, - "predicted": 3.6702, - "error": 0.07019999999999982 - }, - { - "songno": "954", - "diff": "oni", - "actual": 9.7, - "predicted": 9.6303, - "error": 0.06969999999999921 - }, - { - "songno": "1308", - "diff": "ura", - "actual": 10.6, - "predicted": 10.5312, - "error": 0.06879999999999953 - }, - { - "songno": "1120", - "diff": "ura", - "actual": 11.4, - "predicted": 11.4683, - "error": 0.06829999999999892 - }, - { - "songno": "1316", - "diff": "oni", - "actual": 2.8, - "predicted": 2.7318, - "error": 0.06820000000000004 - }, - { - "songno": "820", - "diff": "oni", - "actual": 10.7, - "predicted": 10.6319, - "error": 0.06809999999999938 - }, - { - "songno": "283", - "diff": "oni", - "actual": 8.5, - "predicted": 8.432, - "error": 0.06799999999999962 - }, - { - "songno": "593", - "diff": "oni", - "actual": 10.6, - "predicted": 10.5322, - "error": 0.06780000000000008 - }, - { - "songno": "463", - "diff": "oni", - "actual": 11.7, - "predicted": 11.7676, - "error": 0.06760000000000055 - }, - { - "songno": "1235", - "diff": "ura", - "actual": 10.4, - "predicted": 10.3331, - "error": 0.0669000000000004 - }, - { - "songno": "1251", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4334, - "error": 0.06660000000000021 - }, - { - "songno": "570", - "diff": "oni", - "actual": 9, - "predicted": 9.0663, - "error": 0.06630000000000003 - }, - { - "songno": "1345", - "diff": "ura", - "actual": 7.6, - "predicted": 7.534, - "error": 0.06599999999999984 - }, - { - "songno": "213", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0352, - "error": 0.06479999999999997 - }, - { - "songno": "1198", - "diff": "oni", - "actual": 7, - "predicted": 7.0648, - "error": 0.06479999999999997 - }, - { - "songno": "1122", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5647, - "error": 0.0647000000000002 - }, - { - "songno": "310", - "diff": "ura", - "actual": 9.2, - "predicted": 9.1353, - "error": 0.06469999999999843 - }, - { - "songno": "685", - "diff": "oni", - "actual": 10.4, - "predicted": 10.4642, - "error": 0.06419999999999959 - }, - { - "songno": "834", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5638, - "error": 0.06380000000000052 - }, - { - "songno": "1177", - "diff": "oni", - "actual": 3.4, - "predicted": 3.3366, - "error": 0.06340000000000012 - }, - { - "songno": "1124", - "diff": "oni", - "actual": 2.8, - "predicted": 2.7367, - "error": 0.06329999999999991 - }, - { - "songno": "410", - "diff": "oni", - "actual": 6.6, - "predicted": 6.5371, - "error": 0.06289999999999996 - }, - { - "songno": "1317", - "diff": "oni", - "actual": 11.2, - "predicted": 11.2625, - "error": 0.0625 - }, - { - "songno": "402", - "diff": "ura", - "actual": 9.6, - "predicted": 9.6618, - "error": 0.061799999999999855 - }, - { - "songno": "1326", - "diff": "oni", - "actual": 3.7, - "predicted": 3.6388, - "error": 0.061200000000000365 - }, - { - "songno": "746", - "diff": "oni", - "actual": 8, - "predicted": 8.0611, - "error": 0.06109999999999971 - }, - { - "songno": "684", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4394, - "error": 0.06059999999999999 - }, - { - "songno": "48", - "diff": "oni", - "actual": 5.6, - "predicted": 5.5401, - "error": 0.05989999999999984 - }, - { - "songno": "342", - "diff": "oni", - "actual": 4.8, - "predicted": 4.8598, - "error": 0.059800000000000075 - }, - { - "songno": "1227", - "diff": "oni", - "actual": 10.8, - "predicted": 10.7412, - "error": 0.05880000000000152 - }, - { - "songno": "421", - "diff": "oni", - "actual": 7.9, - "predicted": 7.9587, - "error": 0.058699999999999974 - }, - { - "songno": "270", - "diff": "ura", - "actual": 6.9, - "predicted": 6.8417, - "error": 0.05830000000000002 - }, - { - "songno": "1368", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4417, - "error": 0.05830000000000002 - }, - { - "songno": "1042", - "diff": "ura", - "actual": 11.5, - "predicted": 11.557, - "error": 0.057000000000000384 - }, - { - "songno": "469", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4431, - "error": 0.05689999999999973 - }, - { - "songno": "1437", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4432, - "error": 0.05679999999999996 - }, - { - "songno": "536", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6434, - "error": 0.05660000000000043 - }, - { - "songno": "255", - "diff": "oni", - "actual": 5.5, - "predicted": 5.4436, - "error": 0.056400000000000006 - }, - { - "songno": "1013", - "diff": "oni", - "actual": 8.3, - "predicted": 8.2437, - "error": 0.05630000000000024 - }, - { - "songno": "493", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8563, - "error": 0.05630000000000024 - }, - { - "songno": "1301", - "diff": "oni", - "actual": 2, - "predicted": 1.9437, - "error": 0.05630000000000002 - }, - { - "songno": "137", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1559, - "error": 0.05590000000000028 - }, - { - "songno": "1259", - "diff": "oni", - "actual": 6.1, - "predicted": 6.1559, - "error": 0.05590000000000028 - }, - { - "songno": "73", - "diff": "ura", - "actual": 9.1, - "predicted": 9.0441, - "error": 0.055899999999999395 - }, - { - "songno": "519", - "diff": "oni", - "actual": 7.3, - "predicted": 7.2443, - "error": 0.05569999999999986 - }, - { - "songno": "1327", - "diff": "ura", - "actual": 6.4, - "predicted": 6.3445, - "error": 0.05550000000000033 - }, - { - "songno": "671", - "diff": "ura", - "actual": 6.5, - "predicted": 6.5547, - "error": 0.054700000000000415 - }, - { - "songno": "970", - "diff": "oni", - "actual": 7.2, - "predicted": 7.1457, - "error": 0.05430000000000046 - }, - { - "songno": "417", - "diff": "oni", - "actual": 3.3, - "predicted": 3.3539, - "error": 0.05390000000000006 - }, - { - "songno": "959", - "diff": "oni", - "actual": 7, - "predicted": 7.0534, - "error": 0.05339999999999989 - }, - { - "songno": "1367", - "diff": "oni", - "actual": 11.6, - "predicted": 11.5471, - "error": 0.05289999999999928 - }, - { - "songno": "816", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1486, - "error": 0.051399999999999224 - }, - { - "songno": "1256", - "diff": "ura", - "actual": 10.6, - "predicted": 10.549, - "error": 0.051000000000000156 - }, - { - "songno": "76", - "diff": "ura", - "actual": 7.4, - "predicted": 7.3498, - "error": 0.050200000000000244 - }, - { - "songno": "336", - "diff": "oni", - "actual": 11.8, - "predicted": 11.7501, - "error": 0.049900000000000944 - }, - { - "songno": "237", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3498, - "error": 0.04980000000000029 - }, - { - "songno": "163", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8492, - "error": 0.04919999999999991 - }, - { - "songno": "1376", - "diff": "oni", - "actual": 1.9, - "predicted": 1.9491, - "error": 0.049100000000000144 - }, - { - "songno": "580", - "diff": "ura", - "actual": 6.9, - "predicted": 6.949, - "error": 0.04899999999999949 - }, - { - "songno": "513", - "diff": "oni", - "actual": 8.4, - "predicted": 8.4488, - "error": 0.048799999999999955 - }, - { - "songno": "1319", - "diff": "ura", - "actual": 11.5, - "predicted": 11.5488, - "error": 0.048799999999999955 - }, - { - "songno": "315", - "diff": "oni", - "actual": 3.2, - "predicted": 3.2484, - "error": 0.0484 - }, - { - "songno": "552", - "diff": "oni", - "actual": 6.5, - "predicted": 6.5484, - "error": 0.0484 - }, - { - "songno": "700", - "diff": "ura", - "actual": 11, - "predicted": 10.9518, - "error": 0.048199999999999577 - }, - { - "songno": "491", - "diff": "oni", - "actual": 8.2, - "predicted": 8.2475, - "error": 0.04750000000000121 - }, - { - "songno": "1217", - "diff": "oni", - "actual": 4.7, - "predicted": 4.747, - "error": 0.04699999999999971 - }, - { - "songno": "1369", - "diff": "oni", - "actual": 11.8, - "predicted": 11.8466, - "error": 0.04659999999999975 - }, - { - "songno": "816", - "diff": "ura", - "actual": 11.2, - "predicted": 11.1538, - "error": 0.04619999999999891 - }, - { - "songno": "973", - "diff": "oni", - "actual": 4, - "predicted": 3.954, - "error": 0.04599999999999982 - }, - { - "songno": "139", - "diff": "oni", - "actual": 4.8, - "predicted": 4.7543, - "error": 0.045700000000000074 - }, - { - "songno": "1203", - "diff": "oni", - "actual": 4.9, - "predicted": 4.8555, - "error": 0.044500000000000206 - }, - { - "songno": "995", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4443, - "error": 0.044299999999999784 - }, - { - "songno": "520", - "diff": "ura", - "actual": 8.9, - "predicted": 8.8561, - "error": 0.043900000000000716 - }, - { - "songno": "804", - "diff": "ura", - "actual": 9.4, - "predicted": 9.4438, - "error": 0.04379999999999917 - }, - { - "songno": "707", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4434, - "error": 0.04339999999999922 - }, - { - "songno": "1180", - "diff": "oni", - "actual": 6.5, - "predicted": 6.542, - "error": 0.041999999999999815 - }, - { - "songno": "1048", - "diff": "oni", - "actual": 9.4, - "predicted": 9.359, - "error": 0.04100000000000037 - }, - { - "songno": "1449", - "diff": "oni", - "actual": 8.9, - "predicted": 8.8593, - "error": 0.04070000000000107 - }, - { - "songno": "1042", - "diff": "oni", - "actual": 10.1, - "predicted": 10.0597, - "error": 0.040300000000000225 - }, - { - "songno": "1144", - "diff": "oni", - "actual": 2.7, - "predicted": 2.66, - "error": 0.040000000000000036 - }, - { - "songno": "1179", - "diff": "oni", - "actual": 5, - "predicted": 5.0399, - "error": 0.03990000000000027 - }, - { - "songno": "1050", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2387, - "error": 0.0387000000000004 - }, - { - "songno": "645", - "diff": "oni", - "actual": 6.7, - "predicted": 6.6614, - "error": 0.038599999999999746 - }, - { - "songno": "735", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4385, - "error": 0.03849999999999998 - }, - { - "songno": "1328", - "diff": "oni", - "actual": 9.9, - "predicted": 9.8617, - "error": 0.03829999999999956 - }, - { - "songno": "1247", - "diff": "oni", - "actual": 10, - "predicted": 9.9618, - "error": 0.03819999999999979 - }, - { - "songno": "1346", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7619, - "error": 0.03810000000000002 - }, - { - "songno": "770", - "diff": "oni", - "actual": 6.9, - "predicted": 6.8622, - "error": 0.03780000000000072 - }, - { - "songno": "396", - "diff": "oni", - "actual": 5.8, - "predicted": 5.8368, - "error": 0.03680000000000039 - }, - { - "songno": "908", - "diff": "oni", - "actual": 6, - "predicted": 5.9635, - "error": 0.0365000000000002 - }, - { - "songno": "31", - "diff": "oni", - "actual": 8.1, - "predicted": 8.1363, - "error": 0.036300000000000665 - }, - { - "songno": "403", - "diff": "ura", - "actual": 6.4, - "predicted": 6.3641, - "error": 0.03590000000000071 - }, - { - "songno": "1149", - "diff": "oni", - "actual": 3.8, - "predicted": 3.8356, - "error": 0.035600000000000076 - }, - { - "songno": "386", - "diff": "oni", - "actual": 7, - "predicted": 7.0353, - "error": 0.03530000000000033 - }, - { - "songno": "1", - "diff": "oni", - "actual": 9, - "predicted": 8.9649, - "error": 0.03509999999999991 - }, - { - "songno": "500", - "diff": "oni", - "actual": 4.5, - "predicted": 4.4658, - "error": 0.03420000000000023 - }, - { - "songno": "775", - "diff": "oni", - "actual": 10.6, - "predicted": 10.634, - "error": 0.034000000000000696 - }, - { - "songno": "877", - "diff": "oni", - "actual": 1.3, - "predicted": 1.3332, - "error": 0.033199999999999896 - }, - { - "songno": "419", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5672, - "error": 0.03279999999999994 - }, - { - "songno": "1160", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2675, - "error": 0.03249999999999975 - }, - { - "songno": "414", - "diff": "oni", - "actual": 5.8, - "predicted": 5.7677, - "error": 0.03230000000000022 - }, - { - "songno": "423", - "diff": "oni", - "actual": 5.9, - "predicted": 5.932, - "error": 0.03200000000000003 - }, - { - "songno": "1073", - "diff": "oni", - "actual": 2.3, - "predicted": 2.3319, - "error": 0.03190000000000026 - }, - { - "songno": "307", - "diff": "oni", - "actual": 4.1, - "predicted": 4.0681, - "error": 0.03189999999999937 - }, - { - "songno": "45", - "diff": "oni", - "actual": 7.9, - "predicted": 7.8683, - "error": 0.03170000000000073 - }, - { - "songno": "1020", - "diff": "oni", - "actual": 5, - "predicted": 5.0314, - "error": 0.03139999999999965 - }, - { - "songno": "47", - "diff": "oni", - "actual": 5.1, - "predicted": 5.0689, - "error": 0.03109999999999946 - }, - { - "songno": "149", - "diff": "ura", - "actual": 6.8, - "predicted": 6.8304, - "error": 0.030400000000000205 - }, - { - "songno": "833", - "diff": "oni", - "actual": 9.6, - "predicted": 9.6298, - "error": 0.029799999999999827 - }, - { - "songno": "939", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4294, - "error": 0.02939999999999987 - }, - { - "songno": "1263", - "diff": "oni", - "actual": 7.4, - "predicted": 7.4294, - "error": 0.02939999999999987 - }, - { - "songno": "919", - "diff": "oni", - "actual": 7.6, - "predicted": 7.6293, - "error": 0.029300000000000104 - }, - { - "songno": "1146", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5282, - "error": 0.028200000000000003 - }, - { - "songno": "1264", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5282, - "error": 0.028200000000000003 - }, - { - "songno": "160", - "diff": "ura", - "actual": 8.2, - "predicted": 8.2279, - "error": 0.027900000000000702 - }, - { - "songno": "1280", - "diff": "oni", - "actual": 3.9, - "predicted": 3.9274, - "error": 0.02740000000000009 - }, - { - "songno": "361", - "diff": "oni", - "actual": 8, - "predicted": 8.0271, - "error": 0.02710000000000079 - }, - { - "songno": "1058", - "diff": "oni", - "actual": 6.4, - "predicted": 6.4269, - "error": 0.02689999999999948 - }, - { - "songno": "566", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5739, - "error": 0.026099999999999568 - }, - { - "songno": "668", - "diff": "oni", - "actual": 3.4, - "predicted": 3.3743, - "error": 0.025700000000000056 - }, - { - "songno": "1171", - "diff": "ura", - "actual": 9.5, - "predicted": 9.5255, - "error": 0.02549999999999919 - }, - { - "songno": "1435", - "diff": "oni", - "actual": 5.2, - "predicted": 5.2252, - "error": 0.02519999999999989 - }, - { - "songno": "822", - "diff": "oni", - "actual": 7.2, - "predicted": 7.175, - "error": 0.025000000000000355 - }, - { - "songno": "238", - "diff": "oni", - "actual": 6.1, - "predicted": 6.0759, - "error": 0.024099999999999788 - }, - { - "songno": "1081", - "diff": "ura", - "actual": 10.2, - "predicted": 10.1765, - "error": 0.023499999999998522 - }, - { - "songno": "203", - "diff": "ura", - "actual": 7.6, - "predicted": 7.5767, - "error": 0.023299999999999876 - }, - { - "songno": "1041", - "diff": "oni", - "actual": 10.9, - "predicted": 10.9228, - "error": 0.022800000000000153 - }, - { - "songno": "1455", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6228, - "error": 0.022800000000000153 - }, - { - "songno": "1147", - "diff": "oni", - "actual": 9.1, - "predicted": 9.0776, - "error": 0.02239999999999931 - }, - { - "songno": "220", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2778, - "error": 0.022200000000001552 - }, - { - "songno": "1268", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3222, - "error": 0.022199999999999775 - }, - { - "songno": "737", - "diff": "oni", - "actual": 9.9, - "predicted": 9.878, - "error": 0.02200000000000024 - }, - { - "songno": "380", - "diff": "oni", - "actual": 4.6, - "predicted": 4.6211, - "error": 0.021100000000000563 - }, - { - "songno": "846", - "diff": "oni", - "actual": 8.5, - "predicted": 8.521, - "error": 0.021000000000000796 - }, - { - "songno": "931", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6791, - "error": 0.02090000000000014 - }, - { - "songno": "248", - "diff": "oni", - "actual": 6.2, - "predicted": 6.1792, - "error": 0.020800000000000374 - }, - { - "songno": "934", - "diff": "oni", - "actual": 9.5, - "predicted": 9.5206, - "error": 0.02059999999999995 - }, - { - "songno": "470", - "diff": "ura", - "actual": 6.9, - "predicted": 6.8795, - "error": 0.020500000000000185 - }, - { - "songno": "539", - "diff": "ura", - "actual": 8.2, - "predicted": 8.2197, - "error": 0.019700000000000273 - }, - { - "songno": "348", - "diff": "oni", - "actual": 3.9, - "predicted": 3.8809, - "error": 0.019099999999999895 - }, - { - "songno": "1359", - "diff": "oni", - "actual": 2.2, - "predicted": 2.2186, - "error": 0.018599999999999728 - }, - { - "songno": "1044", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2817, - "error": 0.018299999999999983 - }, - { - "songno": "399", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5821, - "error": 0.017900000000000027 - }, - { - "songno": "400", - "diff": "oni", - "actual": 7.6, - "predicted": 7.5821, - "error": 0.017900000000000027 - }, - { - "songno": "998", - "diff": "oni", - "actual": 5, - "predicted": 5.0173, - "error": 0.01729999999999965 - }, - { - "songno": "867", - "diff": "oni", - "actual": 9, - "predicted": 8.9833, - "error": 0.01670000000000016 - }, - { - "songno": "424", - "diff": "oni", - "actual": 6.3, - "predicted": 6.2834, - "error": 0.016599999999999504 - }, - { - "songno": "1409", - "diff": "oni", - "actual": 2.1, - "predicted": 2.1162, - "error": 0.016199999999999992 - }, - { - "songno": "1181", - "diff": "oni", - "actual": 3.3, - "predicted": 3.2846, - "error": 0.015399999999999636 - }, - { - "songno": "660", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6153, - "error": 0.015300000000000757 - }, - { - "songno": "510", - "diff": "oni", - "actual": 5.3, - "predicted": 5.3153, - "error": 0.01529999999999987 - }, - { - "songno": "406", - "diff": "oni", - "actual": 7.7, - "predicted": 7.6848, - "error": 0.015200000000000102 - }, - { - "songno": "358", - "diff": "oni", - "actual": 7.5, - "predicted": 7.5149, - "error": 0.014899999999999913 - }, - { - "songno": "997", - "diff": "oni", - "actual": 4, - "predicted": 4.0146, - "error": 0.014599999999999724 - }, - { - "songno": "1157", - "diff": "ura", - "actual": 6.6, - "predicted": 6.6145, - "error": 0.014499999999999957 - }, - { - "songno": "1214", - "diff": "ura", - "actual": 10.4, - "predicted": 10.4145, - "error": 0.014499999999999957 - }, - { - "songno": "1039", - "diff": "oni", - "actual": 9.2, - "predicted": 9.1862, - "error": 0.013799999999999812 - }, - { - "songno": "1126", - "diff": "oni", - "actual": 3.9, - "predicted": 3.8864, - "error": 0.013599999999999834 - }, - { - "songno": "1292", - "diff": "oni", - "actual": 4.4, - "predicted": 4.4135, - "error": 0.013499999999999623 - }, - { - "songno": "706", - "diff": "oni", - "actual": 3.3, - "predicted": 3.2865, - "error": 0.013499999999999623 - }, - { - "songno": "173", - "diff": "oni", - "actual": 6, - "predicted": 6.0135, - "error": 0.013499999999999623 - }, - { - "songno": "1298", - "diff": "oni", - "actual": 5.7, - "predicted": 5.7132, - "error": 0.013199999999999434 - }, - { - "songno": "502", - "diff": "oni", - "actual": 8.8, - "predicted": 8.7874, - "error": 0.012600000000000833 - }, - { - "songno": "403", - "diff": "oni", - "actual": 5.3, - "predicted": 5.2876, - "error": 0.012399999999999523 - }, - { - "songno": "1418", - "diff": "oni", - "actual": 8, - "predicted": 7.988, - "error": 0.011999999999999567 - }, - { - "songno": "140", - "diff": "oni", - "actual": 3.3, - "predicted": 3.3119, - "error": 0.011900000000000244 - }, - { - "songno": "1347", - "diff": "oni", - "actual": 6.9, - "predicted": 6.9119, - "error": 0.0118999999999998 - }, - { - "songno": "103", - "diff": "oni", - "actual": 8.2, - "predicted": 8.1886, - "error": 0.011400000000000077 - }, - { - "songno": "759", - "diff": "oni", - "actual": 9, - "predicted": 9.0113, - "error": 0.01130000000000031 - }, - { - "songno": "112", - "diff": "oni", - "actual": 6.5, - "predicted": 6.511, - "error": 0.01100000000000012 - }, - { - "songno": "356", - "diff": "oni", - "actual": 8.1, - "predicted": 8.0898, - "error": 0.01019999999999932 - }, - { - "songno": "1249", - "diff": "oni", - "actual": 8.3, - "predicted": 8.29, - "error": 0.010000000000001563 - }, - { - "songno": "1125", - "diff": "oni", - "actual": 3.6, - "predicted": 3.5906, - "error": 0.009400000000000297 - }, - { - "songno": "275", - "diff": "ura", - "actual": 5.2, - "predicted": 5.191, - "error": 0.009000000000000341 - }, - { - "songno": "427", - "diff": "oni", - "actual": 9.1, - "predicted": 9.109, - "error": 0.009000000000000341 - }, - { - "songno": "398", - "diff": "oni", - "actual": 6.3, - "predicted": 6.3087, - "error": 0.008700000000000152 - }, - { - "songno": "264", - "diff": "ura", - "actual": 9.9, - "predicted": 9.8914, - "error": 0.008599999999999497 - }, - { - "songno": "681", - "diff": "oni", - "actual": 7, - "predicted": 7.0084, - "error": 0.008399999999999963 - }, - { - "songno": "1364", - "diff": "ura", - "actual": 9.2, - "predicted": 9.1917, - "error": 0.00829999999999842 - }, - { - "songno": "1387", - "diff": "ura", - "actual": 7.3, - "predicted": 7.3078, - "error": 0.007800000000000473 - }, - { - "songno": "135", - "diff": "oni", - "actual": 4.1, - "predicted": 4.1078, - "error": 0.007800000000000473 - }, - { - "songno": "1173", - "diff": "oni", - "actual": 9.2, - "predicted": 9.2077, - "error": 0.0077000000000015945 - }, - { - "songno": "136", - "diff": "oni", - "actual": 9.1, - "predicted": 9.0929, - "error": 0.00709999999999944 - }, - { - "songno": "56", - "diff": "oni", - "actual": 6.6, - "predicted": 6.6069, - "error": 0.006900000000000794 - }, - { - "songno": "1058", - "diff": "ura", - "actual": 8.6, - "predicted": 8.5931, - "error": 0.006899999999999906 - }, - { - "songno": "860", - "diff": "oni", - "actual": 10.6, - "predicted": 10.5934, - "error": 0.006599999999998829 - }, - { - "songno": "1249", - "diff": "ura", - "actual": 11.4, - "predicted": 11.3941, - "error": 0.00590000000000046 - }, - { - "songno": "803", - "diff": "oni", - "actual": 8.9, - "predicted": 8.8943, - "error": 0.0057000000000009265 - }, - { - "songno": "1021", - "diff": "oni", - "actual": 7, - "predicted": 6.9943, - "error": 0.005700000000000038 - }, - { - "songno": "5", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3056, - "error": 0.005599999999999383 - }, - { - "songno": "20", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3045, - "error": 0.0045000000000001705 - }, - { - "songno": "861", - "diff": "oni", - "actual": 4.2, - "predicted": 4.1956, - "error": 0.004400000000000404 - }, - { - "songno": "1255", - "diff": "oni", - "actual": 10.4, - "predicted": 10.3958, - "error": 0.00420000000000087 - }, - { - "songno": "253", - "diff": "ura", - "actual": 7.9, - "predicted": 7.8958, - "error": 0.0041999999999999815 - }, - { - "songno": "211", - "diff": "oni", - "actual": 7.8, - "predicted": 7.7961, - "error": 0.0038999999999997925 - }, - { - "songno": "148", - "diff": "oni", - "actual": 9.7, - "predicted": 9.6967, - "error": 0.0032999999999994145 - }, - { - "songno": "483", - "diff": "oni", - "actual": 7.1, - "predicted": 7.0971, - "error": 0.0028999999999994586 - }, - { - "songno": "572", - "diff": "oni", - "actual": 8.3, - "predicted": 8.3029, - "error": 0.0028999999999985704 - }, - { - "songno": "97", - "diff": "oni", - "actual": 7.5, - "predicted": 7.4978, - "error": 0.002200000000000202 - }, - { - "songno": "1384", - "diff": "oni", - "actual": 9.3, - "predicted": 9.2979, - "error": 0.002100000000000435 - }, - { - "songno": "10", - "diff": "oni", - "actual": 7.8, - "predicted": 7.8018, - "error": 0.0018000000000002458 - }, - { - "songno": "1193", - "diff": "oni", - "actual": 4.4, - "predicted": 4.3983, - "error": 0.001700000000000479 - }, - { - "songno": "754", - "diff": "oni", - "actual": 5, - "predicted": 5.0014, - "error": 0.00140000000000029 - }, - { - "songno": "808", - "diff": "oni", - "actual": 6.2, - "predicted": 6.2009, - "error": 0.0008999999999996788 - }, - { - "songno": "126", - "diff": "oni", - "actual": 4.6, - "predicted": 4.5995, - "error": 0.0004999999999997229 - } - ] -} \ No newline at end of file diff --git a/output/lightgbm3/features.json b/output/lightgbm3/features.json deleted file mode 100644 index f62e775..0000000 --- a/output/lightgbm3/features.json +++ /dev/null @@ -1,17594 +0,0 @@ -[ - { - "songno": "449", - "difficulty": "oni", - "note_count": 784, - "density_avg": 5.587527839643652, - "density_peak": 12, - "bpm_avg": 280.46938775510205, - "bpm_change": 2, - "scroll_change": 22, - "rhythm_complexity": 670, - "color_complexity": 0.006692674014408041 - }, - { - "songno": "307", - "difficulty": "oni", - "note_count": 604, - "density_avg": 4.531287297527706, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.004356983446119197 - }, - { - "songno": "461", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.787089080466525, - "density_peak": 13, - "bpm_avg": 185.9635159817354, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 604, - "color_complexity": 0.004993864138842205 - }, - { - "songno": "313", - "difficulty": "oni", - "note_count": 427, - "density_avg": 3.6810344827586206, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.001489031508400551 - }, - { - "songno": "1136", - "difficulty": "oni", - "note_count": 360, - "density_avg": 3.814569536423841, - "density_peak": 7, - "bpm_avg": 96, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0009429447111111097 - }, - { - "songno": "1122", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.956597239601169, - "density_peak": 12, - "bpm_avg": 284.18774045801524, - "bpm_change": 7, - "scroll_change": 16, - "rhythm_complexity": 574, - "color_complexity": 0.004677826484192639 - }, - { - "songno": "1122", - "difficulty": "ura", - "note_count": 1108, - "density_avg": 8.070413061908537, - "density_peak": 19, - "bpm_avg": 283.00328519855594, - "bpm_change": 15, - "scroll_change": 20, - "rhythm_complexity": 994, - "color_complexity": 0.025356178647564762 - }, - { - "songno": "887", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.6222865412445735, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.0068026821675988775 - }, - { - "songno": "139", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.310763888888889, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 621, - "color_complexity": 0.004459180190854104 - }, - { - "songno": "139", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.30859375, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 742, - "color_complexity": 0.008277929116327007 - }, - { - "songno": "663", - "difficulty": "oni", - "note_count": 476, - "density_avg": 4.109953034614047, - "density_peak": 9, - "bpm_avg": 130.0222563025208, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0018006687913481438 - }, - { - "songno": "105", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.0236184143527267, - "density_peak": 7, - "bpm_avg": 139.7528813559323, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 251, - "color_complexity": 0.000919907220485541 - }, - { - "songno": "105", - "difficulty": "ura", - "note_count": 676, - "density_avg": 5.773915390119896, - "density_peak": 10, - "bpm_avg": 140.52822485207096, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 589, - "color_complexity": 0.00501915309149266 - }, - { - "songno": "111", - "difficulty": "oni", - "note_count": 777, - "density_avg": 4.7050971079637005, - "density_peak": 10, - "bpm_avg": 135.94851994851996, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.0034587090618026814 - }, - { - "songno": "677", - "difficulty": "oni", - "note_count": 792, - "density_avg": 7.97583081570997, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.011505421296296236 - }, - { - "songno": "1308", - "difficulty": "oni", - "note_count": 773, - "density_avg": 5.771693790767178, - "density_peak": 13, - "bpm_avg": 239.01681759379042, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 727, - "color_complexity": 0.004041496952479993 - }, - { - "songno": "1308", - "difficulty": "ura", - "note_count": 1090, - "density_avg": 8.134814687221887, - "density_peak": 17, - "bpm_avg": 238.0091743119266, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 1038, - "color_complexity": 0.012863064027688232 - }, - { - "songno": "844", - "difficulty": "oni", - "note_count": 853, - "density_avg": 7.192956349206349, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.009678652688977774 - }, - { - "songno": "10", - "difficulty": "oni", - "note_count": 552, - "density_avg": 6.224101479915433, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0053731713053946 - }, - { - "songno": "688", - "difficulty": "oni", - "note_count": 707, - "density_avg": 5.590339370071598, - "density_peak": 13, - "bpm_avg": 175.99777934936353, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 654, - "color_complexity": 0.0068829446479436295 - }, - { - "songno": "850", - "difficulty": "oni", - "note_count": 872, - "density_avg": 6.794553847245661, - "density_peak": 17, - "bpm_avg": 274.81462155963305, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 703, - "color_complexity": 0.011439028910402393 - }, - { - "songno": "38", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.823086574654956, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.006105417539154131 - }, - { - "songno": "1334", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.035211267605634, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0029164289624079654 - }, - { - "songno": "878", - "difficulty": "oni", - "note_count": 806, - "density_avg": 6.302813376391915, - "density_peak": 16, - "bpm_avg": 255.37493796526053, - "bpm_change": 18, - "scroll_change": 29, - "rhythm_complexity": 676, - "color_complexity": 0.00676603514709561 - }, - { - "songno": "1452", - "difficulty": "oni", - "note_count": 316, - "density_avg": 9.328413284132841, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.00370360888888889 - }, - { - "songno": "1452", - "difficulty": "ura", - "note_count": 364, - "density_avg": 10.7255985267035, - "density_peak": 16, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.005922417777777777 - }, - { - "songno": "1446", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.135464535464536, - "density_peak": 12, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 287, - "color_complexity": 0.0022338303464472424 - }, - { - "songno": "1320", - "difficulty": "oni", - "note_count": 808, - "density_avg": 5.597655209166001, - "density_peak": 10, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 660, - "color_complexity": 0.004510001949763438 - }, - { - "songno": "1320", - "difficulty": "ura", - "note_count": 1111, - "density_avg": 8.00387919091161, - "density_peak": 17, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1020, - "color_complexity": 0.017274985877227887 - }, - { - "songno": "717", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.051711580480699, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.003257797200705463 - }, - { - "songno": "717", - "difficulty": "ura", - "note_count": 888, - "density_avg": 5.859679767103348, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.0064979530110355664 - }, - { - "songno": "1283", - "difficulty": "oni", - "note_count": 292, - "density_avg": 2.5710691823899374, - "density_peak": 6, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007190323891200115 - }, - { - "songno": "1297", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.889774696707105, - "density_peak": 14, - "bpm_avg": 139, - "bpm_change": 0, - "scroll_change": 71, - "rhythm_complexity": 690, - "color_complexity": 0.00893526861494559 - }, - { - "songno": "703", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.337966985230235, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.004553366071901534 - }, - { - "songno": "930", - "difficulty": "oni", - "note_count": 830, - "density_avg": 6.856171039844509, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009572243853901754 - }, - { - "songno": "924", - "difficulty": "oni", - "note_count": 350, - "density_avg": 4.697134566557852, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 338, - "color_complexity": 0.001804688302505356 - }, - { - "songno": "1268", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.332533672783506, - "density_peak": 10, - "bpm_avg": 219.96846280991733, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 552, - "color_complexity": 0.0032868798750415457 - }, - { - "songno": "1268", - "difficulty": "ura", - "note_count": 862, - "density_avg": 7.597758720560962, - "density_peak": 16, - "bpm_avg": 219.97786542923433, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 788, - "color_complexity": 0.010894191901963987 - }, - { - "songno": "1240", - "difficulty": "oni", - "note_count": 362, - "density_avg": 4.114535519125683, - "density_peak": 8, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 341, - "color_complexity": 0.0012868878780337735 - }, - { - "songno": "1240", - "difficulty": "ura", - "note_count": 657, - "density_avg": 7.467540983606558, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 623, - "color_complexity": 0.006901208079133739 - }, - { - "songno": "918", - "difficulty": "oni", - "note_count": 687, - "density_avg": 5.564132231404959, - "density_peak": 10, - "bpm_avg": 147, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.0037093791356749206 - }, - { - "songno": "1254", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.10387323943662, - "density_peak": 10, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.002324958780785769 - }, - { - "songno": "273", - "difficulty": "oni", - "note_count": 536, - "density_avg": 3.8068181818181817, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 509, - "color_complexity": 0.0013844103014602775 - }, - { - "songno": "273", - "difficulty": "ura", - "note_count": 763, - "density_avg": 5.419034090909091, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.005901183240301944 - }, - { - "songno": "1081", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.2018633540372665, - "density_peak": 13, - "bpm_avg": 185.72062084257206, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0036115374738737846 - }, - { - "songno": "1081", - "difficulty": "ura", - "note_count": 876, - "density_avg": 8.061349693251532, - "density_peak": 17, - "bpm_avg": 184.7945205479452, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 795, - "color_complexity": 0.011201968041594108 - }, - { - "songno": "515", - "difficulty": "oni", - "note_count": 488, - "density_avg": 3.964351424306376, - "density_peak": 9, - "bpm_avg": 126.00137295081967, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0017224712869179865 - }, - { - "songno": "501", - "difficulty": "oni", - "note_count": 962, - "density_avg": 6.846975088967972, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.010496300000000026 - }, - { - "songno": "1095", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.266752577319587, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.0017214377433399854 - }, - { - "songno": "267", - "difficulty": "oni", - "note_count": 417, - "density_avg": 3.8167169707310875, - "density_peak": 7, - "bpm_avg": 122.98940047961632, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0013931846914091836 - }, - { - "songno": "298", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.162656400384986, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0036774421583104394 - }, - { - "songno": "1042", - "difficulty": "oni", - "note_count": 885, - "density_avg": 6.954813359528488, - "density_peak": 17, - "bpm_avg": 235.72881355932202, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 861, - "color_complexity": 0.014998699115480149 - }, - { - "songno": "1042", - "difficulty": "ura", - "note_count": 1172, - "density_avg": 9.210216110019646, - "density_peak": 22, - "bpm_avg": 235.13651877133105, - "bpm_change": 6, - "scroll_change": 30, - "rhythm_complexity": 1080, - "color_complexity": 0.026092071293037866 - }, - { - "songno": "1056", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.061631944444445, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.003389508968475695 - }, - { - "songno": "1056", - "difficulty": "ura", - "note_count": 981, - "density_avg": 7.238281250000001, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 822, - "color_complexity": 0.011152284174905557 - }, - { - "songno": "1057", - "difficulty": "oni", - "note_count": 693, - "density_avg": 6.188912614318521, - "density_peak": 9, - "bpm_avg": 189.978354978355, - "bpm_change": 2, - "scroll_change": 38, - "rhythm_complexity": 676, - "color_complexity": 0.004701383799728597 - }, - { - "songno": "1043", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.87114845066276, - "density_peak": 15, - "bpm_avg": 281.053324099723, - "bpm_change": 17, - "scroll_change": 20, - "rhythm_complexity": 645, - "color_complexity": 0.006450077902468618 - }, - { - "songno": "1043", - "difficulty": "ura", - "note_count": 1170, - "density_avg": 9.514187932514444, - "density_peak": 23, - "bpm_avg": 277.8562564102565, - "bpm_change": 21, - "scroll_change": 25, - "rhythm_complexity": 1012, - "color_complexity": 0.018544465114083062 - }, - { - "songno": "299", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.454986894298035, - "density_peak": 9, - "bpm_avg": 150.05410835214448, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0015806091145694461 - }, - { - "songno": "1094", - "difficulty": "oni", - "note_count": 787, - "density_avg": 5.777579365079365, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007064537493320363 - }, - { - "songno": "500", - "difficulty": "oni", - "note_count": 672, - "density_avg": 4.774736842105264, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.0038177443787500687 - }, - { - "songno": "500", - "difficulty": "ura", - "note_count": 931, - "density_avg": 6.615, - "density_peak": 13, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 843, - "color_complexity": 0.010551994809414898 - }, - { - "songno": "266", - "difficulty": "oni", - "note_count": 727, - "density_avg": 6.058333333333333, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.00523845953455764 - }, - { - "songno": "266", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.3, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 822, - "color_complexity": 0.010420249000243716 - }, - { - "songno": "514", - "difficulty": "oni", - "note_count": 814, - "density_avg": 5.973215923683728, - "density_peak": 14, - "bpm_avg": 165.7002457002457, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 686, - "color_complexity": 0.008519774499891938 - }, - { - "songno": "1080", - "difficulty": "oni", - "note_count": 875, - "density_avg": 5.780068330267169, - "density_peak": 13, - "bpm_avg": 196.92365714285708, - "bpm_change": 16, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.007146615914553868 - }, - { - "songno": "1080", - "difficulty": "ura", - "note_count": 1195, - "density_avg": 7.821022092578282, - "density_peak": 20, - "bpm_avg": 191.14794979079488, - "bpm_change": 19, - "scroll_change": 42, - "rhythm_complexity": 1022, - "color_complexity": 0.02013975013518078 - }, - { - "songno": "1255", - "difficulty": "oni", - "note_count": 901, - "density_avg": 7.908777777777777, - "density_peak": 16, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 824, - "color_complexity": 0.011367388067806112 - }, - { - "songno": "919", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.641447554794225, - "density_peak": 14, - "bpm_avg": 196.55979166666668, - "bpm_change": 10, - "scroll_change": 1, - "rhythm_complexity": 602, - "color_complexity": 0.007553145746370371 - }, - { - "songno": "1241", - "difficulty": "oni", - "note_count": 460, - "density_avg": 5.357854406130269, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002625198626415662 - }, - { - "songno": "1269", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.548521256931608, - "density_peak": 8, - "bpm_avg": 169.7357512953368, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0012765241259185696 - }, - { - "songno": "925", - "difficulty": "oni", - "note_count": 402, - "density_avg": 4.852367688022284, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 350, - "color_complexity": 0.0020141831385599505 - }, - { - "songno": "931", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.924268492805577, - "density_peak": 10, - "bpm_avg": 139.81105610561056, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 519, - "color_complexity": 0.005182473838445212 - }, - { - "songno": "702", - "difficulty": "oni", - "note_count": 827, - "density_avg": 7.370254629629629, - "density_peak": 15, - "bpm_avg": 307.0689238210399, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 744, - "color_complexity": 0.010723288557717443 - }, - { - "songno": "1296", - "difficulty": "oni", - "note_count": 599, - "density_avg": 5.878953107960741, - "density_peak": 14, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 530, - "color_complexity": 0.0047220630883788636 - }, - { - "songno": "1282", - "difficulty": "oni", - "note_count": 358, - "density_avg": 2.767731699836277, - "density_peak": 5, - "bpm_avg": 69.51117318435755, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 326, - "color_complexity": 0.0005071411899862813 - }, - { - "songno": "716", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.299784017278617, - "density_peak": 10, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0030277657896664446 - }, - { - "songno": "716", - "difficulty": "ura", - "note_count": 916, - "density_avg": 7.0161702127659575, - "density_peak": 16, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 746, - "color_complexity": 0.01051877614218145 - }, - { - "songno": "1447", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.366637706342311, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 546, - "color_complexity": 0.006275856002078183 - }, - { - "songno": "1321", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.743093922651934, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.00468243012509637 - }, - { - "songno": "879", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.804987298038817, - "density_peak": 13, - "bpm_avg": 164.54063926940913, - "bpm_change": 2, - "scroll_change": 13, - "rhythm_complexity": 780, - "color_complexity": 0.009281100492511754 - }, - { - "songno": "1335", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.9738489871086555, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.0024204684315892594 - }, - { - "songno": "39", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.2819332566168, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.006067056407061526 - }, - { - "songno": "851", - "difficulty": "oni", - "note_count": 1141, - "density_avg": 9.109780439121757, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1082, - "color_complexity": 0.01834452672849811 - }, - { - "songno": "689", - "difficulty": "oni", - "note_count": 558, - "density_avg": 4.79549436795995, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0020224802461305666 - }, - { - "songno": "689", - "difficulty": "ura", - "note_count": 940, - "density_avg": 7.842851356824625, - "density_peak": 14, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 900, - "color_complexity": 0.013325826574036262 - }, - { - "songno": "11", - "difficulty": "oni", - "note_count": 338, - "density_avg": 3.979100529100529, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.0008495953896165008 - }, - { - "songno": "845", - "difficulty": "oni", - "note_count": 632, - "density_avg": 4.764193168433451, - "density_peak": 13, - "bpm_avg": 187.29113924050634, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 582, - "color_complexity": 0.006825138251077646 - }, - { - "songno": "845", - "difficulty": "ura", - "note_count": 1075, - "density_avg": 8.097293056100431, - "density_peak": 20, - "bpm_avg": 206.55627906976744, - "bpm_change": 5, - "scroll_change": 72, - "rhythm_complexity": 968, - "color_complexity": 0.015127150063685387 - }, - { - "songno": "1309", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.473444228071022, - "density_peak": 9, - "bpm_avg": 145.52260162601624, - "bpm_change": 9, - "scroll_change": 11, - "rhythm_complexity": 507, - "color_complexity": 0.0025885878426359895 - }, - { - "songno": "1309", - "difficulty": "ura", - "note_count": 939, - "density_avg": 6.772973581443851, - "density_peak": 16, - "bpm_avg": 147.59201277955273, - "bpm_change": 10, - "scroll_change": 12, - "rhythm_complexity": 808, - "color_complexity": 0.012227426595713463 - }, - { - "songno": "110", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.871428571428571, - "density_peak": 14, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 702, - "color_complexity": 0.010021341608405222 - }, - { - "songno": "676", - "difficulty": "oni", - "note_count": 437, - "density_avg": 3.884444444444444, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0012223281719922372 - }, - { - "songno": "676", - "difficulty": "ura", - "note_count": 667, - "density_avg": 5.644001208824418, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.004799657806185799 - }, - { - "songno": "662", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.276267529665588, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.005613621807659088 - }, - { - "songno": "892", - "difficulty": "oni", - "note_count": 1109, - "density_avg": 8.24299599771298, - "density_peak": 15, - "bpm_avg": 265.04057709648333, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 1000, - "color_complexity": 0.017453126502744783 - }, - { - "songno": "886", - "difficulty": "oni", - "note_count": 349, - "density_avg": 3.0673191749591764, - "density_peak": 7, - "bpm_avg": 139.99272206303726, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0008546809154483517 - }, - { - "songno": "138", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.964285714285714, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.0052534405955924155 - }, - { - "songno": "1123", - "difficulty": "oni", - "note_count": 264, - "density_avg": 2.663677130044843, - "density_peak": 5, - "bpm_avg": 67.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.0004318712794196085 - }, - { - "songno": "1137", - "difficulty": "oni", - "note_count": 770, - "density_avg": 5.96590909090909, - "density_peak": 11, - "bpm_avg": 207.61363636363637, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 756, - "color_complexity": 0.0055544305555555035 - }, - { - "songno": "474", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.821248411934069, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.0022008104828447643 - }, - { - "songno": "312", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4820512820512826, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 265, - "color_complexity": 0.00043966209876543236 - }, - { - "songno": "306", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.377229080932785, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.004581235945311708 - }, - { - "songno": "460", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.4239677744209467, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 253, - "color_complexity": 0.0011835257969693843 - }, - { - "songno": "448", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.055865921787709, - "density_peak": 8, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 398, - "color_complexity": 0.0019192825468789222 - }, - { - "songno": "448", - "difficulty": "ura", - "note_count": 639, - "density_avg": 5.759329608938548, - "density_peak": 13, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 580, - "color_complexity": 0.005227028111131027 - }, - { - "songno": "338", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.713574660633484, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.008195218080555547 - }, - { - "songno": "310", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.914736164736165, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 562, - "color_complexity": 0.004902071568412837 - }, - { - "songno": "310", - "difficulty": "ura", - "note_count": 710, - "density_avg": 7.074895531983285, - "density_peak": 16, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.009715980223240543 - }, - { - "songno": "462", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.825484764542937, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 664, - "color_complexity": 0.005425073578737284 - }, - { - "songno": "304", - "difficulty": "oni", - "note_count": 656, - "density_avg": 4.984802431610943, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.0035966554705215378 - }, - { - "songno": "489", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.153253652058433, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 285, - "color_complexity": 0.0009261243454858258 - }, - { - "songno": "1109", - "difficulty": "oni", - "note_count": 778, - "density_avg": 5.1274600469468465, - "density_peak": 10, - "bpm_avg": 172.2172236503856, - "bpm_change": 4, - "scroll_change": 8, - "rhythm_complexity": 708, - "color_complexity": 0.005392071893761451 - }, - { - "songno": "1121", - "difficulty": "oni", - "note_count": 937, - "density_avg": 6.805207262761218, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.008424583068823538 - }, - { - "songno": "1121", - "difficulty": "ura", - "note_count": 1103, - "density_avg": 7.990295574918845, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 104, - "rhythm_complexity": 1014, - "color_complexity": 0.013420207514881202 - }, - { - "songno": "1135", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3827481256964647, - "density_peak": 7, - "bpm_avg": 139.6446575, - "bpm_change": 74, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0008244971762495653 - }, - { - "songno": "890", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.878893093491634, - "density_peak": 23, - "bpm_avg": 215.56481662591685, - "bpm_change": 3, - "scroll_change": 63, - "rhythm_complexity": 692, - "color_complexity": 0.007223462340697105 - }, - { - "songno": "648", - "difficulty": "oni", - "note_count": 425, - "density_avg": 3.8259835665300748, - "density_peak": 9, - "bpm_avg": 150.34588235294117, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 309, - "color_complexity": 0.0025337343700833877 - }, - { - "songno": "648", - "difficulty": "ura", - "note_count": 635, - "density_avg": 5.716469564109641, - "density_peak": 10, - "bpm_avg": 149.4, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 567, - "color_complexity": 0.004614408200336598 - }, - { - "songno": "884", - "difficulty": "oni", - "note_count": 296, - "density_avg": 2.6636248415716097, - "density_peak": 5, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 270, - "color_complexity": 0.00038172729747033797 - }, - { - "songno": "884", - "difficulty": "ura", - "note_count": 429, - "density_avg": 3.7884328358208954, - "density_peak": 8, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 406, - "color_complexity": 0.0013675083212830042 - }, - { - "songno": "112", - "difficulty": "oni", - "note_count": 658, - "density_avg": 5.253023532916294, - "density_peak": 12, - "bpm_avg": 150.69908814589667, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.0034954625712895386 - }, - { - "songno": "106", - "difficulty": "oni", - "note_count": 608, - "density_avg": 4.595680751173709, - "density_peak": 11, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.004163864524037761 - }, - { - "songno": "106", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.323102310231022, - "density_peak": 12, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.006499025666789507 - }, - { - "songno": "660", - "difficulty": "oni", - "note_count": 746, - "density_avg": 5.8419371458011335, - "density_peak": 11, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 681, - "color_complexity": 0.004872810662308923 - }, - { - "songno": "13", - "difficulty": "oni", - "note_count": 652, - "density_avg": 4.789964306753993, - "density_peak": 15, - "bpm_avg": 183.73312883435582, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 542, - "color_complexity": 0.0035775893385438058 - }, - { - "songno": "847", - "difficulty": "oni", - "note_count": 217, - "density_avg": 2.449382716049383, - "density_peak": 5, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 125, - "color_complexity": 0.00026225457549773254 - }, - { - "songno": "1323", - "difficulty": "oni", - "note_count": 678, - "density_avg": 4.792146596858639, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.00418911277686577 - }, - { - "songno": "1445", - "difficulty": "oni", - "note_count": 313, - "density_avg": 4.553788217747949, - "density_peak": 8, - "bpm_avg": 195.099999999999, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.001053518496089843 - }, - { - "songno": "1451", - "difficulty": "oni", - "note_count": 276, - "density_avg": 8, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 274, - "color_complexity": 0.0013629999999999988 - }, - { - "songno": "1451", - "difficulty": "ura", - "note_count": 334, - "density_avg": 9.657831325301206, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 332, - "color_complexity": 0.0029699999999999974 - }, - { - "songno": "1337", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.466033390903857, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 504, - "color_complexity": 0.0021567929970507274 - }, - { - "songno": "728", - "difficulty": "oni", - "note_count": 633, - "density_avg": 4.306122448979592, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 572, - "color_complexity": 0.003516002661600338 - }, - { - "songno": "1294", - "difficulty": "oni", - "note_count": 307, - "density_avg": 3.547011952191235, - "density_peak": 7, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 269, - "color_complexity": 0.0007957672930532399 - }, - { - "songno": "700", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.693309650680877, - "density_peak": 14, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 560, - "color_complexity": 0.009112909883393238 - }, - { - "songno": "700", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.220959147424512, - "density_peak": 15, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 795, - "color_complexity": 0.015829611055823777 - }, - { - "songno": "714", - "difficulty": "oni", - "note_count": 816, - "density_avg": 5.767393317306, - "density_peak": 11, - "bpm_avg": 127.99754901960785, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 679, - "color_complexity": 0.005419349720496814 - }, - { - "songno": "1280", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.208042328042328, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 259, - "color_complexity": 0.001251865558932129 - }, - { - "songno": "927", - "difficulty": "oni", - "note_count": 817, - "density_avg": 6.923728813559322, - "density_peak": 15, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.009524370009981157 - }, - { - "songno": "933", - "difficulty": "oni", - "note_count": 754, - "density_avg": 6.135792228429214, - "density_peak": 13, - "bpm_avg": 184.24403183023873, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 695, - "color_complexity": 0.006941030233059149 - }, - { - "songno": "1257", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "1243", - "difficulty": "oni", - "note_count": 172, - "density_avg": 2.2941943604574355, - "density_peak": 5, - "bpm_avg": 112.20731395348835, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 98, - "color_complexity": 0.00023208879038365057 - }, - { - "songno": "264", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.067368421052631, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.0013331775341541565 - }, - { - "songno": "264", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.386149003147953, - "density_peak": 17, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 931, - "color_complexity": 0.007155499542542846 - }, - { - "songno": "502", - "difficulty": "oni", - "note_count": 648, - "density_avg": 4.473912409542694, - "density_peak": 12, - "bpm_avg": 244.02237654320987, - "bpm_change": 19, - "scroll_change": 35, - "rhythm_complexity": 569, - "color_complexity": 0.0035150165391702073 - }, - { - "songno": "1096", - "difficulty": "oni", - "note_count": 411, - "density_avg": 3.2178797525898206, - "density_peak": 7, - "bpm_avg": 139.9713868613138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 276, - "color_complexity": 0.000493655691089331 - }, - { - "songno": "1082", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.614365411436541, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.0023097318888378746 - }, - { - "songno": "1082", - "difficulty": "ura", - "note_count": 448, - "density_avg": 4.0613668061366806, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 194, - "color_complexity": 0.0011019428908422544 - }, - { - "songno": "270", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.9876288659793815, - "density_peak": 11, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.004469801528064703 - }, - { - "songno": "270", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.711340206185566, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.004662824928395057 - }, - { - "songno": "1069", - "difficulty": "oni", - "note_count": 766, - "density_avg": 5.894855166450497, - "density_peak": 13, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.0068770676731100535 - }, - { - "songno": "1055", - "difficulty": "oni", - "note_count": 318, - "density_avg": 3.0607287088842856, - "density_peak": 6, - "bpm_avg": 118.64779874213836, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 297, - "color_complexity": 0.0003497159012737784 - }, - { - "songno": "1041", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.706870828030499, - "density_peak": 18, - "bpm_avg": 227.62018730489075, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 812, - "color_complexity": 0.012832984602094512 - }, - { - "songno": "1040", - "difficulty": "oni", - "note_count": 1085, - "density_avg": 8.242753623188408, - "density_peak": 18, - "bpm_avg": 213.5483870967742, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 965, - "color_complexity": 0.015968218300661995 - }, - { - "songno": "1054", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.720156555772994, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0025290626378815 - }, - { - "songno": "1068", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.863992707383774, - "density_peak": 14, - "bpm_avg": 255.12566844919786, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.005791964138130194 - }, - { - "songno": "517", - "difficulty": "oni", - "note_count": 814, - "density_avg": 6.397373929590866, - "density_peak": 14, - "bpm_avg": 181.8095823095823, - "bpm_change": 1, - "scroll_change": 32, - "rhythm_complexity": 749, - "color_complexity": 0.006798216927391931 - }, - { - "songno": "1083", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.861538461538461, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0029674998115468347 - }, - { - "songno": "265", - "difficulty": "oni", - "note_count": 1414, - "density_avg": 8.299364326843058, - "density_peak": 15, - "bpm_avg": 214.70616690240453, - "bpm_change": 25, - "scroll_change": 20, - "rhythm_complexity": 1331, - "color_complexity": 0.018173703563239794 - }, - { - "songno": "1097", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.7577276524644945, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001849195302450555 - }, - { - "songno": "1097", - "difficulty": "ura", - "note_count": 621, - "density_avg": 6.7275, - "density_peak": 18, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 549, - "color_complexity": 0.005603147077769407 - }, - { - "songno": "503", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.702320758171336, - "density_peak": 17, - "bpm_avg": 191.78205128205127, - "bpm_change": 19, - "scroll_change": 18, - "rhythm_complexity": 771, - "color_complexity": 0.014996263091616608 - }, - { - "songno": "259", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.331684981684981, - "density_peak": 13, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 689, - "color_complexity": 0.00801465114055647 - }, - { - "songno": "1242", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.888470112174466, - "density_peak": 12, - "bpm_avg": 168.0115107913669, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 670, - "color_complexity": 0.00495241123441391 - }, - { - "songno": "1256", - "difficulty": "oni", - "note_count": 611, - "density_avg": 4.783050375063426, - "density_peak": 13, - "bpm_avg": 198.7643207855974, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 554, - "color_complexity": 0.0027301159464871287 - }, - { - "songno": "1256", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.820404786723998, - "density_peak": 16, - "bpm_avg": 199.37337337337337, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 914, - "color_complexity": 0.016703133633069436 - }, - { - "songno": "932", - "difficulty": "oni", - "note_count": 618, - "density_avg": 4.336842105263158, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 523, - "color_complexity": 0.002924875537246298 - }, - { - "songno": "926", - "difficulty": "oni", - "note_count": 379, - "density_avg": 4.4018583042973285, - "density_peak": 9, - "bpm_avg": 195.778364116095, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 344, - "color_complexity": 0.0024355778533635616 - }, - { - "songno": "926", - "difficulty": "ura", - "note_count": 486, - "density_avg": 5.644599303135889, - "density_peak": 14, - "bpm_avg": 196.70781893004116, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 473, - "color_complexity": 0.003387862559838752 - }, - { - "songno": "1281", - "difficulty": "oni", - "note_count": 227, - "density_avg": 2.445791245791246, - "density_peak": 5, - "bpm_avg": 64, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0002404172203017832 - }, - { - "songno": "715", - "difficulty": "oni", - "note_count": 868, - "density_avg": 6.799333333333333, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.01134628875880108 - }, - { - "songno": "701", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.786726323639075, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 752, - "color_complexity": 0.005823289006124861 - }, - { - "songno": "1295", - "difficulty": "oni", - "note_count": 189, - "density_avg": 3.0687679083094554, - "density_peak": 6, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 164, - "color_complexity": 0.00026016401427469103 - }, - { - "songno": "1295", - "difficulty": "ura", - "note_count": 452, - "density_avg": 6.969614512471655, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 394, - "color_complexity": 0.004021272310681372 - }, - { - "songno": "1450", - "difficulty": "oni", - "note_count": 208, - "density_avg": 6.540880503144654, - "density_peak": 10, - "bpm_avg": 184.6153846153846, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 206, - "color_complexity": 0.0015812777777777787 - }, - { - "songno": "1450", - "difficulty": "ura", - "note_count": 356, - "density_avg": 11.142410015649453, - "density_peak": 21, - "bpm_avg": 198.87640449438203, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.003905555555555551 - }, - { - "songno": "1336", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.838721804511278, - "density_peak": 9, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0024054803628501026 - }, - { - "songno": "1322", - "difficulty": "oni", - "note_count": 796, - "density_avg": 6.39871382636656, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007560471510146754 - }, - { - "songno": "846", - "difficulty": "oni", - "note_count": 1075, - "density_avg": 7.6326606875934235, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 1028, - "color_complexity": 0.012019652202160877 - }, - { - "songno": "852", - "difficulty": "oni", - "note_count": 646, - "density_avg": 6.333332008926779, - "density_peak": 11, - "bpm_avg": 150.0066563467492, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.005626239483722758 - }, - { - "songno": "12", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.996341168568955, - "density_peak": 13, - "bpm_avg": 166.52425044091711, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 414, - "color_complexity": 0.004864000452060178 - }, - { - "songno": "107", - "difficulty": "oni", - "note_count": 557, - "density_avg": 5.21118234134049, - "density_peak": 11, - "bpm_avg": 182.99942549371633, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.002788441409346582 - }, - { - "songno": "661", - "difficulty": "oni", - "note_count": 343, - "density_avg": 4.0077412373195, - "density_peak": 9, - "bpm_avg": 174.98749271137027, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 295, - "color_complexity": 0.0018034653512230387 - }, - { - "songno": "675", - "difficulty": "oni", - "note_count": 675, - "density_avg": 5.425038639876353, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 650, - "color_complexity": 0.005424337539556581 - }, - { - "songno": "113", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.348435814455232, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 520, - "color_complexity": 0.004471486876451478 - }, - { - "songno": "649", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.002106741573034, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005403401206080654 - }, - { - "songno": "891", - "difficulty": "oni", - "note_count": 637, - "density_avg": 5.5142600574712635, - "density_peak": 13, - "bpm_avg": 120.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 578, - "color_complexity": 0.004390081260147561 - }, - { - "songno": "1134", - "difficulty": "oni", - "note_count": 579, - "density_avg": 4.92947912277412, - "density_peak": 14, - "bpm_avg": 245.72967184801368, - "bpm_change": 43, - "scroll_change": 53, - "rhythm_complexity": 506, - "color_complexity": 0.0037710761659396357 - }, - { - "songno": "1120", - "difficulty": "oni", - "note_count": 569, - "density_avg": 3.848777688254768, - "density_peak": 13, - "bpm_avg": 224.25061511423542, - "bpm_change": 19, - "scroll_change": 16, - "rhythm_complexity": 424, - "color_complexity": 0.002806086031184233 - }, - { - "songno": "1120", - "difficulty": "ura", - "note_count": 1316, - "density_avg": 8.672958041803211, - "density_peak": 19, - "bpm_avg": 230.7918693009118, - "bpm_change": 31, - "scroll_change": 20, - "rhythm_complexity": 1140, - "color_complexity": 0.027594331254300268 - }, - { - "songno": "1108", - "difficulty": "oni", - "note_count": 994, - "density_avg": 7.341574428318002, - "density_peak": 17, - "bpm_avg": 189.52328973843058, - "bpm_change": 4, - "scroll_change": 3, - "rhythm_complexity": 895, - "color_complexity": 0.01436886916690537 - }, - { - "songno": "488", - "difficulty": "oni", - "note_count": 721, - "density_avg": 5.4534740545294635, - "density_peak": 11, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.005557804243332835 - }, - { - "songno": "463", - "difficulty": "oni", - "note_count": 1262, - "density_avg": 10.51228654727197, - "density_peak": 21, - "bpm_avg": 289.3502377179081, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1206, - "color_complexity": 0.02688671604938281 - }, - { - "songno": "305", - "difficulty": "oni", - "note_count": 404, - "density_avg": 2.9793510324483776, - "density_peak": 7, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 334, - "color_complexity": 0.0011269350488797814 - }, - { - "songno": "311", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.8063881238942265, - "density_peak": 11, - "bpm_avg": 139.97432432432433, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.0036900919925151624 - }, - { - "songno": "477", - "difficulty": "oni", - "note_count": 823, - "density_avg": 7.382794117647059, - "density_peak": 16, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007441174932292236 - }, - { - "songno": "339", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.7045606595527065, - "density_peak": 7, - "bpm_avg": 203.93999999999994, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 195, - "color_complexity": 0.0013393247619027753 - }, - { - "songno": "473", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.60376647834275, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 645, - "color_complexity": 0.00546303918146272 - }, - { - "songno": "315", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.775949367088607, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002333632622222223 - }, - { - "songno": "301", - "difficulty": "oni", - "note_count": 635, - "density_avg": 4.890992167101827, - "density_peak": 9, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.0024983523777777814 - }, - { - "songno": "301", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.021614583333334, - "density_peak": 14, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 880, - "color_complexity": 0.008932103429302611 - }, - { - "songno": "467", - "difficulty": "oni", - "note_count": 282, - "density_avg": 3.4825301204819277, - "density_peak": 9, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0013235945910575755 - }, - { - "songno": "1124", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.5416666666666665, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 199, - "color_complexity": 0.0006831732207862458 - }, - { - "songno": "1130", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.805547663494926, - "density_peak": 13, - "bpm_avg": 129.99072072072084, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.0020258420005310647 - }, - { - "songno": "1118", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.732288946910357, - "density_peak": 7, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 288, - "color_complexity": 0.0007325935245541832 - }, - { - "songno": "498", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.275883838383838, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 400, - "color_complexity": 0.003376567696496029 - }, - { - "songno": "117", - "difficulty": "oni", - "note_count": 535, - "density_avg": 5.356246848066588, - "density_peak": 11, - "bpm_avg": 251.99521495327105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 462, - "color_complexity": 0.004222161853333101 - }, - { - "songno": "671", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.450273224043716, - "density_peak": 8, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0012054266683730259 - }, - { - "songno": "671", - "difficulty": "ura", - "note_count": 677, - "density_avg": 5.697158469945356, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 605, - "color_complexity": 0.005413294539821419 - }, - { - "songno": "103", - "difficulty": "oni", - "note_count": 610, - "density_avg": 6.009514854555188, - "density_peak": 13, - "bpm_avg": 154.01629508196717, - "bpm_change": 16, - "scroll_change": 1, - "rhythm_complexity": 477, - "color_complexity": 0.005826070741159816 - }, - { - "songno": "895", - "difficulty": "oni", - "note_count": 173, - "density_avg": 2.6657026360705482, - "density_peak": 5, - "bpm_avg": 124.72254335260115, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 150, - "color_complexity": 0.00019134521669944668 - }, - { - "songno": "881", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.192570869990225, - "density_peak": 11, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 598, - "color_complexity": 0.0057253069467954314 - }, - { - "songno": "881", - "difficulty": "ura", - "note_count": 1072, - "density_avg": 8.383186705767352, - "density_peak": 14, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 984, - "color_complexity": 0.012190500794968669 - }, - { - "songno": "1440", - "difficulty": "oni", - "note_count": 517, - "density_avg": 4.226158038147139, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 482, - "color_complexity": 0.0014626288888888938 - }, - { - "songno": "1440", - "difficulty": "ura", - "note_count": 783, - "density_avg": 6.400544959128065, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 707, - "color_complexity": 0.008214471133786864 - }, - { - "songno": "1326", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.7503373819163293, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 348, - "color_complexity": 0.0018581379520222529 - }, - { - "songno": "1332", - "difficulty": "oni", - "note_count": 313, - "density_avg": 3.2317886178861785, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 283, - "color_complexity": 0.0008785929815157734 - }, - { - "songno": "16", - "difficulty": "oni", - "note_count": 1158, - "density_avg": 7.917948717948717, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 1144, - "color_complexity": 0.018309384984222153 - }, - { - "songno": "856", - "difficulty": "oni", - "note_count": 1069, - "density_avg": 8.325545171339565, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 26, - "rhythm_complexity": 1040, - "color_complexity": 0.016318527571019367 - }, - { - "songno": "856", - "difficulty": "ura", - "note_count": 1217, - "density_avg": 9.390432098765432, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 61, - "rhythm_complexity": 1138, - "color_complexity": 0.02326034249281563 - }, - { - "songno": "842", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4280104712041886, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005455513520408136 - }, - { - "songno": "842", - "difficulty": "ura", - "note_count": 400, - "density_avg": 4.712041884816754, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0022741689577120945 - }, - { - "songno": "705", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.421748544910672, - "density_peak": 11, - "bpm_avg": 159.99186011904925, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 640, - "color_complexity": 0.0043446264976376905 - }, - { - "songno": "711", - "difficulty": "oni", - "note_count": 329, - "density_avg": 3.3989155251141554, - "density_peak": 9, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.001112275485585283 - }, - { - "songno": "711", - "difficulty": "ura", - "note_count": 579, - "density_avg": 5.981678082191781, - "density_peak": 11, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004185147433958592 - }, - { - "songno": "1285", - "difficulty": "oni", - "note_count": 262, - "density_avg": 2.8172043010752685, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.00034787009731670446 - }, - { - "songno": "739", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.305287587517423, - "density_peak": 13, - "bpm_avg": 145.00850456621015, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 827, - "color_complexity": 0.006125403478426269 - }, - { - "songno": "1252", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.505896730068671, - "density_peak": 8, - "bpm_avg": 121.04021428571414, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0013462417466670125 - }, - { - "songno": "1246", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.708483754512635, - "density_peak": 11, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005117602631330323 - }, - { - "songno": "922", - "difficulty": "oni", - "note_count": 653, - "density_avg": 4.737033006891549, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 585, - "color_complexity": 0.0023023720266436647 - }, - { - "songno": "936", - "difficulty": "oni", - "note_count": 165, - "density_avg": 4.2076502732240435, - "density_peak": 8, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 151, - "color_complexity": 0.0008537801738766207 - }, - { - "songno": "936", - "difficulty": "ura", - "note_count": 298, - "density_avg": 7.436720142602495, - "density_peak": 12, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.0031363811111111174 - }, - { - "songno": "507", - "difficulty": "oni", - "note_count": 713, - "density_avg": 6.050690493928884, - "density_peak": 11, - "bpm_avg": 162.96774193548387, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 688, - "color_complexity": 0.005449118371276925 - }, - { - "songno": "507", - "difficulty": "ura", - "note_count": 820, - "density_avg": 6.958718380114565, - "density_peak": 16, - "bpm_avg": 163.04634146341462, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 786, - "color_complexity": 0.008775243848637624 - }, - { - "songno": "261", - "difficulty": "oni", - "note_count": 596, - "density_avg": 4.68339670468948, - "density_peak": 10, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 448, - "color_complexity": 0.0032035497958133943 - }, - { - "songno": "275", - "difficulty": "oni", - "note_count": 471, - "density_avg": 3.7983870967741935, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0014629954324407563 - }, - { - "songno": "275", - "difficulty": "ura", - "note_count": 579, - "density_avg": 4.669354838709678, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032396907410827207 - }, - { - "songno": "1087", - "difficulty": "oni", - "note_count": 432, - "density_avg": 4.593417721518987, - "density_peak": 8, - "bpm_avg": 126, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0009177726570637099 - }, - { - "songno": "513", - "difficulty": "oni", - "note_count": 902, - "density_avg": 8.046009389671362, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.00931081721731946 - }, - { - "songno": "1050", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.37177643444115, - "density_peak": 13, - "bpm_avg": 254.4884287454324, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 681, - "color_complexity": 0.00750678215702546 - }, - { - "songno": "1044", - "difficulty": "oni", - "note_count": 354, - "density_avg": 4.137662337662339, - "density_peak": 9, - "bpm_avg": 134.8093220338983, - "bpm_change": 2, - "scroll_change": 10, - "rhythm_complexity": 299, - "color_complexity": 0.001672735809948981 - }, - { - "songno": "1078", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.1607511737089204, - "density_peak": 8, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.001620308782656562 - }, - { - "songno": "1079", - "difficulty": "oni", - "note_count": 720, - "density_avg": 4.84370257966616, - "density_peak": 8, - "bpm_avg": 152.2111111111111, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.003269103869082218 - }, - { - "songno": "1045", - "difficulty": "oni", - "note_count": 867, - "density_avg": 6.920790960247057, - "density_peak": 12, - "bpm_avg": 194.20876585928488, - "bpm_change": 16, - "scroll_change": 16, - "rhythm_complexity": 773, - "color_complexity": 0.008916370348287475 - }, - { - "songno": "1051", - "difficulty": "oni", - "note_count": 749, - "density_avg": 7.204677320222285, - "density_peak": 15, - "bpm_avg": 224.78480640854474, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 699, - "color_complexity": 0.00986952735460736 - }, - { - "songno": "248", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.8250728862973755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.005878941111111095 - }, - { - "songno": "248", - "difficulty": "ura", - "note_count": 942, - "density_avg": 8.215116279069766, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 891, - "color_complexity": 0.012005669489796008 - }, - { - "songno": "274", - "difficulty": "oni", - "note_count": 654, - "density_avg": 4.980907668231612, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.003646207172941537 - }, - { - "songno": "274", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.826291079812206, - "density_peak": 9, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.005340539587654338 - }, - { - "songno": "512", - "difficulty": "oni", - "note_count": 456, - "density_avg": 4.061068702290077, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0020193846947050348 - }, - { - "songno": "1086", - "difficulty": "oni", - "note_count": 913, - "density_avg": 8.151785714285714, - "density_peak": 17, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 850, - "color_complexity": 0.012738948317727986 - }, - { - "songno": "1092", - "difficulty": "oni", - "note_count": 824, - "density_avg": 5.540486409155937, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 802, - "color_complexity": 0.00375172717596914 - }, - { - "songno": "506", - "difficulty": "oni", - "note_count": 250, - "density_avg": 3.7887229774905276, - "density_peak": 8, - "bpm_avg": 139.016, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 218, - "color_complexity": 0.0010185472151319195 - }, - { - "songno": "506", - "difficulty": "ura", - "note_count": 348, - "density_avg": 5.022071307300509, - "density_peak": 9, - "bpm_avg": 138.16666666666666, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 314, - "color_complexity": 0.0018775119784505694 - }, - { - "songno": "260", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.701195219123506, - "density_peak": 10, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 460, - "color_complexity": 0.0031646464661656587 - }, - { - "songno": "937", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.756818181818183, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.0026147915360533627 - }, - { - "songno": "1247", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.199855530614306, - "density_peak": 15, - "bpm_avg": 117.65747800586507, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 590, - "color_complexity": 0.0072310435349687225 - }, - { - "songno": "738", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.632268632268633, - "density_peak": 12, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0035795386094999554 - }, - { - "songno": "1284", - "difficulty": "oni", - "note_count": 334, - "density_avg": 3.595138888888889, - "density_peak": 7, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 318, - "color_complexity": 0.0010574817635116592 - }, - { - "songno": "704", - "difficulty": "oni", - "note_count": 620, - "density_avg": 4.860627177700349, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 491, - "color_complexity": 0.0030628671679145195 - }, - { - "songno": "843", - "difficulty": "oni", - "note_count": 501, - "density_avg": 4.865258557902404, - "density_peak": 15, - "bpm_avg": 127.55738522954091, - "bpm_change": 27, - "scroll_change": 86, - "rhythm_complexity": 430, - "color_complexity": 0.004476905848974846 - }, - { - "songno": "857", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.366604798240187, - "density_peak": 15, - "bpm_avg": 159.30906389301634, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 562, - "color_complexity": 0.00426951634150544 - }, - { - "songno": "17", - "difficulty": "oni", - "note_count": 700, - "density_avg": 5.400534436559395, - "density_peak": 11, - "bpm_avg": 144.20714285714286, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.00472643746528474 - }, - { - "songno": "1333", - "difficulty": "oni", - "note_count": 172, - "density_avg": 1.5733333333333333, - "density_peak": 4, - "bpm_avg": 59, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00009861868255332103 - }, - { - "songno": "1455", - "difficulty": "oni", - "note_count": 503, - "density_avg": 5.432282545242265, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.00321445135785848 - }, - { - "songno": "1455", - "difficulty": "ura", - "note_count": 766, - "density_avg": 8.047132311186827, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.009616679598199184 - }, - { - "songno": "1441", - "difficulty": "oni", - "note_count": 372, - "density_avg": 5.264150943396226, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 268, - "color_complexity": 0.0019842107429846956 - }, - { - "songno": "1327", - "difficulty": "oni", - "note_count": 395, - "density_avg": 4.839032274147445, - "density_peak": 8, - "bpm_avg": 147.0087088607595, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.001427526775067218 - }, - { - "songno": "1327", - "difficulty": "ura", - "note_count": 512, - "density_avg": 6.22052515086054, - "density_peak": 9, - "bpm_avg": 147.0083984375, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 469, - "color_complexity": 0.004347462507503395 - }, - { - "songno": "880", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.259266555534577, - "density_peak": 12, - "bpm_avg": 170.78512968299415, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 664, - "color_complexity": 0.0054895389038104436 - }, - { - "songno": "894", - "difficulty": "oni", - "note_count": 323, - "density_avg": 2.367926689576174, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005058558384247332 - }, - { - "songno": "116", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.164847811117171, - "density_peak": 9, - "bpm_avg": 170.1988493150685, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 331, - "color_complexity": 0.0016319783493619318 - }, - { - "songno": "670", - "difficulty": "oni", - "note_count": 690, - "density_avg": 4.890907753925259, - "density_peak": 14, - "bpm_avg": 169.8479565217385, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 608, - "color_complexity": 0.005160122644245964 - }, - { - "songno": "499", - "difficulty": "oni", - "note_count": 936, - "density_avg": 6.872319807589215, - "density_peak": 13, - "bpm_avg": 193.30128205128204, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 833, - "color_complexity": 0.011851530953352691 - }, - { - "songno": "1119", - "difficulty": "oni", - "note_count": 562, - "density_avg": 4.974161313347609, - "density_peak": 9, - "bpm_avg": 248, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.00358868590492983 - }, - { - "songno": "1131", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.519946984758119, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0014665661983364843 - }, - { - "songno": "1131", - "difficulty": "ura", - "note_count": 662, - "density_avg": 5.594954273099968, - "density_peak": 10, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.004430385128495827 - }, - { - "songno": "1125", - "difficulty": "oni", - "note_count": 397, - "density_avg": 2.8931070158422245, - "density_peak": 6, - "bpm_avg": 98, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 230, - "color_complexity": 0.0008972601216066811 - }, - { - "songno": "300", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.988133764832794, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.003133776137437903 - }, - { - "songno": "466", - "difficulty": "oni", - "note_count": 384, - "density_avg": 4.708045977011494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.0024928036264185976 - }, - { - "songno": "472", - "difficulty": "oni", - "note_count": 670, - "density_avg": 5.787793427230047, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 636, - "color_complexity": 0.005590136340236864 - }, - { - "songno": "314", - "difficulty": "oni", - "note_count": 293, - "density_avg": 2.5320987654320986, - "density_peak": 6, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 273, - "color_complexity": 0.00022264120762903998 - }, - { - "songno": "302", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.484084143905007, - "density_peak": 11, - "bpm_avg": 143.44724999999937, - "bpm_change": 12, - "scroll_change": 4, - "rhythm_complexity": 404, - "color_complexity": 0.004238094429688095 - }, - { - "songno": "316", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.634870799426448, - "density_peak": 9, - "bpm_avg": 130.00513821138208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0028332665654973027 - }, - { - "songno": "470", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.6381838622223714, - "density_peak": 10, - "bpm_avg": 150.00764227642276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.00177708789060178 - }, - { - "songno": "470", - "difficulty": "ura", - "note_count": 822, - "density_avg": 6.199328674385023, - "density_peak": 11, - "bpm_avg": 150.00743309002434, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 750, - "color_complexity": 0.007301105632067015 - }, - { - "songno": "458", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.355463347164592, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 566, - "color_complexity": 0.0028292610768898946 - }, - { - "songno": "1133", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.484926692360691, - "density_peak": 10, - "bpm_avg": 194.03649842271298, - "bpm_change": 4, - "scroll_change": 7, - "rhythm_complexity": 592, - "color_complexity": 0.0035904439029338236 - }, - { - "songno": "1133", - "difficulty": "ura", - "note_count": 929, - "density_avg": 6.571761667512748, - "density_peak": 13, - "bpm_avg": 194.36912809472557, - "bpm_change": 5, - "scroll_change": 22, - "rhythm_complexity": 810, - "color_complexity": 0.009096481039119107 - }, - { - "songno": "1127", - "difficulty": "oni", - "note_count": 524, - "density_avg": 6.726075268817204, - "density_peak": 11, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.004093829722877772 - }, - { - "songno": "100", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.773836439104744, - "density_peak": 11, - "bpm_avg": 149.95562130177518, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 476, - "color_complexity": 0.004756157454311307 - }, - { - "songno": "100", - "difficulty": "ura", - "note_count": 659, - "density_avg": 6.107286772260961, - "density_peak": 11, - "bpm_avg": 149.99235204855847, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 583, - "color_complexity": 0.0054523159032933855 - }, - { - "songno": "666", - "difficulty": "oni", - "note_count": 639, - "density_avg": 7.153584905660376, - "density_peak": 11, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 615, - "color_complexity": 0.008336757969547338 - }, - { - "songno": "672", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.8876166242578454, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0016144455838139153 - }, - { - "songno": "114", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.051903114186851, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 556, - "color_complexity": 0.0040498389003758625 - }, - { - "songno": "882", - "difficulty": "oni", - "note_count": 352, - "density_avg": 3.282393876130828, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0005044328294896559 - }, - { - "songno": "882", - "difficulty": "ura", - "note_count": 569, - "density_avg": 5.305915100904662, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.0024828088615125757 - }, - { - "songno": "896", - "difficulty": "oni", - "note_count": 940, - "density_avg": 7.560814214917917, - "density_peak": 20, - "bpm_avg": 247.38173404255332, - "bpm_change": 11, - "scroll_change": 24, - "rhythm_complexity": 842, - "color_complexity": 0.011939282275545976 - }, - { - "songno": "128", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.034374250580236, - "density_peak": 13, - "bpm_avg": 173.99227064220185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 768, - "color_complexity": 0.008631030824992465 - }, - { - "songno": "1457", - "difficulty": "oni", - "note_count": 622, - "density_avg": 6.269258459323255, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.004413508641975329 - }, - { - "songno": "1331", - "difficulty": "oni", - "note_count": 211, - "density_avg": 2.4981785063752278, - "density_peak": 5, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0003341390948416037 - }, - { - "songno": "1325", - "difficulty": "oni", - "note_count": 714, - "density_avg": 7.193954659949623, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.009706423538012446 - }, - { - "songno": "869", - "difficulty": "oni", - "note_count": 984, - "density_avg": 7.46041446388104, - "density_peak": 18, - "bpm_avg": 290.0498780487808, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 842, - "color_complexity": 0.01298671248501483 - }, - { - "songno": "699", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.21127385707945, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 909, - "color_complexity": 0.014662068882383061 - }, - { - "songno": "1319", - "difficulty": "oni", - "note_count": 719, - "density_avg": 4.938260936923714, - "density_peak": 13, - "bpm_avg": 235.326842837274, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 627, - "color_complexity": 0.0066211093414901105 - }, - { - "songno": "1319", - "difficulty": "ura", - "note_count": 1337, - "density_avg": 8.929103950483837, - "density_peak": 18, - "bpm_avg": 234.69691847419597, - "bpm_change": 19, - "scroll_change": 71, - "rhythm_complexity": 1222, - "color_complexity": 0.0210652104195674 - }, - { - "songno": "15", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.108978873239437, - "density_peak": 11, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.004710197230383599 - }, - { - "songno": "15", - "difficulty": "ura", - "note_count": 932, - "density_avg": 8.368309859154929, - "density_peak": 16, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.013968603750755133 - }, - { - "songno": "855", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.34520037278658, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 357, - "color_complexity": 0.002449154203014268 - }, - { - "songno": "1286", - "difficulty": "oni", - "note_count": 306, - "density_avg": 2.8570024570024573, - "density_peak": 6, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007984180708171067 - }, - { - "songno": "1292", - "difficulty": "oni", - "note_count": 472, - "density_avg": 3.973976272483735, - "density_peak": 8, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 402, - "color_complexity": 0.0017641762654321013 - }, - { - "songno": "706", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.8145789101203116, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 316, - "color_complexity": 0.002161003383950621 - }, - { - "songno": "909", - "difficulty": "oni", - "note_count": 439, - "density_avg": 5.226190476190476, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0020473420061728406 - }, - { - "songno": "1245", - "difficulty": "oni", - "note_count": 632, - "density_avg": 5.166715328467153, - "density_peak": 11, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 562, - "color_complexity": 0.004657912686069128 - }, - { - "songno": "1251", - "difficulty": "oni", - "note_count": 403, - "density_avg": 4.257601239064866, - "density_peak": 8, - "bpm_avg": 164.69370967741918, - "bpm_change": 39, - "scroll_change": 1, - "rhythm_complexity": 278, - "color_complexity": 0.0020379168461830727 - }, - { - "songno": "1251", - "difficulty": "ura", - "note_count": 645, - "density_avg": 6.814274935972303, - "density_peak": 11, - "bpm_avg": 164.84160620155023, - "bpm_change": 41, - "scroll_change": 1, - "rhythm_complexity": 556, - "color_complexity": 0.0056928150574618456 - }, - { - "songno": "935", - "difficulty": "oni", - "note_count": 732, - "density_avg": 5.140899818980971, - "density_peak": 12, - "bpm_avg": 152.56129781420765, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 564, - "color_complexity": 0.0049699034012006755 - }, - { - "songno": "1279", - "difficulty": "oni", - "note_count": 880, - "density_avg": 6.1145080600333515, - "density_peak": 13, - "bpm_avg": 249.85795454545453, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.008094883577688882 - }, - { - "songno": "921", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.1525, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 266, - "color_complexity": 0.001086549577416047 - }, - { - "songno": "1084", - "difficulty": "oni", - "note_count": 435, - "density_avg": 3.0948616600790513, - "density_peak": 8, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 342, - "color_complexity": 0.0011149488297520637 - }, - { - "songno": "1084", - "difficulty": "ura", - "note_count": 664, - "density_avg": 4.705511811023621, - "density_peak": 10, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 577, - "color_complexity": 0.003746192557562716 - }, - { - "songno": "510", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.914560439560439, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.004385576756741015 - }, - { - "songno": "276", - "difficulty": "oni", - "note_count": 572, - "density_avg": 4.707818930041152, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.002875670864197522 - }, - { - "songno": "276", - "difficulty": "ura", - "note_count": 700, - "density_avg": 5.6811594202898545, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.003454018737997262 - }, - { - "songno": "262", - "difficulty": "oni", - "note_count": 589, - "density_avg": 4.016704921825748, - "density_peak": 9, - "bpm_avg": 111.04259762309044, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 463, - "color_complexity": 0.0020354118158598363 - }, - { - "songno": "504", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.688226103538581, - "density_peak": 12, - "bpm_avg": 164.96924705882358, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 670, - "color_complexity": 0.003208694740082672 - }, - { - "songno": "504", - "difficulty": "ura", - "note_count": 1100, - "density_avg": 7.347823274049404, - "density_peak": 14, - "bpm_avg": 164.97976363636315, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 1000, - "color_complexity": 0.0132445012548659 - }, - { - "songno": "1090", - "difficulty": "oni", - "note_count": 243, - "density_avg": 2.6878923766816145, - "density_peak": 6, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 134, - "color_complexity": 0.00043362500626337907 - }, - { - "songno": "538", - "difficulty": "oni", - "note_count": 945, - "density_avg": 7.538560738174717, - "density_peak": 21, - "bpm_avg": 200.02753439153435, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 893, - "color_complexity": 0.012391606183705058 - }, - { - "songno": "1047", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.228545618789521, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.0070913098305485 - }, - { - "songno": "1053", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.9206740498178747, - "density_peak": 9, - "bpm_avg": 183.6036036036036, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 481, - "color_complexity": 0.0018931107561911255 - }, - { - "songno": "1053", - "difficulty": "ura", - "note_count": 1099, - "density_avg": 7.763641046396115, - "density_peak": 14, - "bpm_avg": 182.57506824385806, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 972, - "color_complexity": 0.016074045730421618 - }, - { - "songno": "288", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.403861003861005, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 749, - "color_complexity": 0.01046521247109798 - }, - { - "songno": "1052", - "difficulty": "oni", - "note_count": 742, - "density_avg": 5.278884462151394, - "density_peak": 13, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 639, - "color_complexity": 0.00550097144024776 - }, - { - "songno": "1052", - "difficulty": "ura", - "note_count": 1176, - "density_avg": 8.045977011494253, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 1093, - "color_complexity": 0.02131716656353882 - }, - { - "songno": "1046", - "difficulty": "oni", - "note_count": 541, - "density_avg": 6.102650874224478, - "density_peak": 13, - "bpm_avg": 199.72273567467653, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.00450128330359733 - }, - { - "songno": "1046", - "difficulty": "ura", - "note_count": 621, - "density_avg": 7.73109243697479, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 604, - "color_complexity": 0.006374884460034465 - }, - { - "songno": "539", - "difficulty": "oni", - "note_count": 792, - "density_avg": 5.675570032573289, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 757, - "color_complexity": 0.006197943335459175 - }, - { - "songno": "539", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.158957654723126, - "density_peak": 14, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 937, - "color_complexity": 0.010304696111111135 - }, - { - "songno": "1091", - "difficulty": "oni", - "note_count": 274, - "density_avg": 3.233981841763943, - "density_peak": 8, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.0003489265802469149 - }, - { - "songno": "505", - "difficulty": "oni", - "note_count": 728, - "density_avg": 4.817204301075269, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.0024496518686301797 - }, - { - "songno": "511", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.973861386138614, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.0015197719062607078 - }, - { - "songno": "511", - "difficulty": "ura", - "note_count": 546, - "density_avg": 6.270891089108911, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.005743839326187316 - }, - { - "songno": "1085", - "difficulty": "oni", - "note_count": 1138, - "density_avg": 9.204767986377183, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1088, - "color_complexity": 0.014703381743512217 - }, - { - "songno": "277", - "difficulty": "oni", - "note_count": 445, - "density_avg": 3.6341917283048284, - "density_peak": 8, - "bpm_avg": 171.99826966292133, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0020813195040302883 - }, - { - "songno": "277", - "difficulty": "ura", - "note_count": 585, - "density_avg": 4.770737372264775, - "density_peak": 11, - "bpm_avg": 171.99473504273504, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.005060615261845435 - }, - { - "songno": "920", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.421110242376857, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004355153614285699 - }, - { - "songno": "920", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.717904612978889, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 825, - "color_complexity": 0.009295798702040838 - }, - { - "songno": "1278", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.283296371223447, - "density_peak": 19, - "bpm_avg": 231.9844375, - "bpm_change": 71, - "scroll_change": 187, - "rhythm_complexity": 847, - "color_complexity": 0.012190425640302392 - }, - { - "songno": "934", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.636731150793651, - "density_peak": 14, - "bpm_avg": 183.5, - "bpm_change": 0, - "scroll_change": 35, - "rhythm_complexity": 747, - "color_complexity": 0.010298519636411839 - }, - { - "songno": "1250", - "difficulty": "oni", - "note_count": 698, - "density_avg": 6.156917363045497, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006670612366998688 - }, - { - "songno": "1244", - "difficulty": "oni", - "note_count": 326, - "density_avg": 4.032552083333333, - "density_peak": 7, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.001092109461731194 - }, - { - "songno": "908", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.542407206174336, - "density_peak": 13, - "bpm_avg": 184.85773480662982, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 701, - "color_complexity": 0.005314764044482667 - }, - { - "songno": "707", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.883967391304348, - "density_peak": 12, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007304416946362079 - }, - { - "songno": "1293", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.611299435028249, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.0011822022666666638 - }, - { - "songno": "1287", - "difficulty": "oni", - "note_count": 304, - "density_avg": 3.5625, - "density_peak": 6, - "bpm_avg": 90, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 277, - "color_complexity": 0.000738419722991691 - }, - { - "songno": "713", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.952755905511811, - "density_peak": 12, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 708, - "color_complexity": 0.007394549478840226 - }, - { - "songno": "14", - "difficulty": "oni", - "note_count": 455, - "density_avg": 3.8595119490553125, - "density_peak": 7, - "bpm_avg": 128.00272527472532, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0014407419023724298 - }, - { - "songno": "1318", - "difficulty": "oni", - "note_count": 905, - "density_avg": 6.6112012987013, - "density_peak": 14, - "bpm_avg": 259.4088397790055, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 844, - "color_complexity": 0.007820317021683725 - }, - { - "songno": "1318", - "difficulty": "ura", - "note_count": 1159, - "density_avg": 8.46672077922078, - "density_peak": 18, - "bpm_avg": 256.48835202761, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 1094, - "color_complexity": 0.017110096093883732 - }, - { - "songno": "698", - "difficulty": "oni", - "note_count": 1194, - "density_avg": 8.223137475666464, - "density_peak": 16, - "bpm_avg": 199.92463986599665, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 1103, - "color_complexity": 0.018206996204650418 - }, - { - "songno": "868", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.151627906976745, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 859, - "color_complexity": 0.013822264805620656 - }, - { - "songno": "868", - "difficulty": "ura", - "note_count": 1305, - "density_avg": 9.711627906976744, - "density_peak": 25, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 120, - "rhythm_complexity": 1246, - "color_complexity": 0.019582738634989584 - }, - { - "songno": "1324", - "difficulty": "oni", - "note_count": 811, - "density_avg": 6.322102104295747, - "density_peak": 16, - "bpm_avg": 170.43156596794083, - "bpm_change": 11, - "scroll_change": 17, - "rhythm_complexity": 664, - "color_complexity": 0.006560420104808106 - }, - { - "songno": "1442", - "difficulty": "oni", - "note_count": 415, - "density_avg": 3.6744791666666665, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 379, - "color_complexity": 0.0013988094826594664 - }, - { - "songno": "1456", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.6178312046080645, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.0040473257165252905 - }, - { - "songno": "1330", - "difficulty": "oni", - "note_count": 297, - "density_avg": 2.2789237668161437, - "density_peak": 5, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0004440058069272963 - }, - { - "songno": "897", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.435308343409916, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 349, - "color_complexity": 0.0019701741906721485 - }, - { - "songno": "673", - "difficulty": "oni", - "note_count": 674, - "density_avg": 6.688190076869323, - "density_peak": 15, - "bpm_avg": 167.4925816023739, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 625, - "color_complexity": 0.00627578561114128 - }, - { - "songno": "115", - "difficulty": "oni", - "note_count": 341, - "density_avg": 4.05322570428458, - "density_peak": 8, - "bpm_avg": 164.7099706744868, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 320, - "color_complexity": 0.0008169411582718039 - }, - { - "songno": "101", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.42588215773468, - "density_peak": 7, - "bpm_avg": 143.83536842105286, - "bpm_change": 14, - "scroll_change": 2, - "rhythm_complexity": 223, - "color_complexity": 0.0005886783305206696 - }, - { - "songno": "1126", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.6896188158961882, - "density_peak": 8, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.0017448254881589416 - }, - { - "songno": "1132", - "difficulty": "oni", - "note_count": 595, - "density_avg": 4.1469696969696965, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 520, - "color_complexity": 0.0036295703122201078 - }, - { - "songno": "459", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.932275132275132, - "density_peak": 9, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.002235320574056874 - }, - { - "songno": "317", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.7348029392117565, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.002547114352429677 - }, - { - "songno": "317", - "difficulty": "ura", - "note_count": 569, - "density_avg": 6.093708165997322, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.0037641542935528097 - }, - { - "songno": "471", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.027810650887575, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.009396690742807612 - }, - { - "songno": "465", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.911212074590177, - "density_peak": 15, - "bpm_avg": 127.86786786786787, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 585, - "color_complexity": 0.0038404432358629553 - }, - { - "songno": "358", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.436433470507545, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.006004589644246098 - }, - { - "songno": "1196", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.168413062024918, - "density_peak": 11, - "bpm_avg": 200.14719412724295, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 315, - "color_complexity": 0.0033317869939527146 - }, - { - "songno": "1196", - "difficulty": "ura", - "note_count": 1119, - "density_avg": 7.858565931700912, - "density_peak": 15, - "bpm_avg": 200.09512064343178, - "bpm_change": 23, - "scroll_change": 2, - "rhythm_complexity": 758, - "color_complexity": 0.018550024251476196 - }, - { - "songno": "402", - "difficulty": "oni", - "note_count": 681, - "density_avg": 6.522988505747127, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 647, - "color_complexity": 0.005736246213711815 - }, - { - "songno": "402", - "difficulty": "ura", - "note_count": 943, - "density_avg": 8.936271025823265, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 825, - "color_complexity": 0.01097117310596598 - }, - { - "songno": "364", - "difficulty": "oni", - "note_count": 545, - "density_avg": 5.190476190476191, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.0034087314688095068 - }, - { - "songno": "416", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.592472562807775, - "density_peak": 12, - "bpm_avg": 183.0736162361628, - "bpm_change": 70, - "scroll_change": 2, - "rhythm_complexity": 444, - "color_complexity": 0.003853961241339756 - }, - { - "songno": "1169", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.307882534775889, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0025056026371154303 - }, - { - "songno": "1155", - "difficulty": "oni", - "note_count": 415, - "density_avg": 4.382259767687434, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0017484908903376147 - }, - { - "songno": "1141", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.660037878787878, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 690, - "color_complexity": 0.005247635711093078 - }, - { - "songno": "628", - "difficulty": "oni", - "note_count": 976, - "density_avg": 8.09585253456221, - "density_peak": 15, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 938, - "color_complexity": 0.014773061250000082 - }, - { - "songno": "166", - "difficulty": "oni", - "note_count": 592, - "density_avg": 5.519813519813519, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 516, - "color_complexity": 0.003721939591836732 - }, - { - "songno": "98", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.616406636158505, - "density_peak": 8, - "bpm_avg": 122.34319088319094, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 285, - "color_complexity": 0.0011109673572387985 - }, - { - "songno": "1394", - "difficulty": "oni", - "note_count": 678, - "density_avg": 6.064570230607967, - "density_peak": 13, - "bpm_avg": 160.51917404129793, - "bpm_change": 12, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.006599241176379303 - }, - { - "songno": "1380", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.656552330694812, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005310334211021441 - }, - { - "songno": "1380", - "difficulty": "ura", - "note_count": 865, - "density_avg": 7.227352682497801, - "density_peak": 17, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 761, - "color_complexity": 0.009448980577942735 - }, - { - "songno": "614", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.1925, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.003715440318086437 - }, - { - "songno": "199", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.686525892408245, - "density_peak": 9, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0015999809944002043 - }, - { - "songno": "67", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.904639175257731, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.004669144880604776 - }, - { - "songno": "73", - "difficulty": "oni", - "note_count": 876, - "density_avg": 8.239004149377593, - "density_peak": 14, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 862, - "color_complexity": 0.008713334446863187 - }, - { - "songno": "73", - "difficulty": "ura", - "note_count": 915, - "density_avg": 8.605809128630705, - "density_peak": 14, - "bpm_avg": 203.88852459016394, - "bpm_change": 2, - "scroll_change": 3, - "rhythm_complexity": 907, - "color_complexity": 0.012598723086419733 - }, - { - "songno": "833", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.589343729694607, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.01508577106060983 - }, - { - "songno": "1419", - "difficulty": "oni", - "note_count": 1055, - "density_avg": 7.124984692192965, - "density_peak": 16, - "bpm_avg": 206.34502369668246, - "bpm_change": 16, - "scroll_change": 30, - "rhythm_complexity": 901, - "color_complexity": 0.009958925222890526 - }, - { - "songno": "1419", - "difficulty": "ura", - "note_count": 1438, - "density_avg": 9.711590509358752, - "density_peak": 22, - "bpm_avg": 207.2489568845619, - "bpm_change": 16, - "scroll_change": 41, - "rhythm_complexity": 1155, - "color_complexity": 0.033885251462878296 - }, - { - "songno": "9", - "difficulty": "oni", - "note_count": 466, - "density_avg": 3.8193959638010546, - "density_peak": 8, - "bpm_avg": 163.00523605150215, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 396, - "color_complexity": 0.001314240542779155 - }, - { - "songno": "9", - "difficulty": "ura", - "note_count": 681, - "density_avg": 5.321182335265388, - "density_peak": 10, - "bpm_avg": 163.01602055800296, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 646, - "color_complexity": 0.0054555293492886126 - }, - { - "songno": "1431", - "difficulty": "oni", - "note_count": 825, - "density_avg": 6.043712840646725, - "density_peak": 13, - "bpm_avg": 180.0088000000001, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 762, - "color_complexity": 0.006014767136369827 - }, - { - "songno": "1357", - "difficulty": "oni", - "note_count": 703, - "density_avg": 4.911489717619787, - "density_peak": 14, - "bpm_avg": 199.9972972972973, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 616, - "color_complexity": 0.000616580816067637 - }, - { - "songno": "1357", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.073818374933616, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 955, - "color_complexity": 0.007854224150660213 - }, - { - "songno": "1343", - "difficulty": "oni", - "note_count": 279, - "density_avg": 3.169924812030075, - "density_peak": 6, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 221, - "color_complexity": 0.0006248289693254968 - }, - { - "songno": "1343", - "difficulty": "ura", - "note_count": 566, - "density_avg": 6.430743525480367, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0037054673898715158 - }, - { - "songno": "1425", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.841666666666667, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.00980659603242667 - }, - { - "songno": "748", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.702888583218709, - "density_peak": 17, - "bpm_avg": 186.27627627627626, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 917, - "color_complexity": 0.013256775651791036 - }, - { - "songno": "990", - "difficulty": "oni", - "note_count": 1111, - "density_avg": 9.593079700188397, - "density_peak": 16, - "bpm_avg": 203.65641764176416, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 1066, - "color_complexity": 0.014413828088018618 - }, - { - "songno": "984", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.1544298245614035, - "density_peak": 9, - "bpm_avg": 160.31390134529147, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 413, - "color_complexity": 0.0015697646971252327 - }, - { - "songno": "774", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.829218989124031, - "density_peak": 15, - "bpm_avg": 168.00981996726676, - "bpm_change": 20, - "scroll_change": 19, - "rhythm_complexity": 556, - "color_complexity": 0.008990997359901822 - }, - { - "songno": "760", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.545887151597554, - "density_peak": 16, - "bpm_avg": 203.1855, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 850, - "color_complexity": 0.014314210829957054 - }, - { - "songno": "947", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.201434878587197, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 619, - "color_complexity": 0.004581128752476536 - }, - { - "songno": "1237", - "difficulty": "oni", - "note_count": 552, - "density_avg": 4.51078355314197, - "density_peak": 9, - "bpm_avg": 205.5144927536232, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.002258348221638869 - }, - { - "songno": "1237", - "difficulty": "ura", - "note_count": 962, - "density_avg": 7.858136228512342, - "density_peak": 15, - "bpm_avg": 205.3014553014553, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 837, - "color_complexity": 0.01285488391387629 - }, - { - "songno": "238", - "difficulty": "oni", - "note_count": 484, - "density_avg": 6.06639566395664, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 466, - "color_complexity": 0.003516260348992351 - }, - { - "songno": "576", - "difficulty": "oni", - "note_count": 854, - "density_avg": 6.958518518518519, - "density_peak": 13, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 774, - "color_complexity": 0.008246150026396728 - }, - { - "songno": "204", - "difficulty": "oni", - "note_count": 390, - "density_avg": 3.1917948697674747, - "density_peak": 7, - "bpm_avg": 127.81471794871796, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0011555350740271254 - }, - { - "songno": "1021", - "difficulty": "oni", - "note_count": 458, - "density_avg": 4.285380116959064, - "density_peak": 13, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.002751824318386189 - }, - { - "songno": "1035", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.3507788161993775, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.005636438866440603 - }, - { - "songno": "1035", - "difficulty": "ura", - "note_count": 1089, - "density_avg": 8.551766893986361, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1032, - "color_complexity": 0.012806188619968862 - }, - { - "songno": "1034", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.262383964424658, - "density_peak": 11, - "bpm_avg": 185.36418918918918, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 670, - "color_complexity": 0.00449243120435546 - }, - { - "songno": "1020", - "difficulty": "oni", - "note_count": 556, - "density_avg": 5.183516460755705, - "density_peak": 10, - "bpm_avg": 159.95887769784176, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 486, - "color_complexity": 0.0027357075206317543 - }, - { - "songno": "1020", - "difficulty": "ura", - "note_count": 707, - "density_avg": 6.591270031932164, - "density_peak": 12, - "bpm_avg": 162.02029420084858, - "bpm_change": 5, - "scroll_change": 2, - "rhythm_complexity": 693, - "color_complexity": 0.004757860795108542 - }, - { - "songno": "1008", - "difficulty": "oni", - "note_count": 249, - "density_avg": 3.7456410256410257, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0010818908439331689 - }, - { - "songno": "588", - "difficulty": "oni", - "note_count": 861, - "density_avg": 6.837232524964337, - "density_peak": 14, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 819, - "color_complexity": 0.01153366890971254 - }, - { - "songno": "205", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.109133055169217, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.002658451806490057 - }, - { - "songno": "577", - "difficulty": "oni", - "note_count": 803, - "density_avg": 6.8195329087048835, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 675, - "color_complexity": 0.009285326511893845 - }, - { - "songno": "211", - "difficulty": "oni", - "note_count": 864, - "density_avg": 6.9430601496997015, - "density_peak": 11, - "bpm_avg": 161.125, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 830, - "color_complexity": 0.011478577191172106 - }, - { - "songno": "239", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.95959595959596, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.0077838354591836766 - }, - { - "songno": "1236", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.700359892147317, - "density_peak": 20, - "bpm_avg": 242.48248248248248, - "bpm_change": 7, - "scroll_change": 146, - "rhythm_complexity": 905, - "color_complexity": 0.016323152358715592 - }, - { - "songno": "946", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.0014184397163115, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.0020005718754418345 - }, - { - "songno": "952", - "difficulty": "oni", - "note_count": 717, - "density_avg": 6.128205128205129, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.007741479416134963 - }, - { - "songno": "761", - "difficulty": "oni", - "note_count": 902, - "density_avg": 7.567340823970038, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.01348508429319256 - }, - { - "songno": "775", - "difficulty": "oni", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 16, - "bpm_avg": 243.05825242718447, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 700, - "color_complexity": 0.010716255172709585 - }, - { - "songno": "775", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 14, - "bpm_avg": 242.4757281553398, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 745, - "color_complexity": 0.010561460644845198 - }, - { - "songno": "991", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.82349537037037, - "density_peak": 12, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 643, - "color_complexity": 0.005476894034754873 - }, - { - "songno": "749", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.58212161930252, - "density_peak": 15, - "bpm_avg": 186.13175675675674, - "bpm_change": 22, - "scroll_change": 26, - "rhythm_complexity": 840, - "color_complexity": 0.010647856596629493 - }, - { - "songno": "1342", - "difficulty": "oni", - "note_count": 321, - "density_avg": 4.243990384615385, - "density_peak": 8, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0009468668597647406 - }, - { - "songno": "1424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.726132686084143, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 699, - "color_complexity": 0.006500551571248105 - }, - { - "songno": "8", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.8251366120218577, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001714575045893014 - }, - { - "songno": "1356", - "difficulty": "oni", - "note_count": 1120, - "density_avg": 7.648578811369509, - "density_peak": 15, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1036, - "color_complexity": 0.011008075535663414 - }, - { - "songno": "72", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.26815144766147, - "density_peak": 13, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 745, - "color_complexity": 0.008029338470156076 - }, - { - "songno": "1418", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.39136574541053, - "density_peak": 13, - "bpm_avg": 172.07762557077626, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 780, - "color_complexity": 0.010990536271348108 - }, - { - "songno": "198", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.565461847389558, - "density_peak": 9, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0017093391041618571 - }, - { - "songno": "826", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.512437810945274, - "density_peak": 21, - "bpm_avg": 200.07923169267707, - "bpm_change": 2, - "scroll_change": 20, - "rhythm_complexity": 699, - "color_complexity": 0.008065090370174466 - }, - { - "songno": "66", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.93374613003096, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006237777312295145 - }, - { - "songno": "615", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.8845460407738575, - "density_peak": 13, - "bpm_avg": 209.6716621253406, - "bpm_change": 15, - "scroll_change": 9, - "rhythm_complexity": 641, - "color_complexity": 0.0041508155087384545 - }, - { - "songno": "1381", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.69765625, - "density_peak": 14, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.00615265079935022 - }, - { - "songno": "173", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.883720930232558, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 712, - "color_complexity": 0.006189637010333841 - }, - { - "songno": "167", - "difficulty": "oni", - "note_count": 828, - "density_avg": 6.663298872196968, - "density_peak": 14, - "bpm_avg": 201.7512077294686, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 798, - "color_complexity": 0.00619789634739647 - }, - { - "songno": "1395", - "difficulty": "oni", - "note_count": 926, - "density_avg": 6.844050258684406, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 801, - "color_complexity": 0.01583305014615938 - }, - { - "songno": "601", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.8070832099039524, - "density_peak": 9, - "bpm_avg": 169.30492063492076, - "bpm_change": 35, - "scroll_change": 2, - "rhythm_complexity": 304, - "color_complexity": 0.0009495584436399778 - }, - { - "songno": "601", - "difficulty": "ura", - "note_count": 757, - "density_avg": 6.325667767200526, - "density_peak": 12, - "bpm_avg": 173.14684280052856, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 638, - "color_complexity": 0.007174443241356957 - }, - { - "songno": "629", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.310009267840592, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.0073302324515683945 - }, - { - "songno": "1140", - "difficulty": "oni", - "note_count": 562, - "density_avg": 5.053869541204061, - "density_peak": 10, - "bpm_avg": 159.99039145907471, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 504, - "color_complexity": 0.0032252104966734993 - }, - { - "songno": "1140", - "difficulty": "ura", - "note_count": 879, - "density_avg": 7.592165251691859, - "density_peak": 16, - "bpm_avg": 159.812059158135, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 765, - "color_complexity": 0.0063164056042033 - }, - { - "songno": "1154", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.928441837802259, - "density_peak": 14, - "bpm_avg": 239.84745762711864, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 618, - "color_complexity": 0.005391017636986323 - }, - { - "songno": "1168", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.981200909546523, - "density_peak": 8, - "bpm_avg": 129.64721768707474, - "bpm_change": 14, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016828069744445901 - }, - { - "songno": "1168", - "difficulty": "ura", - "note_count": 733, - "density_avg": 6.603522347730304, - "density_peak": 11, - "bpm_avg": 129.88940927694543, - "bpm_change": 66, - "scroll_change": 6, - "rhythm_complexity": 465, - "color_complexity": 0.006026550275146372 - }, - { - "songno": "1183", - "difficulty": "oni", - "note_count": 532, - "density_avg": 4.685636856368563, - "density_peak": 11, - "bpm_avg": 168.1203007518797, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 434, - "color_complexity": 0.002400538246595251 - }, - { - "songno": "417", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.074066757528118, - "density_peak": 9, - "bpm_avg": 160.00004040404042, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.0015723617729505638 - }, - { - "songno": "417", - "difficulty": "ura", - "note_count": 777, - "density_avg": 6.395050243635046, - "density_peak": 11, - "bpm_avg": 160.00002574002573, - "bpm_change": 3, - "scroll_change": 5, - "rhythm_complexity": 749, - "color_complexity": 0.007238797565792423 - }, - { - "songno": "403", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.020080321285141, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 570, - "color_complexity": 0.004050200550464442 - }, - { - "songno": "403", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.144578313253012, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 743, - "color_complexity": 0.006892555903810102 - }, - { - "songno": "1197", - "difficulty": "oni", - "note_count": 602, - "density_avg": 4.318917089678512, - "density_peak": 11, - "bpm_avg": 211.64784053156146, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 486, - "color_complexity": 0.0017625623784054663 - }, - { - "songno": "1197", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.1671065989847715, - "density_peak": 16, - "bpm_avg": 211.78778778778778, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 857, - "color_complexity": 0.012080873725724186 - }, - { - "songno": "365", - "difficulty": "oni", - "note_count": 822, - "density_avg": 7.195959595959596, - "density_peak": 15, - "bpm_avg": 200.4087591240876, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 799, - "color_complexity": 0.011999234431091285 - }, - { - "songno": "359", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.49475890985325, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 300, - "color_complexity": 0.003194577269203926 - }, - { - "songno": "429", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.16969872433587, - "density_peak": 11, - "bpm_avg": 160.0048320413437, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 346, - "color_complexity": 0.0027322792176294425 - }, - { - "songno": "415", - "difficulty": "oni", - "note_count": 521, - "density_avg": 3.6019708510654853, - "density_peak": 8, - "bpm_avg": 139.96679462571976, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 441, - "color_complexity": 0.001474628075984925 - }, - { - "songno": "1181", - "difficulty": "oni", - "note_count": 231, - "density_avg": 4.091787439613526, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 141, - "color_complexity": 0.0006873993156336606 - }, - { - "songno": "367", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.106422018348624, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.006190357760781997 - }, - { - "songno": "1195", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.9287817938420337, - "density_peak": 8, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0010137507865453303 - }, - { - "songno": "401", - "difficulty": "oni", - "note_count": 668, - "density_avg": 5.527186761229315, - "density_peak": 15, - "bpm_avg": 260.0898203592814, - "bpm_change": 4, - "scroll_change": 12, - "rhythm_complexity": 585, - "color_complexity": 0.005183734489235187 - }, - { - "songno": "398", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.923201856148492, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.003282641543197276 - }, - { - "songno": "1142", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.936940298507462, - "density_peak": 9, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0012709410806509788 - }, - { - "songno": "159", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.551603934560249, - "density_peak": 15, - "bpm_avg": 160.03296732026106, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 698, - "color_complexity": 0.006219329504113033 - }, - { - "songno": "171", - "difficulty": "oni", - "note_count": 653, - "density_avg": 6.533159746300676, - "density_peak": 12, - "bpm_avg": 235.19142419601837, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 567, - "color_complexity": 0.00635848433143966 - }, - { - "songno": "1383", - "difficulty": "oni", - "note_count": 1079, - "density_avg": 7.431815907462518, - "density_peak": 16, - "bpm_avg": 156.7701575532901, - "bpm_change": 11, - "scroll_change": 11, - "rhythm_complexity": 971, - "color_complexity": 0.013871993739205354 - }, - { - "songno": "617", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.326363636363637, - "density_peak": 12, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0040817978954081745 - }, - { - "songno": "1397", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "70", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.62962962962963, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.0065436619114178545 - }, - { - "songno": "64", - "difficulty": "oni", - "note_count": 608, - "density_avg": 6.144193061840121, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.00492357033293637 - }, - { - "songno": "1368", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.780729166666666, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010869024745673393 - }, - { - "songno": "824", - "difficulty": "oni", - "note_count": 199, - "density_avg": 2.5830944199210877, - "density_peak": 6, - "bpm_avg": 148.72085427135676, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 161, - "color_complexity": 0.0003074235312836148 - }, - { - "songno": "824", - "difficulty": "ura", - "note_count": 430, - "density_avg": 5.175755954031412, - "density_peak": 10, - "bpm_avg": 148.87081395348835, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 363, - "color_complexity": 0.0032175598758908477 - }, - { - "songno": "1426", - "difficulty": "oni", - "note_count": 479, - "density_avg": 4.875928243637881, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.002172193250509392 - }, - { - "songno": "1354", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.734225327873769, - "density_peak": 13, - "bpm_avg": 179.72653594771046, - "bpm_change": 7, - "scroll_change": 15, - "rhythm_complexity": 734, - "color_complexity": 0.007964919131700072 - }, - { - "songno": "818", - "difficulty": "oni", - "note_count": 846, - "density_avg": 7.1729651162790695, - "density_peak": 16, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 657, - "color_complexity": 0.00918082922932229 - }, - { - "songno": "1432", - "difficulty": "oni", - "note_count": 1053, - "density_avg": 7.269142512116014, - "density_peak": 14, - "bpm_avg": 156.8356600189935, - "bpm_change": 6, - "scroll_change": 20, - "rhythm_complexity": 907, - "color_complexity": 0.013030326912320108 - }, - { - "songno": "987", - "difficulty": "oni", - "note_count": 380, - "density_avg": 4.569760653823701, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.002440377499765448 - }, - { - "songno": "993", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.096801346801346, - "density_peak": 14, - "bpm_avg": 180.09393063583815, - "bpm_change": 35, - "scroll_change": 48, - "rhythm_complexity": 603, - "color_complexity": 0.00686516603828627 - }, - { - "songno": "993", - "difficulty": "ura", - "note_count": 1070, - "density_avg": 7.88102900841604, - "density_peak": 18, - "bpm_avg": 162.01897196261712, - "bpm_change": 42, - "scroll_change": 272, - "rhythm_complexity": 924, - "color_complexity": 0.013241814374083491 - }, - { - "songno": "763", - "difficulty": "oni", - "note_count": 978, - "density_avg": 8.256232664954757, - "density_peak": 17, - "bpm_avg": 194.02607361963192, - "bpm_change": 8, - "scroll_change": 11, - "rhythm_complexity": 874, - "color_complexity": 0.013895492789115544 - }, - { - "songno": "777", - "difficulty": "oni", - "note_count": 739, - "density_avg": 7.797051978277734, - "density_peak": 16, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.013527538876619076 - }, - { - "songno": "944", - "difficulty": "oni", - "note_count": 629, - "density_avg": 4.673945383329588, - "density_peak": 10, - "bpm_avg": 101.57392686804451, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 522, - "color_complexity": 0.0025838360181263077 - }, - { - "songno": "1208", - "difficulty": "oni", - "note_count": 558, - "density_avg": 2.871920801066091, - "density_peak": 5, - "bpm_avg": 113.10578494623665, - "bpm_change": 26, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0009551482149608538 - }, - { - "songno": "1234", - "difficulty": "oni", - "note_count": 916, - "density_avg": 5.901973929236499, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 863, - "color_complexity": 0.004255697428349144 - }, - { - "songno": "1220", - "difficulty": "oni", - "note_count": 405, - "density_avg": 2.868949232585596, - "density_peak": 7, - "bpm_avg": 110, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 343, - "color_complexity": 0.0011273159462396626 - }, - { - "songno": "1220", - "difficulty": "ura", - "note_count": 804, - "density_avg": 5.668625146886017, - "density_peak": 15, - "bpm_avg": 111.71641791044776, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 662, - "color_complexity": 0.008858915966979342 - }, - { - "songno": "549", - "difficulty": "oni", - "note_count": 716, - "density_avg": 6.422453703703703, - "density_peak": 15, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004328081905707195 - }, - { - "songno": "561", - "difficulty": "oni", - "note_count": 471, - "density_avg": 4.8307692307692305, - "density_peak": 12, - "bpm_avg": 196.43312101910828, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 428, - "color_complexity": 0.003748535437129884 - }, - { - "songno": "207", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.037965328834292, - "density_peak": 7, - "bpm_avg": 110.00082882882883, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0020621240315578226 - }, - { - "songno": "213", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.259094942324756, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.002258420190569404 - }, - { - "songno": "575", - "difficulty": "oni", - "note_count": 620, - "density_avg": 5.291607396870555, - "density_peak": 14, - "bpm_avg": 360, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.006999148109652445 - }, - { - "songno": "1036", - "difficulty": "oni", - "note_count": 752, - "density_avg": 4.851612903225806, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.003321776251056654 - }, - { - "songno": "1022", - "difficulty": "oni", - "note_count": 469, - "density_avg": 4.20897435897436, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0013065631456790111 - }, - { - "songno": "1023", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.9256830194989174, - "density_peak": 10, - "bpm_avg": 140.08218390804598, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0012653129320987643 - }, - { - "songno": "1037", - "difficulty": "oni", - "note_count": 985, - "density_avg": 7.836117740652347, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.01393773577281376 - }, - { - "songno": "212", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.296930388686157, - "density_peak": 10, - "bpm_avg": 154.76406533575317, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 487, - "color_complexity": 0.0034473077023386553 - }, - { - "songno": "574", - "difficulty": "oni", - "note_count": 848, - "density_avg": 7.43859649122807, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 826, - "color_complexity": 0.007734122412654237 - }, - { - "songno": "560", - "difficulty": "oni", - "note_count": 640, - "density_avg": 5.005586592178771, - "density_peak": 12, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 607, - "color_complexity": 0.004092341027345833 - }, - { - "songno": "548", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.615460992907801, - "density_peak": 12, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 611, - "color_complexity": 0.004721166844608656 - }, - { - "songno": "1235", - "difficulty": "oni", - "note_count": 985, - "density_avg": 6.457902001380263, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 890, - "color_complexity": 0.007687399638884248 - }, - { - "songno": "1235", - "difficulty": "ura", - "note_count": 1244, - "density_avg": 8.155969634230503, - "density_peak": 19, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1154, - "color_complexity": 0.016763635685183353 - }, - { - "songno": "951", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.9867724867724865, - "density_peak": 9, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.0022818653178819704 - }, - { - "songno": "951", - "difficulty": "ura", - "note_count": 854, - "density_avg": 7.342592592592593, - "density_peak": 13, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.009435180951384889 - }, - { - "songno": "1209", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.398099117447386, - "density_peak": 10, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0025785174201498084 - }, - { - "songno": "945", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.7363184079602, - "density_peak": 9, - "bpm_avg": 193.01470588235293, - "bpm_change": 3, - "scroll_change": 4, - "rhythm_complexity": 487, - "color_complexity": 0.0033306615363511726 - }, - { - "songno": "776", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.69831223628692, - "density_peak": 11, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004772060150827519 - }, - { - "songno": "776", - "difficulty": "ura", - "note_count": 648, - "density_avg": 6.653164556962025, - "density_peak": 13, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.003922080586702115 - }, - { - "songno": "762", - "difficulty": "oni", - "note_count": 659, - "density_avg": 6.059770114942529, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 542, - "color_complexity": 0.0049837290818746 - }, - { - "songno": "992", - "difficulty": "oni", - "note_count": 757, - "density_avg": 6.41090785907859, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.009610421709254004 - }, - { - "songno": "819", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.447102115915364, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.007005063298365982 - }, - { - "songno": "819", - "difficulty": "ura", - "note_count": 1121, - "density_avg": 8.250229990800369, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 89, - "rhythm_complexity": 1099, - "color_complexity": 0.016406242616303725 - }, - { - "songno": "1355", - "difficulty": "oni", - "note_count": 811, - "density_avg": 7.041967728612796, - "density_peak": 14, - "bpm_avg": 180.4588581997534, - "bpm_change": 50, - "scroll_change": 0, - "rhythm_complexity": 626, - "color_complexity": 0.010109033251288277 - }, - { - "songno": "59", - "difficulty": "oni", - "note_count": 266, - "density_avg": 3.6247379454926625, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0012709674618358168 - }, - { - "songno": "1433", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.378170289855072, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 596, - "color_complexity": 0.004304697680107563 - }, - { - "songno": "1427", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.724164825165736, - "density_peak": 14, - "bpm_avg": 172.85785536159602, - "bpm_change": 3, - "scroll_change": 7, - "rhythm_complexity": 774, - "color_complexity": 0.007210905889246595 - }, - { - "songno": "1341", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.022537562604341, - "density_peak": 10, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 36, - "rhythm_complexity": 514, - "color_complexity": 0.0032715521018358376 - }, - { - "songno": "1369", - "difficulty": "oni", - "note_count": 1333, - "density_avg": 8.628180392619107, - "density_peak": 26, - "bpm_avg": 293.294448612153, - "bpm_change": 34, - "scroll_change": 73, - "rhythm_complexity": 1212, - "color_complexity": 0.026552837371460504 - }, - { - "songno": "65", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.283987915407855, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.01022240041848812 - }, - { - "songno": "831", - "difficulty": "oni", - "note_count": 155, - "density_avg": 2.110328638497653, - "density_peak": 4, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 97, - "color_complexity": 0.00013929702017038287 - }, - { - "songno": "831", - "difficulty": "ura", - "note_count": 390, - "density_avg": 4.896103896103897, - "density_peak": 14, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001968236276567831 - }, - { - "songno": "71", - "difficulty": "oni", - "note_count": 506, - "density_avg": 5.021374045801527, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.004396389028277388 - }, - { - "songno": "1396", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "164", - "difficulty": "oni", - "note_count": 702, - "density_avg": 5.973512476007677, - "density_peak": 11, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 644, - "color_complexity": 0.005367313973709004 - }, - { - "songno": "164", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.011644273832373, - "density_peak": 13, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 768, - "color_complexity": 0.008434488632128357 - }, - { - "songno": "616", - "difficulty": "oni", - "note_count": 706, - "density_avg": 6.154729138539452, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 677, - "color_complexity": 0.004885405373502864 - }, - { - "songno": "1382", - "difficulty": "oni", - "note_count": 230, - "density_avg": 2.795138888888889, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 138, - "color_complexity": 0.00041253739551006734 - }, - { - "songno": "1382", - "difficulty": "ura", - "note_count": 408, - "density_avg": 4.8820512820512825, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 305, - "color_complexity": 0.0018377258416491153 - }, - { - "songno": "1157", - "difficulty": "oni", - "note_count": 444, - "density_avg": 4.742541436464088, - "density_peak": 10, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002446646804012332 - }, - { - "songno": "1157", - "difficulty": "ura", - "note_count": 594, - "density_avg": 5.795218954493964, - "density_peak": 10, - "bpm_avg": 173.11915824915826, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 567, - "color_complexity": 0.003914227134039106 - }, - { - "songno": "1143", - "difficulty": "oni", - "note_count": 391, - "density_avg": 4.858786655169103, - "density_peak": 10, - "bpm_avg": 178.6214833759591, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0012928450790294433 - }, - { - "songno": "399", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "399", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "366", - "difficulty": "oni", - "note_count": 382, - "density_avg": 3.0362292051756006, - "density_peak": 7, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 374, - "color_complexity": 0.0008775127155092593 - }, - { - "songno": "366", - "difficulty": "ura", - "note_count": 724, - "density_avg": 5.733333333333333, - "density_peak": 9, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 722, - "color_complexity": 0.004021803271604949 - }, - { - "songno": "400", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "400", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "1194", - "difficulty": "oni", - "note_count": 435, - "density_avg": 4.693275013668671, - "density_peak": 10, - "bpm_avg": 191.95172413793102, - "bpm_change": 1, - "scroll_change": 18, - "rhythm_complexity": 421, - "color_complexity": 0.0027733587817132146 - }, - { - "songno": "1180", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.829068755439513, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 592, - "color_complexity": 0.004626618460704637 - }, - { - "songno": "414", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.750297275733301, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 662, - "color_complexity": 0.00452032040219044 - }, - { - "songno": "414", - "difficulty": "ura", - "note_count": 939, - "density_avg": 7.802787777331747, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 908, - "color_complexity": 0.011284689481677213 - }, - { - "songno": "372", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.7213622291021675, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 668, - "color_complexity": 0.005214235027496703 - }, - { - "songno": "428", - "difficulty": "oni", - "note_count": 840, - "density_avg": 5.928397279609906, - "density_peak": 11, - "bpm_avg": 164.92857142857142, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 763, - "color_complexity": 0.006646954772878754 - }, - { - "songno": "410", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.822945205479452, - "density_peak": 11, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006408985514693502 - }, - { - "songno": "1184", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.4989690721649485, - "density_peak": 14, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 726, - "color_complexity": 0.009521952015316769 - }, - { - "songno": "1190", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.097539012059327, - "density_peak": 14, - "bpm_avg": 146.63976377952756, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 338, - "color_complexity": 0.0022999258747490913 - }, - { - "songno": "404", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.851326566936777, - "density_peak": 13, - "bpm_avg": 169.9844336175398, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 797, - "color_complexity": 0.008049431070957097 - }, - { - "songno": "438", - "difficulty": "oni", - "note_count": 818, - "density_avg": 5.791427477994641, - "density_peak": 14, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.007998437370327547 - }, - { - "songno": "1147", - "difficulty": "oni", - "note_count": 766, - "density_avg": 7.07621247113164, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.009152072851309225 - }, - { - "songno": "1153", - "difficulty": "oni", - "note_count": 294, - "density_avg": 2.5526976603782336, - "density_peak": 6, - "bpm_avg": 112.0011224489796, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.000252077545989206 - }, - { - "songno": "389", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.1273100616016425, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 388, - "color_complexity": 0.0026050518654572937 - }, - { - "songno": "1386", - "difficulty": "oni", - "note_count": 452, - "density_avg": 4.466666666666667, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 398, - "color_complexity": 0.0027950377672401935 - }, - { - "songno": "612", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.303291608715808, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 679, - "color_complexity": 0.005978157255408406 - }, - { - "songno": "160", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.04586483390607, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006200499452198458 - }, - { - "songno": "160", - "difficulty": "ura", - "note_count": 713, - "density_avg": 4.839089347079038, - "density_peak": 16, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 674, - "color_complexity": 0.00693128423392695 - }, - { - "songno": "606", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.532051282051282, - "density_peak": 11, - "bpm_avg": 205.63366336633663, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 465, - "color_complexity": 0.0030682981990958996 - }, - { - "songno": "606", - "difficulty": "ura", - "note_count": 798, - "density_avg": 7.161538461538461, - "density_peak": 15, - "bpm_avg": 207.23684210526315, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 749, - "color_complexity": 0.010069282996383962 - }, - { - "songno": "1392", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.4338235294117645, - "density_peak": 11, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 682, - "color_complexity": 0.005502803813450183 - }, - { - "songno": "1392", - "difficulty": "ura", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 17, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 715, - "color_complexity": 0.01452331502908522 - }, - { - "songno": "148", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.8958393113342895, - "density_peak": 17, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 686, - "color_complexity": 0.010113767476029744 - }, - { - "songno": "1345", - "difficulty": "oni", - "note_count": 581, - "density_avg": 4.254989796765805, - "density_peak": 8, - "bpm_avg": 139.0790533562828, - "bpm_change": 45, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.0021638817153075045 - }, - { - "songno": "1345", - "difficulty": "ura", - "note_count": 832, - "density_avg": 6.093203977468415, - "density_peak": 10, - "bpm_avg": 139.34663461538537, - "bpm_change": 45, - "scroll_change": 1, - "rhythm_complexity": 741, - "color_complexity": 0.0056403792611961845 - }, - { - "songno": "49", - "difficulty": "oni", - "note_count": 619, - "density_avg": 4.7220563847429515, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002946306581031739 - }, - { - "songno": "49", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.835820895522389, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 671, - "color_complexity": 0.005567746728227036 - }, - { - "songno": "809", - "difficulty": "oni", - "note_count": 434, - "density_avg": 4.801960784313726, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.00219817331725675 - }, - { - "songno": "1423", - "difficulty": "oni", - "note_count": 400, - "density_avg": 4.5595854922279795, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0018558804431185695 - }, - { - "songno": "1437", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.769278606965173, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 760, - "color_complexity": 0.009505697225651586 - }, - { - "songno": "1351", - "difficulty": "oni", - "note_count": 1025, - "density_avg": 6.603465851172274, - "density_peak": 13, - "bpm_avg": 307.7531707317073, - "bpm_change": 4, - "scroll_change": 55, - "rhythm_complexity": 912, - "color_complexity": 0.012679539958429393 - }, - { - "songno": "1379", - "difficulty": "oni", - "note_count": 1057, - "density_avg": 7.084450402144772, - "density_peak": 13, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 791, - "color_complexity": 0.013184509036100125 - }, - { - "songno": "835", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.739904988123516, - "density_peak": 14, - "bpm_avg": 227, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.007293012462853437 - }, - { - "songno": "61", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.224270744221638, - "density_peak": 11, - "bpm_avg": 199.80547138047217, - "bpm_change": 6, - "scroll_change": 5, - "rhythm_complexity": 415, - "color_complexity": 0.0031743616536387127 - }, - { - "songno": "821", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.032917532917533, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0030350479749134507 - }, - { - "songno": "766", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.843888888888889, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002595659520017682 - }, - { - "songno": "982", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.161106905867197, - "density_peak": 15, - "bpm_avg": 199.17582159624416, - "bpm_change": 26, - "scroll_change": 24, - "rhythm_complexity": 744, - "color_complexity": 0.011557347918342226 - }, - { - "songno": "1231", - "difficulty": "oni", - "note_count": 645, - "density_avg": 4.683928571428571, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 543, - "color_complexity": 0.0029976610517622594 - }, - { - "songno": "969", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.723751686909583, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021041066572503823 - }, - { - "songno": "1225", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.10645825622744, - "density_peak": 10, - "bpm_avg": 135.00590361445848, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021983715933300133 - }, - { - "songno": "1225", - "difficulty": "ura", - "note_count": 641, - "density_avg": 5.33180576644295, - "density_peak": 12, - "bpm_avg": 135.03413416536702, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0033193741298001116 - }, - { - "songno": "941", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.225446009389672, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.003752197212831999 - }, - { - "songno": "799", - "difficulty": "oni", - "note_count": 531, - "density_avg": 4.2548076923076925, - "density_peak": 8, - "bpm_avg": 199.90583804143125, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.001668554489974818 - }, - { - "songno": "955", - "difficulty": "oni", - "note_count": 900, - "density_avg": 8.084696823869105, - "density_peak": 15, - "bpm_avg": 271.9111111111111, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.010041976962576167 - }, - { - "songno": "1219", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.358890689909964, - "density_peak": 11, - "bpm_avg": 166.09129263913826, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 512, - "color_complexity": 0.0027964857210582145 - }, - { - "songno": "1219", - "difficulty": "ura", - "note_count": 825, - "density_avg": 6.456166641249049, - "density_peak": 12, - "bpm_avg": 167.29315151515152, - "bpm_change": 7, - "scroll_change": 86, - "rhythm_complexity": 794, - "color_complexity": 0.008253724780231682 - }, - { - "songno": "202", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 11, - "bpm_avg": 229.2149019607842, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.004982959733910084 - }, - { - "songno": "202", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 13, - "bpm_avg": 230.97896732026177, - "bpm_change": 7, - "scroll_change": 6, - "rhythm_complexity": 619, - "color_complexity": 0.008060110087944019 - }, - { - "songno": "570", - "difficulty": "oni", - "note_count": 899, - "density_avg": 7.320846905537459, - "density_peak": 15, - "bpm_avg": 194.6496106785317, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 808, - "color_complexity": 0.010651287823167377 - }, - { - "songno": "558", - "difficulty": "oni", - "note_count": 704, - "density_avg": 6.253389434315101, - "density_peak": 15, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.006618036168276772 - }, - { - "songno": "1033", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.036475409836066, - "density_peak": 10, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 402, - "color_complexity": 0.0007345935262122296 - }, - { - "songno": "1033", - "difficulty": "ura", - "note_count": 784, - "density_avg": 7.169426751592357, - "density_peak": 16, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 727, - "color_complexity": 0.009556082350817993 - }, - { - "songno": "1027", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.6757373820173465, - "density_peak": 8, - "bpm_avg": 267.8518252595155, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.0025686427369981985 - }, - { - "songno": "1027", - "difficulty": "ura", - "note_count": 847, - "density_avg": 6.9474783247378005, - "density_peak": 13, - "bpm_avg": 262.02409681227863, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 773, - "color_complexity": 0.0067428453359066704 - }, - { - "songno": "1026", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.5561904761904755, - "density_peak": 9, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.002528991509849881 - }, - { - "songno": "1032", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.715848214285714, - "density_peak": 10, - "bpm_avg": 316.6707530647986, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 523, - "color_complexity": 0.0019617138743353375 - }, - { - "songno": "1032", - "difficulty": "ura", - "note_count": 1074, - "density_avg": 8.870089285714284, - "density_peak": 23, - "bpm_avg": 317.8072625698324, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 973, - "color_complexity": 0.018461684761804573 - }, - { - "songno": "559", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.632826187183033, - "density_peak": 11, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.005906721880753596 - }, - { - "songno": "571", - "difficulty": "oni", - "note_count": 899, - "density_avg": 6.6527169697028, - "density_peak": 13, - "bpm_avg": 226.01601779755273, - "bpm_change": 2, - "scroll_change": 31, - "rhythm_complexity": 842, - "color_complexity": 0.0117320719217324 - }, - { - "songno": "203", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.049520976000035, - "density_peak": 9, - "bpm_avg": 170.98465608465608, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 546, - "color_complexity": 0.003207393256157052 - }, - { - "songno": "203", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.812845761269889, - "density_peak": 12, - "bpm_avg": 170.9886274509804, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 756, - "color_complexity": 0.009111100663275726 - }, - { - "songno": "565", - "difficulty": "oni", - "note_count": 585, - "density_avg": 4.936708860759494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0038411581593529834 - }, - { - "songno": "1218", - "difficulty": "oni", - "note_count": 281, - "density_avg": 3.2233468286099862, - "density_peak": 7, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 238, - "color_complexity": 0.0005612459415740576 - }, - { - "songno": "1218", - "difficulty": "ura", - "note_count": 599, - "density_avg": 6.748177601060305, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.005773923137481609 - }, - { - "songno": "954", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.254587869362364, - "density_peak": 14, - "bpm_avg": 280.5296803652968, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 854, - "color_complexity": 0.007469683954205944 - }, - { - "songno": "954", - "difficulty": "ura", - "note_count": 1259, - "density_avg": 10.426399688958009, - "density_peak": 18, - "bpm_avg": 280.6799046862589, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 1197, - "color_complexity": 0.030354191089788922 - }, - { - "songno": "798", - "difficulty": "oni", - "note_count": 903, - "density_avg": 6.911903686482896, - "density_peak": 15, - "bpm_avg": 190.6234772978959, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 838, - "color_complexity": 0.012583282845687502 - }, - { - "songno": "940", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.815789473684211, - "density_peak": 15, - "bpm_avg": 160.6177606177606, - "bpm_change": 2, - "scroll_change": 39, - "rhythm_complexity": 621, - "color_complexity": 0.007578414847205498 - }, - { - "songno": "968", - "difficulty": "oni", - "note_count": 877, - "density_avg": 6.878431372549019, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 793, - "color_complexity": 0.008657901298085332 - }, - { - "songno": "1230", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.8243204577968526, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 291, - "color_complexity": 0.0015480482903287784 - }, - { - "songno": "997", - "difficulty": "oni", - "note_count": 590, - "density_avg": 5.353088158581116, - "density_peak": 9, - "bpm_avg": 173.92999999999762, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 574, - "color_complexity": 0.0035676447379020533 - }, - { - "songno": "997", - "difficulty": "ura", - "note_count": 817, - "density_avg": 7.412666145018257, - "density_peak": 12, - "bpm_avg": 173.92999999999637, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007633115582408368 - }, - { - "songno": "983", - "difficulty": "oni", - "note_count": 965, - "density_avg": 7.744537147397697, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.012424795118273716 - }, - { - "songno": "773", - "difficulty": "oni", - "note_count": 487, - "density_avg": 5.223913909379468, - "density_peak": 8, - "bpm_avg": 166.05244353182835, - "bpm_change": 16, - "scroll_change": 2, - "rhythm_complexity": 462, - "color_complexity": 0.0030853450543817137 - }, - { - "songno": "820", - "difficulty": "oni", - "note_count": 1096, - "density_avg": 8.154568368778666, - "density_peak": 17, - "bpm_avg": 231.02189781021897, - "bpm_change": 13, - "scroll_change": 16, - "rhythm_complexity": 1036, - "color_complexity": 0.014011522543783014 - }, - { - "songno": "60", - "difficulty": "oni", - "note_count": 986, - "density_avg": 7.268738009882184, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 946, - "color_complexity": 0.01067869338748385 - }, - { - "songno": "60", - "difficulty": "ura", - "note_count": 942, - "density_avg": 6.944372419177503, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 897, - "color_complexity": 0.00877543837012501 - }, - { - "songno": "834", - "difficulty": "oni", - "note_count": 772, - "density_avg": 6.412097117997289, - "density_peak": 14, - "bpm_avg": 257.55440414507774, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 663, - "color_complexity": 0.006697433702415283 - }, - { - "songno": "834", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.99109048522911, - "density_peak": 19, - "bpm_avg": 256.5271191135734, - "bpm_change": 12, - "scroll_change": 3, - "rhythm_complexity": 951, - "color_complexity": 0.021677678208683868 - }, - { - "songno": "74", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.7401869158878505, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 603, - "color_complexity": 0.0029849498006061866 - }, - { - "songno": "74", - "difficulty": "ura", - "note_count": 1007, - "density_avg": 7.540717628705148, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 988, - "color_complexity": 0.010266711597571655 - }, - { - "songno": "1378", - "difficulty": "oni", - "note_count": 913, - "density_avg": 7.310155920775389, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.012625310860513137 - }, - { - "songno": "1436", - "difficulty": "oni", - "note_count": 885, - "density_avg": 5.844629822732013, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.008381398663016416 - }, - { - "songno": "1350", - "difficulty": "oni", - "note_count": 1405, - "density_avg": 10.253251445086708, - "density_peak": 21, - "bpm_avg": 303, - "bpm_change": 0, - "scroll_change": 83, - "rhythm_complexity": 1315, - "color_complexity": 0.033778714032070195 - }, - { - "songno": "808", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.720000000000001, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0037679802029042383 - }, - { - "songno": "48", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.679694862881422, - "density_peak": 8, - "bpm_avg": 114.94999999999894, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.002589514654307961 - }, - { - "songno": "48", - "difficulty": "ura", - "note_count": 761, - "density_avg": 6.765425367362723, - "density_peak": 11, - "bpm_avg": 114.94999999999837, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.003362280746651282 - }, - { - "songno": "1344", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.141179078014185, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 442, - "color_complexity": 0.0006807840676662876 - }, - { - "songno": "1344", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.9379432624113475, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 914, - "color_complexity": 0.008693233077475998 - }, - { - "songno": "1422", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.442182573873539, - "density_peak": 11, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002190098349471223 - }, - { - "songno": "149", - "difficulty": "oni", - "note_count": 437, - "density_avg": 4.0205237084217975, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 311, - "color_complexity": 0.00209076333778264 - }, - { - "songno": "149", - "difficulty": "ura", - "note_count": 600, - "density_avg": 5.520169851380043, - "density_peak": 13, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.0036102428261901593 - }, - { - "songno": "161", - "difficulty": "oni", - "note_count": 336, - "density_avg": 3.7333333333333334, - "density_peak": 7, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.0013565827628428653 - }, - { - "songno": "1393", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.971698113207547, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 436, - "color_complexity": 0.0021725238743622506 - }, - { - "songno": "1393", - "difficulty": "ura", - "note_count": 694, - "density_avg": 6.547169811320755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.005922299786352035 - }, - { - "songno": "607", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.0960901259111995, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0012263374751473608 - }, - { - "songno": "613", - "difficulty": "oni", - "note_count": 489, - "density_avg": 3.5018855007411624, - "density_peak": 10, - "bpm_avg": 181.9869120654395, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 421, - "color_complexity": 0.0016627435161517931 - }, - { - "songno": "1387", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.325037707390649, - "density_peak": 9, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 506, - "color_complexity": 0.0019024655563664391 - }, - { - "songno": "1387", - "difficulty": "ura", - "note_count": 828, - "density_avg": 6.537952114111055, - "density_peak": 12, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.006718393901497159 - }, - { - "songno": "388", - "difficulty": "oni", - "note_count": 797, - "density_avg": 7.966016991504248, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.00866014540466391 - }, - { - "songno": "1152", - "difficulty": "oni", - "note_count": 494, - "density_avg": 5.145833333333333, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.003386602261998105 - }, - { - "songno": "1146", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1146", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "405", - "difficulty": "oni", - "note_count": 488, - "density_avg": 4.880277556692487, - "density_peak": 9, - "bpm_avg": 149.98304303278687, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.0017754095399484093 - }, - { - "songno": "405", - "difficulty": "ura", - "note_count": 889, - "density_avg": 8.890505630941846, - "density_peak": 11, - "bpm_avg": 150.0380787401562, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 861, - "color_complexity": 0.011729459412475754 - }, - { - "songno": "1191", - "difficulty": "oni", - "note_count": 505, - "density_avg": 5.781144781144781, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 487, - "color_complexity": 0.003892441736116305 - }, - { - "songno": "363", - "difficulty": "oni", - "note_count": 737, - "density_avg": 6.38548876118563, - "density_peak": 11, - "bpm_avg": 158.00256445047518, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 646, - "color_complexity": 0.007416656936152684 - }, - { - "songno": "377", - "difficulty": "oni", - "note_count": 361, - "density_avg": 4.356490541422048, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0015329553410808733 - }, - { - "songno": "1185", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.515576778487833, - "density_peak": 20, - "bpm_avg": 196.06851549755302, - "bpm_change": 29, - "scroll_change": 29, - "rhythm_complexity": 509, - "color_complexity": 0 - }, - { - "songno": "411", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.243449362884388, - "density_peak": 10, - "bpm_avg": 137.98865013774105, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0015891950551217044 - }, - { - "songno": "361", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 12, - "bpm_avg": 224.0035555555554, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.005429825589896879 - }, - { - "songno": "361", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 14, - "bpm_avg": 223.99585620915028, - "bpm_change": 5, - "scroll_change": 17, - "rhythm_complexity": 726, - "color_complexity": 0.006034966973018688 - }, - { - "songno": "1193", - "difficulty": "oni", - "note_count": 446, - "density_avg": 4.53677621283255, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.002100814133282944 - }, - { - "songno": "407", - "difficulty": "oni", - "note_count": 959, - "density_avg": 8.196581196581198, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 941, - "color_complexity": 0.010258440000000094 - }, - { - "songno": "413", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.887506092452432, - "density_peak": 10, - "bpm_avg": 138.01525735294103, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 474, - "color_complexity": 0.002721927968452235 - }, - { - "songno": "1187", - "difficulty": "oni", - "note_count": 192, - "density_avg": 3.4224598930481283, - "density_peak": 6, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 170, - "color_complexity": 0.0003872417725260037 - }, - { - "songno": "375", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.309688195991091, - "density_peak": 15, - "bpm_avg": 222.2000000000011, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 678, - "color_complexity": 0.009954832201709802 - }, - { - "songno": "349", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.582089552238805, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.005015391229360386 - }, - { - "songno": "1150", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.166735966735967, - "density_peak": 8, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.001922157761224489 - }, - { - "songno": "1144", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.329027091952489, - "density_peak": 7, - "bpm_avg": 203.18540433925048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 443, - "color_complexity": 0.0011230039449595922 - }, - { - "songno": "1144", - "difficulty": "ura", - "note_count": 1177, - "density_avg": 7.732047961118381, - "density_peak": 15, - "bpm_avg": 202.86108751062022, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 1052, - "color_complexity": 0.015143964260216507 - }, - { - "songno": "1178", - "difficulty": "oni", - "note_count": 357, - "density_avg": 3.82713567839196, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0017277822024307577 - }, - { - "songno": "605", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.069369978417022, - "density_peak": 11, - "bpm_avg": 204.01119196988705, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 747, - "color_complexity": 0.006775862050350308 - }, - { - "songno": "1391", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.342639712534403, - "density_peak": 13, - "bpm_avg": 206.492641261498, - "bpm_change": 26, - "scroll_change": 26, - "rhythm_complexity": 652, - "color_complexity": 0.006252435602047557 - }, - { - "songno": "1391", - "difficulty": "ura", - "note_count": 1015, - "density_avg": 8.459631154037345, - "density_peak": 19, - "bpm_avg": 211.71536945812818, - "bpm_change": 26, - "scroll_change": 28, - "rhythm_complexity": 904, - "color_complexity": 0.015520762037939024 - }, - { - "songno": "163", - "difficulty": "oni", - "note_count": 704, - "density_avg": 5.723577235772358, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 676, - "color_complexity": 0.004528000525338739 - }, - { - "songno": "163", - "difficulty": "ura", - "note_count": 754, - "density_avg": 6.130081300813008, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007651195696750384 - }, - { - "songno": "177", - "difficulty": "oni", - "note_count": 273, - "density_avg": 2.7215447154471546, - "density_peak": 6, - "bpm_avg": 143.6153846153846, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 238, - "color_complexity": 0.0009223871181621666 - }, - { - "songno": "1385", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.3966244725738393, - "density_peak": 7, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 322, - "color_complexity": 0.0008611307229117726 - }, - { - "songno": "611", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.85369532428356, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0018168242793145993 - }, - { - "songno": "89", - "difficulty": "oni", - "note_count": 630, - "density_avg": 6.9792864121685545, - "density_peak": 11, - "bpm_avg": 149.78647619047624, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 613, - "color_complexity": 0.008537524954666779 - }, - { - "songno": "639", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.1597578384888045, - "density_peak": 11, - "bpm_avg": 159.8883452211127, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 641, - "color_complexity": 0.0049019681003699056 - }, - { - "songno": "1352", - "difficulty": "oni", - "note_count": 976, - "density_avg": 6.432490203063769, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.009673730318733411 - }, - { - "songno": "1434", - "difficulty": "oni", - "note_count": 987, - "density_avg": 7.048901000297321, - "density_peak": 17, - "bpm_avg": 246.48276595745295, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 944, - "color_complexity": 0.013522636875938077 - }, - { - "songno": "1420", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.794391025641026, - "density_peak": 11, - "bpm_avg": 106, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 228, - "color_complexity": 0.0008096154319094754 - }, - { - "songno": "1346", - "difficulty": "oni", - "note_count": 731, - "density_avg": 5.2123478260869565, - "density_peak": 13, - "bpm_avg": 246, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 656, - "color_complexity": 0.005445417045367914 - }, - { - "songno": "62", - "difficulty": "oni", - "note_count": 484, - "density_avg": 4.870440251572328, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0024019322369124084 - }, - { - "songno": "822", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.7534246575342465, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.009264710511252189 - }, - { - "songno": "1408", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.885380116959064, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.004298713520987655 - }, - { - "songno": "76", - "difficulty": "oni", - "note_count": 414, - "density_avg": 4.241803278688524, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 335, - "color_complexity": 0.002280557039890196 - }, - { - "songno": "76", - "difficulty": "ura", - "note_count": 604, - "density_avg": 6.163265306122449, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 541, - "color_complexity": 0.00503402827380954 - }, - { - "songno": "771", - "difficulty": "oni", - "note_count": 509, - "density_avg": 3.728937728937729, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002259716636599273 - }, - { - "songno": "771", - "difficulty": "ura", - "note_count": 892, - "density_avg": 6.534798534798535, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.010346595173235348 - }, - { - "songno": "765", - "difficulty": "oni", - "note_count": 1396, - "density_avg": 10.449101796407186, - "density_peak": 21, - "bpm_avg": 297.8510028653295, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 1306, - "color_complexity": 0.02941860481229533 - }, - { - "songno": "765", - "difficulty": "ura", - "note_count": 1582, - "density_avg": 11.841317365269461, - "density_peak": 21, - "bpm_avg": 298.90960809102404, - "bpm_change": 4, - "scroll_change": 10, - "rhythm_complexity": 1485, - "color_complexity": 0.043387231100353994 - }, - { - "songno": "995", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.473100172711572, - "density_peak": 12, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.006521679596126006 - }, - { - "songno": "759", - "difficulty": "oni", - "note_count": 840, - "density_avg": 7.017543859649123, - "density_peak": 14, - "bpm_avg": 196.54761904761904, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 799, - "color_complexity": 0.010942669400665031 - }, - { - "songno": "981", - "difficulty": "oni", - "note_count": 511, - "density_avg": 4.228554778554779, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 462, - "color_complexity": 0.0014429745157498416 - }, - { - "songno": "981", - "difficulty": "ura", - "note_count": 715, - "density_avg": 5.916666666666666, - "density_peak": 11, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 681, - "color_complexity": 0.005236517407400119 - }, - { - "songno": "1226", - "difficulty": "oni", - "note_count": 443, - "density_avg": 3.719566010641685, - "density_peak": 9, - "bpm_avg": 131.99189616252826, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 341, - "color_complexity": 0.0014030523666070758 - }, - { - "songno": "1226", - "difficulty": "ura", - "note_count": 716, - "density_avg": 5.70659106816367, - "density_peak": 9, - "bpm_avg": 131.97696927374292, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 658, - "color_complexity": 0.004716799359479074 - }, - { - "songno": "1232", - "difficulty": "oni", - "note_count": 845, - "density_avg": 6.020356234096692, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.0068927280195447355 - }, - { - "songno": "956", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.708198489751888, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 244, - "color_complexity": 0.0007476113189939049 - }, - { - "songno": "956", - "difficulty": "ura", - "note_count": 444, - "density_avg": 5.948553054662379, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0029731722608024643 - }, - { - "songno": "942", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.065656565656566, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 622, - "color_complexity": 0.004019373659124446 - }, - { - "songno": "215", - "difficulty": "oni", - "note_count": 773, - "density_avg": 6.62382176520994, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.00825285185185184 - }, - { - "songno": "573", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.470668485675307, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 677, - "color_complexity": 0.01010908632546473 - }, - { - "songno": "567", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.112097353169378, - "density_peak": 10, - "bpm_avg": 142.4812673611111, - "bpm_change": 3, - "scroll_change": 36, - "rhythm_complexity": 505, - "color_complexity": 0.0038046491252858384 - }, - { - "songno": "1024", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.809575625680087, - "density_peak": 8, - "bpm_avg": 132.99485861182518, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 352, - "color_complexity": 0.001556605212139685 - }, - { - "songno": "1030", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.509643605870021, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 595, - "color_complexity": 0.004070292505316198 - }, - { - "songno": "1018", - "difficulty": "oni", - "note_count": 575, - "density_avg": 5.05787037037037, - "density_peak": 9, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.0034068980769235363 - }, - { - "songno": "1019", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.457646048109966, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 516, - "color_complexity": 0.0036476983035874555 - }, - { - "songno": "1031", - "difficulty": "oni", - "note_count": 494, - "density_avg": 3.9919191919191914, - "density_peak": 7, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0015457317692153724 - }, - { - "songno": "1031", - "difficulty": "ura", - "note_count": 954, - "density_avg": 7.709090909090909, - "density_peak": 18, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 795, - "color_complexity": 0.011710923280119577 - }, - { - "songno": "566", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.976081798974448, - "density_peak": 12, - "bpm_avg": 168.5343288690476, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 613, - "color_complexity": 0.007144373517678283 - }, - { - "songno": "200", - "difficulty": "oni", - "note_count": 346, - "density_avg": 4.017482061317677, - "density_peak": 7, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0009276976312232294 - }, - { - "songno": "200", - "difficulty": "ura", - "note_count": 530, - "density_avg": 6.153946510110893, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.005688751915759429 - }, - { - "songno": "214", - "difficulty": "oni", - "note_count": 836, - "density_avg": 7.497757847533633, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.011018134776522194 - }, - { - "songno": "572", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.8618657098923626, - "density_peak": 12, - "bpm_avg": 202.66666666666666, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 678, - "color_complexity": 0.0096185216986233 - }, - { - "songno": "943", - "difficulty": "oni", - "note_count": 723, - "density_avg": 6.4257434564709035, - "density_peak": 16, - "bpm_avg": 140.7966804979253, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 593, - "color_complexity": 0.009071796814678519 - }, - { - "songno": "1233", - "difficulty": "oni", - "note_count": 423, - "density_avg": 4.648351648351649, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.001873767970042872 - }, - { - "songno": "1227", - "difficulty": "oni", - "note_count": 987, - "density_avg": 6.811594202898551, - "density_peak": 18, - "bpm_avg": 255.52178318135765, - "bpm_change": 4, - "scroll_change": 17, - "rhythm_complexity": 869, - "color_complexity": 0.00964452988735289 - }, - { - "songno": "1227", - "difficulty": "ura", - "note_count": 1423, - "density_avg": 9.834139599170697, - "density_peak": 22, - "bpm_avg": 258.9248067463106, - "bpm_change": 8, - "scroll_change": 15, - "rhythm_complexity": 1235, - "color_complexity": 0.043274336087493655 - }, - { - "songno": "980", - "difficulty": "oni", - "note_count": 668, - "density_avg": 6.879240277777777, - "density_peak": 12, - "bpm_avg": 177.95399999999867, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 548, - "color_complexity": 0.009504487694870448 - }, - { - "songno": "758", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 7.800658616904501, - "density_peak": 19, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 973, - "color_complexity": 0.014202202064665746 - }, - { - "songno": "994", - "difficulty": "oni", - "note_count": 707, - "density_avg": 6.721330956625074, - "density_peak": 13, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 652, - "color_complexity": 0.00756823602083857 - }, - { - "songno": "764", - "difficulty": "oni", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 18, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 915, - "color_complexity": 0.015127085085754683 - }, - { - "songno": "770", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.8833545577798025, - "density_peak": 12, - "bpm_avg": 190.0111415525114, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.008563301986770076 - }, - { - "songno": "823", - "difficulty": "oni", - "note_count": 656, - "density_avg": 5.473945849977807, - "density_peak": 12, - "bpm_avg": 186.0655487804878, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 606, - "color_complexity": 0.005156101571918044 - }, - { - "songno": "63", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.391256830601093, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0026968286473532726 - }, - { - "songno": "1409", - "difficulty": "oni", - "note_count": 323, - "density_avg": 3.0238297872340425, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.0008282608111890808 - }, - { - "songno": "1421", - "difficulty": "oni", - "note_count": 884, - "density_avg": 7.3027674514663365, - "density_peak": 14, - "bpm_avg": 194.57013574660633, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 769, - "color_complexity": 0.008397186902165423 - }, - { - "songno": "1347", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.503192279138827, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.00510742870214163 - }, - { - "songno": "1353", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.76568848758465, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001585119404761899 - }, - { - "songno": "1353", - "difficulty": "ura", - "note_count": 584, - "density_avg": 6.8550790067720095, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.005471040528058314 - }, - { - "songno": "1435", - "difficulty": "oni", - "note_count": 422, - "density_avg": 5.223066104078763, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.002570878933333334 - }, - { - "songno": "88", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.96455876221774, - "density_peak": 12, - "bpm_avg": 166.00569892473132, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 509, - "color_complexity": 0.004537288316077771 - }, - { - "songno": "610", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.5700934579439245, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 550, - "color_complexity": 0.004806449094815463 - }, - { - "songno": "1384", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.827655536627049, - "density_peak": 14, - "bpm_avg": 246.40949324324822, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 849, - "color_complexity": 0.008786793400270556 - }, - { - "songno": "1390", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.50950179763739, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 591, - "color_complexity": 0.001396942964380191 - }, - { - "songno": "1390", - "difficulty": "ura", - "note_count": 763, - "density_avg": 6.6620441705187465, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 42, - "rhythm_complexity": 652, - "color_complexity": 0.008686661921369524 - }, - { - "songno": "604", - "difficulty": "oni", - "note_count": 229, - "density_avg": 2.5008964955175226, - "density_peak": 5, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00021520105898491113 - }, - { - "songno": "1179", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.803006392169991, - "density_peak": 10, - "bpm_avg": 151.90814196242172, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0026358404403124076 - }, - { - "songno": "1145", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.744084267255098, - "density_peak": 13, - "bpm_avg": 368.3345565749239, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.0068985530022572595 - }, - { - "songno": "1145", - "difficulty": "ura", - "note_count": 1024, - "density_avg": 8.703570520889851, - "density_peak": 16, - "bpm_avg": 365.10408203124933, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 814, - "color_complexity": 0.016398410846007964 - }, - { - "songno": "1151", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.7010574346346052, - "density_peak": 8, - "bpm_avg": 164.10877192982457, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 274, - "color_complexity": 0.0007792538682939821 - }, - { - "songno": "348", - "difficulty": "oni", - "note_count": 577, - "density_avg": 4.695196078431372, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 573, - "color_complexity": 0.002620796728395067 - }, - { - "songno": "348", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.225, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 761, - "color_complexity": 0.0065780997556622095 - }, - { - "songno": "1186", - "difficulty": "oni", - "note_count": 321, - "density_avg": 2.3615234375000003, - "density_peak": 6, - "bpm_avg": 113, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.00048239674822057226 - }, - { - "songno": "412", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.963358778625953, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004905915782312931 - }, - { - "songno": "374", - "difficulty": "oni", - "note_count": 510, - "density_avg": 5.872506970010821, - "density_peak": 11, - "bpm_avg": 180.7050921568633, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 443, - "color_complexity": 0.003949187453729018 - }, - { - "songno": "360", - "difficulty": "oni", - "note_count": 898, - "density_avg": 7.42532299741602, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 838, - "color_complexity": 0.01274466297242181 - }, - { - "songno": "406", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.748883928571429, - "density_peak": 10, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.003863672456314922 - }, - { - "songno": "1192", - "difficulty": "oni", - "note_count": 490, - "density_avg": 5.608187134502924, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.003077949296741548 - }, - { - "songno": "423", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.930926642375808, - "density_peak": 11, - "bpm_avg": 163.00267080745343, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 600, - "color_complexity": 0.005188939088258996 - }, - { - "songno": "345", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.2950688073394496, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 343, - "color_complexity": 0.0010938347276067246 - }, - { - "songno": "351", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.345685547908947, - "density_peak": 14, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.005930428435866911 - }, - { - "songno": "437", - "difficulty": "oni", - "note_count": 594, - "density_avg": 4.1861482381530974, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 566, - "color_complexity": 0.0022255143667800547 - }, - { - "songno": "1148", - "difficulty": "oni", - "note_count": 384, - "density_avg": 3.4962962962962965, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0015761175381449103 - }, - { - "songno": "1148", - "difficulty": "ura", - "note_count": 656, - "density_avg": 5.972839506172839, - "density_peak": 8, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005057351511111088 - }, - { - "songno": "1174", - "difficulty": "oni", - "note_count": 827, - "density_avg": 5.914183551847437, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.008512418611880585 - }, - { - "songno": "386", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.6410256410256405, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 762, - "color_complexity": 0.00443600205268271 - }, - { - "songno": "392", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.74085335737041, - "density_peak": 15, - "bpm_avg": 200.4470588235294, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.0087246400278549 - }, - { - "songno": "1160", - "difficulty": "oni", - "note_count": 615, - "density_avg": 5.321244477172312, - "density_peak": 13, - "bpm_avg": 187.51869918699188, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 560, - "color_complexity": 0.005178837992605135 - }, - { - "songno": "85", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.710644870671397, - "density_peak": 10, - "bpm_avg": 139.63044406023434, - "bpm_change": 39, - "scroll_change": 22, - "rhythm_complexity": 618, - "color_complexity": 0.004258318516839943 - }, - { - "songno": "1389", - "difficulty": "oni", - "note_count": 344, - "density_avg": 3.9564738292011024, - "density_peak": 7, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0011979116004535188 - }, - { - "songno": "91", - "difficulty": "oni", - "note_count": 375, - "density_avg": 2.9239914693398954, - "density_peak": 11, - "bpm_avg": 157.2945066666667, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 243, - "color_complexity": 0.0013348097276337466 - }, - { - "songno": "609", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.302164872578523, - "density_peak": 11, - "bpm_avg": 178.66739606126916, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 361, - "color_complexity": 0.004008381717026706 - }, - { - "songno": "621", - "difficulty": "oni", - "note_count": 1062, - "density_avg": 6.972727272727273, - "density_peak": 14, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1029, - "color_complexity": 0.012982303295915747 - }, - { - "songno": "635", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.954122752634842, - "density_peak": 13, - "bpm_avg": 146.3265306122449, - "bpm_change": 9, - "scroll_change": 7, - "rhythm_complexity": 653, - "color_complexity": 0.006937686603298827 - }, - { - "songno": "52", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.337868130259788, - "density_peak": 13, - "bpm_avg": 195.03200000000328, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.00411598638198618 - }, - { - "songno": "1438", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.586387434554974, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.007446743023849206 - }, - { - "songno": "1410", - "difficulty": "oni", - "note_count": 433, - "density_avg": 5.073697193956213, - "density_peak": 9, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0018708826151030533 - }, - { - "songno": "184", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.248062015503876, - "density_peak": 9, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0027366235950752205 - }, - { - "songno": "184", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.603047313552526, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.005842569301827004 - }, - { - "songno": "1376", - "difficulty": "oni", - "note_count": 275, - "density_avg": 2.328510182207931, - "density_peak": 5, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 241, - "color_complexity": 0.0005411215876251803 - }, - { - "songno": "1362", - "difficulty": "oni", - "note_count": 542, - "density_avg": 6.114162985219604, - "density_peak": 10, - "bpm_avg": 170.5369003690037, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 363, - "color_complexity": 0.0030069315794352927 - }, - { - "songno": "190", - "difficulty": "oni", - "note_count": 929, - "density_avg": 5.495909759732159, - "density_peak": 13, - "bpm_avg": 179.31754574811626, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 774, - "color_complexity": 0.006731735206776709 - }, - { - "songno": "1404", - "difficulty": "oni", - "note_count": 829, - "density_avg": 6.101776649746192, - "density_peak": 16, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.008343272416875415 - }, - { - "songno": "755", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.996951219512195, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.007914424640934259 - }, - { - "songno": "741", - "difficulty": "oni", - "note_count": 386, - "density_avg": 3.8722280887011618, - "density_peak": 8, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0009244815196446407 - }, - { - "songno": "741", - "difficulty": "ura", - "note_count": 665, - "density_avg": 6.157407407407407, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.005117871718394963 - }, - { - "songno": "999", - "difficulty": "oni", - "note_count": 975, - "density_avg": 8.221883925457409, - "density_peak": 17, - "bpm_avg": 206.14871794871794, - "bpm_change": 1, - "scroll_change": 9, - "rhythm_complexity": 894, - "color_complexity": 0.01573210343942902 - }, - { - "songno": "972", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.062267343485617, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.005586088283537377 - }, - { - "songno": "972", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.984459459459459, - "density_peak": 16, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 785, - "color_complexity": 0.010702727817315079 - }, - { - "songno": "1202", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.81549815498155, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.003325408179445369 - }, - { - "songno": "782", - "difficulty": "oni", - "note_count": 522, - "density_avg": 4.2561151079136685, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.001897606182601946 - }, - { - "songno": "1216", - "difficulty": "oni", - "note_count": 989, - "density_avg": 7.197360995990631, - "density_peak": 16, - "bpm_avg": 236.00444893832153, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 897, - "color_complexity": 0.009178932210318904 - }, - { - "songno": "1216", - "difficulty": "ura", - "note_count": 1338, - "density_avg": 9.73717797030886, - "density_peak": 20, - "bpm_avg": 236.00526158445444, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 1209, - "color_complexity": 0.02840435681803498 - }, - { - "songno": "219", - "difficulty": "oni", - "note_count": 588, - "density_avg": 4.763467492260062, - "density_peak": 11, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 545, - "color_complexity": 0.004141928778936775 - }, - { - "songno": "231", - "difficulty": "oni", - "note_count": 198, - "density_avg": 2.4360236220472444, - "density_peak": 6, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00028055962149037863 - }, - { - "songno": "231", - "difficulty": "ura", - "note_count": 523, - "density_avg": 6.434547244094488, - "density_peak": 11, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.005725379774305551 - }, - { - "songno": "543", - "difficulty": "oni", - "note_count": 414, - "density_avg": 3.1892008639308855, - "density_peak": 9, - "bpm_avg": 107, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0014005432322070147 - }, - { - "songno": "1028", - "difficulty": "oni", - "note_count": 624, - "density_avg": 4.91768826619965, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0030533388817775746 - }, - { - "songno": "594", - "difficulty": "oni", - "note_count": 888, - "density_avg": 7.269026548672566, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 829, - "color_complexity": 0.01402671232786871 - }, - { - "songno": "1000", - "difficulty": "oni", - "note_count": 729, - "density_avg": 6.807782101167316, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.007338713203016261 - }, - { - "songno": "1014", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.253097893432466, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0042777064526913645 - }, - { - "songno": "580", - "difficulty": "oni", - "note_count": 436, - "density_avg": 2.856135046611237, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 261, - "color_complexity": 0.0011258812094705893 - }, - { - "songno": "580", - "difficulty": "ura", - "note_count": 733, - "density_avg": 4.801713277903754, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 550, - "color_complexity": 0.004340325903245934 - }, - { - "songno": "1015", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.933683878201988, - "density_peak": 13, - "bpm_avg": 120.80456026058631, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 434, - "color_complexity": 0.0041415570112380146 - }, - { - "songno": "1001", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.9832834331337326, - "density_peak": 9, - "bpm_avg": 153.79611650485438, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 489, - "color_complexity": 0.0032292721999377665 - }, - { - "songno": "595", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.318982387475538, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 726, - "color_complexity": 0.015172048943461684 - }, - { - "songno": "1029", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.6970443349753697, - "density_peak": 7, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 137, - "color_complexity": 0.00028928209589604265 - }, - { - "songno": "224", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.493064574195197, - "density_peak": 13, - "bpm_avg": 155.0160341151386, - "bpm_change": 6, - "scroll_change": 15, - "rhythm_complexity": 367, - "color_complexity": 0.0038494603983574714 - }, - { - "songno": "542", - "difficulty": "oni", - "note_count": 389, - "density_avg": 4.5084009550206545, - "density_peak": 11, - "bpm_avg": 176.2959640102828, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 352, - "color_complexity": 0.0027699698680541426 - }, - { - "songno": "556", - "difficulty": "oni", - "note_count": 344, - "density_avg": 4.494140249759846, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0019195575173746586 - }, - { - "songno": "230", - "difficulty": "oni", - "note_count": 572, - "density_avg": 5.466360856269113, - "density_peak": 10, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 526, - "color_complexity": 0.002592183676218123 - }, - { - "songno": "218", - "difficulty": "oni", - "note_count": 721, - "density_avg": 6.052062105773896, - "density_peak": 12, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006159150684553403 - }, - { - "songno": "218", - "difficulty": "ura", - "note_count": 873, - "density_avg": 7.327947598253275, - "density_peak": 13, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 803, - "color_complexity": 0.009222251215362675 - }, - { - "songno": "1217", - "difficulty": "oni", - "note_count": 468, - "density_avg": 5.339597315436242, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0026303931062499975 - }, - { - "songno": "783", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.853672716539031, - "density_peak": 13, - "bpm_avg": 184.76230889235575, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.005952612910542715 - }, - { - "songno": "797", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.629820051413882, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.004375354192442994 - }, - { - "songno": "1203", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.7831469979296064, - "density_peak": 8, - "bpm_avg": 105.5, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 353, - "color_complexity": 0.001620439267666786 - }, - { - "songno": "967", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.273966493055556, - "density_peak": 10, - "bpm_avg": 139.99099999999945, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.00316696150767669 - }, - { - "songno": "973", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.998938428874735, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.0036980176505468825 - }, - { - "songno": "998", - "difficulty": "oni", - "note_count": 729, - "density_avg": 5.069100391134289, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.0037032911514235274 - }, - { - "songno": "740", - "difficulty": "oni", - "note_count": 546, - "density_avg": 4.9167608942141126, - "density_peak": 13, - "bpm_avg": 227.51318681318511, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 413, - "color_complexity": 0.0038746520210597344 - }, - { - "songno": "754", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.3876096491228065, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 616, - "color_complexity": 0.0039568554825932176 - }, - { - "songno": "1363", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.298859315589354, - "density_peak": 9, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.002909629113272306 - }, - { - "songno": "1405", - "difficulty": "oni", - "note_count": 905, - "density_avg": 8.115489130434783, - "density_peak": 15, - "bpm_avg": 198, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 793, - "color_complexity": 0.01367789493391424 - }, - { - "songno": "191", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "1411", - "difficulty": "oni", - "note_count": 815, - "density_avg": 7.149122807017544, - "density_peak": 16, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 754, - "color_complexity": 0.010987100546798512 - }, - { - "songno": "1411", - "difficulty": "ura", - "note_count": 1030, - "density_avg": 9.035087719298245, - "density_peak": 21, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 871, - "color_complexity": 0.01751565204361806 - }, - { - "songno": "1377", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.2605177173432605, - "density_peak": 11, - "bpm_avg": 175.9732854578097, - "bpm_change": 12, - "scroll_change": 51, - "rhythm_complexity": 488, - "color_complexity": 0.0028268855546321916 - }, - { - "songno": "53", - "difficulty": "oni", - "note_count": 677, - "density_avg": 6.297674418604651, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 668, - "color_complexity": 0.005633050564261022 - }, - { - "songno": "1", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.492187500000001, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.009891807575505564 - }, - { - "songno": "1439", - "difficulty": "oni", - "note_count": 515, - "density_avg": 4.366434378629501, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.003186931904927284 - }, - { - "songno": "47", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.537210756722952, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0036966843633750917 - }, - { - "songno": "152", - "difficulty": "oni", - "note_count": 790, - "density_avg": 6.786941580756014, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 772, - "color_complexity": 0.007224909302394338 - }, - { - "songno": "146", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.326530612244897, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0027306366559499227 - }, - { - "songno": "608", - "difficulty": "oni", - "note_count": 340, - "density_avg": 4.077437987658843, - "density_peak": 8, - "bpm_avg": 123.01835294117646, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0014977887112729207 - }, - { - "songno": "90", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.396129032258065, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 671, - "color_complexity": 0.006354437659333248 - }, - { - "songno": "1388", - "difficulty": "oni", - "note_count": 529, - "density_avg": 6.134893184130213, - "density_peak": 11, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004569550340306123 - }, - { - "songno": "1388", - "difficulty": "ura", - "note_count": 586, - "density_avg": 6.6937875751503, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 546, - "color_complexity": 0.005590770347448972 - }, - { - "songno": "1161", - "difficulty": "oni", - "note_count": 428, - "density_avg": 4.330952380952381, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 375, - "color_complexity": 0.001530776101022984 - }, - { - "songno": "1175", - "difficulty": "oni", - "note_count": 591, - "density_avg": 4.607796610169491, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0028313233753878906 - }, - { - "songno": "387", - "difficulty": "oni", - "note_count": 492, - "density_avg": 4.121170395869191, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.0028687784003459354 - }, - { - "songno": "1149", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.279824561403508, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.002973089013621057 - }, - { - "songno": "1149", - "difficulty": "ura", - "note_count": 921, - "density_avg": 6.867105263157895, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 866, - "color_complexity": 0.008701597588183433 - }, - { - "songno": "350", - "difficulty": "oni", - "note_count": 593, - "density_avg": 4.764846202134337, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 552, - "color_complexity": 0.0031287421234234766 - }, - { - "songno": "436", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.100462962962963, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 453, - "color_complexity": 0.002085368284081056 - }, - { - "songno": "422", - "difficulty": "oni", - "note_count": 642, - "density_avg": 4.787588388192328, - "density_peak": 9, - "bpm_avg": 168.40109034267914, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 626, - "color_complexity": 0.0025335209773418403 - }, - { - "songno": "422", - "difficulty": "ura", - "note_count": 776, - "density_avg": 5.733735468466125, - "density_peak": 12, - "bpm_avg": 168.39948453608247, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 751, - "color_complexity": 0.0068508851411107465 - }, - { - "songno": "344", - "difficulty": "oni", - "note_count": 589, - "density_avg": 5.06171875, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 571, - "color_complexity": 0.0035770335315490403 - }, - { - "songno": "408", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.15936183760187, - "density_peak": 8, - "bpm_avg": 138.00010335917312, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0019142434638521426 - }, - { - "songno": "1188", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.109756097560976, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0014355189115646276 - }, - { - "songno": "434", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.526062062100932, - "density_peak": 10, - "bpm_avg": 134.15181623931622, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 407, - "color_complexity": 0.0019305950588551313 - }, - { - "songno": "352", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.275996112730807, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.00175747217315632 - }, - { - "songno": "346", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.5215517241379315, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006534743216641864 - }, - { - "songno": "420", - "difficulty": "oni", - "note_count": 382, - "density_avg": 4.05105090072067, - "density_peak": 10, - "bpm_avg": 160.0165445026178, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 330, - "color_complexity": 0.002331989717786926 - }, - { - "songno": "1163", - "difficulty": "oni", - "note_count": 690, - "density_avg": 5.5089820359281445, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 601, - "color_complexity": 0.005152595473704029 - }, - { - "songno": "391", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.139559543230016, - "density_peak": 12, - "bpm_avg": 169.00195195195195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 585, - "color_complexity": 0.005039326552726177 - }, - { - "songno": "385", - "difficulty": "oni", - "note_count": 386, - "density_avg": 5.911711711711712, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 371, - "color_complexity": 0.004340141742112481 - }, - { - "songno": "1177", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.056490384615385, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0015148063329031769 - }, - { - "songno": "92", - "difficulty": "oni", - "note_count": 383, - "density_avg": 2.9730593607305935, - "density_peak": 7, - "bpm_avg": 135.9947780678851, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 294, - "color_complexity": 0.0015399932555156637 - }, - { - "songno": "92", - "difficulty": "ura", - "note_count": 612, - "density_avg": 4.6103635462669414, - "density_peak": 9, - "bpm_avg": 135.98039215686273, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0024325994798297043 - }, - { - "songno": "86", - "difficulty": "oni", - "note_count": 651, - "density_avg": 4.6310975609756095, - "density_peak": 12, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0034271167824048198 - }, - { - "songno": "178", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.776917236142749, - "density_peak": 11, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 659, - "color_complexity": 0.005100928970205306 - }, - { - "songno": "178", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.894229309035688, - "density_peak": 12, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 788, - "color_complexity": 0.008269205784819907 - }, - { - "songno": "150", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.965373383395912, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 460, - "color_complexity": 0.003179342186923859 - }, - { - "songno": "150", - "difficulty": "ura", - "note_count": 687, - "density_avg": 6.305381727158949, - "density_peak": 17, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 624, - "color_complexity": 0.005278990123456753 - }, - { - "songno": "144", - "difficulty": "oni", - "note_count": 353, - "density_avg": 4.211799906690268, - "density_peak": 7, - "bpm_avg": 141.95524079320157, - "bpm_change": 16, - "scroll_change": 5, - "rhythm_complexity": 301, - "color_complexity": 0.0015918048010694027 - }, - { - "songno": "3", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.9115044247787614, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0019120605323766514 - }, - { - "songno": "51", - "difficulty": "oni", - "note_count": 454, - "density_avg": 4.906795077581594, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0017135882151237951 - }, - { - "songno": "811", - "difficulty": "oni", - "note_count": 145, - "density_avg": 1.6571428571428573, - "density_peak": 5, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 105, - "color_complexity": 0.00003496439156897107 - }, - { - "songno": "811", - "difficulty": "ura", - "note_count": 468, - "density_avg": 5.348571428571428, - "density_peak": 25, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.000843309872415438 - }, - { - "songno": "45", - "difficulty": "oni", - "note_count": 933, - "density_avg": 7.326442307692307, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 904, - "color_complexity": 0.008993991861728386 - }, - { - "songno": "45", - "difficulty": "ura", - "note_count": 976, - "density_avg": 7.664102564102564, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 947, - "color_complexity": 0.013850611872702267 - }, - { - "songno": "1349", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.602848738635937, - "density_peak": 9, - "bpm_avg": 133.2667910447761, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0024383565456923134 - }, - { - "songno": "805", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.263554571576617, - "density_peak": 11, - "bpm_avg": 300.0189189189189, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 648, - "color_complexity": 0.006582447664600062 - }, - { - "songno": "193", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.74135687732342, - "density_peak": 11, - "bpm_avg": 150.05000000000192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.004252055304796902 - }, - { - "songno": "1407", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.9456140350877194, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 310, - "color_complexity": 0.0012789427836762696 - }, - { - "songno": "1361", - "difficulty": "oni", - "note_count": 387, - "density_avg": 3.3793257423532035, - "density_peak": 6, - "bpm_avg": 127.72093023255815, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 340, - "color_complexity": 0.000699219979472848 - }, - { - "songno": "79", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.00538131288279, - "density_peak": 11, - "bpm_avg": 159.94520426287735, - "bpm_change": 14, - "scroll_change": 8, - "rhythm_complexity": 485, - "color_complexity": 0.003747675989800532 - }, - { - "songno": "1375", - "difficulty": "oni", - "note_count": 190, - "density_avg": 1.8766400710394626, - "density_peak": 4, - "bpm_avg": 70.73902631578949, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 164, - "color_complexity": 0.0001944750770985111 - }, - { - "songno": "839", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.9583333333333335, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 272, - "color_complexity": 0.0008918354565697317 - }, - { - "songno": "1413", - "difficulty": "oni", - "note_count": 622, - "density_avg": 5.219462873673885, - "density_peak": 10, - "bpm_avg": 181.32475884244374, - "bpm_change": 29, - "scroll_change": 28, - "rhythm_complexity": 535, - "color_complexity": 0.003154895573120465 - }, - { - "songno": "1413", - "difficulty": "ura", - "note_count": 866, - "density_avg": 7.222925509249093, - "density_peak": 15, - "bpm_avg": 183.27367205542726, - "bpm_change": 34, - "scroll_change": 38, - "rhythm_complexity": 699, - "color_complexity": 0.01078114234258459 - }, - { - "songno": "187", - "difficulty": "oni", - "note_count": 846, - "density_avg": 6.666619337683021, - "density_peak": 13, - "bpm_avg": 185.46099290780143, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 797, - "color_complexity": 0.010330007279750442 - }, - { - "songno": "187", - "difficulty": "ura", - "note_count": 753, - "density_avg": 5.948886020948067, - "density_peak": 13, - "bpm_avg": 185.39442231075697, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 696, - "color_complexity": 0.009033002101284568 - }, - { - "songno": "742", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.149540229885058, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 567, - "color_complexity": 0.00387217110199955 - }, - { - "songno": "756", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.991386217948718, - "density_peak": 16, - "bpm_avg": 205, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 870, - "color_complexity": 0.014804465446167496 - }, - { - "songno": "1229", - "difficulty": "oni", - "note_count": 969, - "density_avg": 6.884600938967137, - "density_peak": 16, - "bpm_avg": 216.10681114551085, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 898, - "color_complexity": 0.01320371907889871 - }, - { - "songno": "971", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.225974025974026, - "density_peak": 17, - "bpm_avg": 214, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 765, - "color_complexity": 0.012594515438637684 - }, - { - "songno": "959", - "difficulty": "oni", - "note_count": 671, - "density_avg": 5.168538106861948, - "density_peak": 10, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004870882559130469 - }, - { - "songno": "959", - "difficulty": "ura", - "note_count": 969, - "density_avg": 7.433711507293355, - "density_peak": 15, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 826, - "color_complexity": 0.012659436123553755 - }, - { - "songno": "781", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.080459770114942, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 895, - "color_complexity": 0.014007261227643465 - }, - { - "songno": "1215", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.0917941585535464, - "density_peak": 14, - "bpm_avg": 268.32191780821915, - "bpm_change": 62, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010456238520281644 - }, - { - "songno": "1215", - "difficulty": "ura", - "note_count": 1353, - "density_avg": 9.408901251738525, - "density_peak": 18, - "bpm_avg": 276.57058388765705, - "bpm_change": 69, - "scroll_change": 0, - "rhythm_complexity": 1278, - "color_complexity": 0.024616621667793968 - }, - { - "songno": "1201", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.9520568284212696, - "density_peak": 11, - "bpm_avg": 199.97635258358673, - "bpm_change": 12, - "scroll_change": 12, - "rhythm_complexity": 226, - "color_complexity": 0.000788095675923605 - }, - { - "songno": "1201", - "difficulty": "ura", - "note_count": 889, - "density_avg": 7.976402349674755, - "density_peak": 14, - "bpm_avg": 200.0003329583802, - "bpm_change": 18, - "scroll_change": 17, - "rhythm_complexity": 790, - "color_complexity": 0.013375321772669582 - }, - { - "songno": "795", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.025, - "density_peak": 7, - "bpm_avg": 183.42028985507247, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0009213481405473305 - }, - { - "songno": "795", - "difficulty": "ura", - "note_count": 532, - "density_avg": 6.084967320261438, - "density_peak": 11, - "bpm_avg": 182.6315789473684, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 413, - "color_complexity": 0.004021757654829363 - }, - { - "songno": "568", - "difficulty": "oni", - "note_count": 829, - "density_avg": 5.9989222478829864, - "density_peak": 12, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 740, - "color_complexity": 0.007838384394011081 - }, - { - "songno": "540", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.379717986410894, - "density_peak": 12, - "bpm_avg": 168.00325000000015, - "bpm_change": 42, - "scroll_change": 4, - "rhythm_complexity": 453, - "color_complexity": 0.004948341856870142 - }, - { - "songno": "226", - "difficulty": "oni", - "note_count": 691, - "density_avg": 5.991329479768786, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 671, - "color_complexity": 0.006179420370120491 - }, - { - "songno": "226", - "difficulty": "ura", - "note_count": 691, - "density_avg": 5.726519337016574, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.0048015509750566855 - }, - { - "songno": "554", - "difficulty": "oni", - "note_count": 661, - "density_avg": 5.8185113268608415, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 632, - "color_complexity": 0.0046141551464559385 - }, - { - "songno": "583", - "difficulty": "oni", - "note_count": 339, - "density_avg": 2.998027892944747, - "density_peak": 10, - "bpm_avg": 159.98834808259585, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 302, - "color_complexity": 0.0014730143572736357 - }, - { - "songno": "1003", - "difficulty": "oni", - "note_count": 312, - "density_avg": 3.5433628318584067, - "density_peak": 7, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 208, - "color_complexity": 0.0007564534779320977 - }, - { - "songno": "1002", - "difficulty": "oni", - "note_count": 420, - "density_avg": 5.71559633027523, - "density_peak": 10, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 384, - "color_complexity": 0.002528679663731411 - }, - { - "songno": "596", - "difficulty": "oni", - "note_count": 622, - "density_avg": 4.990678466076695, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.004067071640300878 - }, - { - "songno": "233", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.155502392344498, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0012268098724489778 - }, - { - "songno": "555", - "difficulty": "oni", - "note_count": 1290, - "density_avg": 8.231221088733648, - "density_peak": 17, - "bpm_avg": 231.4418604651163, - "bpm_change": 7, - "scroll_change": 4, - "rhythm_complexity": 1220, - "color_complexity": 0.020162583684220053 - }, - { - "songno": "541", - "difficulty": "oni", - "note_count": 473, - "density_avg": 5.149255848799893, - "density_peak": 10, - "bpm_avg": 216.4387315010569, - "bpm_change": 35, - "scroll_change": 9, - "rhythm_complexity": 400, - "color_complexity": 0.002421928650842573 - }, - { - "songno": "569", - "difficulty": "oni", - "note_count": 834, - "density_avg": 6.133682527524497, - "density_peak": 15, - "bpm_avg": 190.77937649880096, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 780, - "color_complexity": 0.009285071302363085 - }, - { - "songno": "794", - "difficulty": "oni", - "note_count": 520, - "density_avg": 6.4465528146742574, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 494, - "color_complexity": 0.0039931374796231545 - }, - { - "songno": "1200", - "difficulty": "oni", - "note_count": 305, - "density_avg": 4.166666666666667, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0011883900799521609 - }, - { - "songno": "1214", - "difficulty": "oni", - "note_count": 606, - "density_avg": 4.523876791657335, - "density_peak": 13, - "bpm_avg": 234.74257425742573, - "bpm_change": 14, - "scroll_change": 16, - "rhythm_complexity": 513, - "color_complexity": 0.0031818917706805806 - }, - { - "songno": "1214", - "difficulty": "ura", - "note_count": 1054, - "density_avg": 7.4336970014910815, - "density_peak": 17, - "bpm_avg": 240.8349146110057, - "bpm_change": 14, - "scroll_change": 18, - "rhythm_complexity": 893, - "color_complexity": 0.011510096546646231 - }, - { - "songno": "780", - "difficulty": "oni", - "note_count": 726, - "density_avg": 4.843509789702684, - "density_peak": 14, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00468491088123424 - }, - { - "songno": "958", - "difficulty": "oni", - "note_count": 740, - "density_avg": 6.312261995430313, - "density_peak": 12, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 612, - "color_complexity": 0.007320138014814796 - }, - { - "songno": "958", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.796496572734197, - "density_peak": 16, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 814, - "color_complexity": 0.014845986752224365 - }, - { - "songno": "970", - "difficulty": "oni", - "note_count": 862, - "density_avg": 5.902920443101713, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 742, - "color_complexity": 0.006692307181676403 - }, - { - "songno": "1228", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.355084745762712, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 503, - "color_complexity": 0.0020265120471938797 - }, - { - "songno": "964", - "difficulty": "oni", - "note_count": 316, - "density_avg": 4.704976997072355, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0011802832414593977 - }, - { - "songno": "757", - "difficulty": "oni", - "note_count": 1129, - "density_avg": 8.906391432863304, - "density_peak": 17, - "bpm_avg": 184.92825509300266, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 1078, - "color_complexity": 0.02022480349227142 - }, - { - "songno": "1374", - "difficulty": "oni", - "note_count": 322, - "density_avg": 2.4859218891916437, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.00039185137463781906 - }, - { - "songno": "186", - "difficulty": "oni", - "note_count": 903, - "density_avg": 8.343283582089551, - "density_peak": 19, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 815, - "color_complexity": 0.013033689978820212 - }, - { - "songno": "1412", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.3760683760683765, - "density_peak": 10, - "bpm_avg": 249.60254372019077, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 585, - "color_complexity": 0.003501775762286951 - }, - { - "songno": "1412", - "difficulty": "ura", - "note_count": 987, - "density_avg": 8.330519918973666, - "density_peak": 17, - "bpm_avg": 247.72036474164133, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 959, - "color_complexity": 0.011959811434796245 - }, - { - "songno": "1406", - "difficulty": "oni", - "note_count": 997, - "density_avg": 7.357430816535702, - "density_peak": 22, - "bpm_avg": 255.6198595787362, - "bpm_change": 5, - "scroll_change": 3, - "rhythm_complexity": 836, - "color_complexity": 0.012847516641651149 - }, - { - "songno": "1360", - "difficulty": "oni", - "note_count": 676, - "density_avg": 4.968256450351837, - "density_peak": 8, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.002824719977946671 - }, - { - "songno": "804", - "difficulty": "oni", - "note_count": 540, - "density_avg": 3.8654852596562095, - "density_peak": 10, - "bpm_avg": 149.13314814814802, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 437, - "color_complexity": 0.002834029395221408 - }, - { - "songno": "804", - "difficulty": "ura", - "note_count": 820, - "density_avg": 5.8698109498483175, - "density_peak": 16, - "bpm_avg": 157.5876829268292, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 734, - "color_complexity": 0.010603336900242089 - }, - { - "songno": "1348", - "difficulty": "oni", - "note_count": 474, - "density_avg": 5.2397959183673475, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.003102418990299837 - }, - { - "songno": "44", - "difficulty": "oni", - "note_count": 455, - "density_avg": 4.257309941520467, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 328, - "color_complexity": 0.0014371882674396018 - }, - { - "songno": "2", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.858883994126285, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.001304997117283953 - }, - { - "songno": "623", - "difficulty": "oni", - "note_count": 364, - "density_avg": 5.037001762558617, - "density_peak": 10, - "bpm_avg": 154.23802197802206, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 305, - "color_complexity": 0.0023195794747126134 - }, - { - "songno": "151", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.638321167883212, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.002730370960155398 - }, - { - "songno": "637", - "difficulty": "oni", - "note_count": 736, - "density_avg": 5.5599622285174695, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.004763446263798519 - }, - { - "songno": "87", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.288145669400578, - "density_peak": 11, - "bpm_avg": 152.0453686200378, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 511, - "color_complexity": 0.003837428390011117 - }, - { - "songno": "179", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.9591618693132125, - "density_peak": 15, - "bpm_avg": 213.36365296803686, - "bpm_change": 11, - "scroll_change": 15, - "rhythm_complexity": 808, - "color_complexity": 0.008317609077654609 - }, - { - "songno": "93", - "difficulty": "oni", - "note_count": 659, - "density_avg": 4.8877979977756105, - "density_peak": 13, - "bpm_avg": 162.99015174506792, - "bpm_change": 18, - "scroll_change": 6, - "rhythm_complexity": 573, - "color_complexity": 0.005791591039194993 - }, - { - "songno": "384", - "difficulty": "oni", - "note_count": 345, - "density_avg": 3.6104651162790695, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.001053859936224488 - }, - { - "songno": "1176", - "difficulty": "oni", - "note_count": 502, - "density_avg": 4.248697916666666, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 464, - "color_complexity": 0.0018802655487143488 - }, - { - "songno": "1162", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.78589263420724, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.0017825193420230704 - }, - { - "songno": "390", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.758041958041957, - "density_peak": 8, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0022402315836734694 - }, - { - "songno": "347", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.666666666666667, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.005925731765801294 - }, - { - "songno": "421", - "difficulty": "oni", - "note_count": 1160, - "density_avg": 7.239944521497919, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1133, - "color_complexity": 0.009281254241263113 - }, - { - "songno": "435", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.653513209668354, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0014969167478685944 - }, - { - "songno": "431", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.95820895522388, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 734, - "color_complexity": 0.010140632783933592 - }, - { - "songno": "425", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.898988800751897, - "density_peak": 11, - "bpm_avg": 170.0056862745098, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 665, - "color_complexity": 0.006579899651231696 - }, - { - "songno": "425", - "difficulty": "ura", - "note_count": 876, - "density_avg": 6.755576491539141, - "density_peak": 12, - "bpm_avg": 170.02246575342468, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 819, - "color_complexity": 0.008822365948660765 - }, - { - "songno": "343", - "difficulty": "oni", - "note_count": 375, - "density_avg": 3.817919416506573, - "density_peak": 10, - "bpm_avg": 144.02287999999993, - "bpm_change": 8, - "scroll_change": 7, - "rhythm_complexity": 328, - "color_complexity": 0.0023856146920736144 - }, - { - "songno": "1199", - "difficulty": "oni", - "note_count": 279, - "density_avg": 2.651315789473684, - "density_peak": 7, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00039626902284807894 - }, - { - "songno": "419", - "difficulty": "oni", - "note_count": 769, - "density_avg": 6.580497512437812, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.00952969950011453 - }, - { - "songno": "394", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.871710526315789, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.00545371061728395 - }, - { - "songno": "1166", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.785100286532952, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 750, - "color_complexity": 0.00822286029332596 - }, - { - "songno": "1172", - "difficulty": "oni", - "note_count": 995, - "density_avg": 8.040585676037484, - "density_peak": 22, - "bpm_avg": 241.3386623115556, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 729, - "color_complexity": 0.011765713239051826 - }, - { - "songno": "380", - "difficulty": "oni", - "note_count": 299, - "density_avg": 3.698567708333333, - "density_peak": 10, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 246, - "color_complexity": 0.000826477353899929 - }, - { - "songno": "155", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.582669196710942, - "density_peak": 11, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 521, - "color_complexity": 0.0029702074307249595 - }, - { - "songno": "141", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "627", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.32128514056225, - "density_peak": 18, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 844, - "color_complexity": 0.013643740370567333 - }, - { - "songno": "97", - "difficulty": "oni", - "note_count": 804, - "density_avg": 5.502368987796122, - "density_peak": 13, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.005160073315990605 - }, - { - "songno": "169", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.556042031523643, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 437, - "color_complexity": 0.002719541472348197 - }, - { - "songno": "83", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.751104565537555, - "density_peak": 12, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.003500847777647112 - }, - { - "songno": "1364", - "difficulty": "oni", - "note_count": 683, - "density_avg": 5.382336956521739, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 614, - "color_complexity": 0.005573890630681125 - }, - { - "songno": "1364", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.628260869565218, - "density_peak": 14, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 856, - "color_complexity": 0.013824094595296977 - }, - { - "songno": "68", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.1951404916509984, - "density_peak": 20, - "bpm_avg": 193.25997425997426, - "bpm_change": 9, - "scroll_change": 18, - "rhythm_complexity": 684, - "color_complexity": 0.007131557028309479 - }, - { - "songno": "828", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.472049689440993, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 519, - "color_complexity": 0.002757052519935577 - }, - { - "songno": "196", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.12019286230545, - "density_peak": 11, - "bpm_avg": 159.7987637362637, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 699, - "color_complexity": 0.005276624785479498 - }, - { - "songno": "1402", - "difficulty": "oni", - "note_count": 484, - "density_avg": 5.041865353037767, - "density_peak": 9, - "bpm_avg": 129.53140495867768, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 439, - "color_complexity": 0.0029445082519504533 - }, - { - "songno": "182", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.1155314865499, - "density_peak": 10, - "bpm_avg": 135.90625, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 561, - "color_complexity": 0.0037731412126623337 - }, - { - "songno": "1370", - "difficulty": "oni", - "note_count": 786, - "density_avg": 6.605042016806723, - "density_peak": 12, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.0065039530563881995 - }, - { - "songno": "1370", - "difficulty": "ura", - "note_count": 1123, - "density_avg": 9.07108239095315, - "density_peak": 20, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 1059, - "color_complexity": 0.023218155344590735 - }, - { - "songno": "1358", - "difficulty": "oni", - "note_count": 565, - "density_avg": 3.6808981657179003, - "density_peak": 7, - "bpm_avg": 103, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.0012289794200269165 - }, - { - "songno": "814", - "difficulty": "oni", - "note_count": 996, - "density_avg": 8.645833333333334, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.016097228731845468 - }, - { - "songno": "40", - "difficulty": "oni", - "note_count": 444, - "density_avg": 5.061313225689626, - "density_peak": 10, - "bpm_avg": 145.01000000000002, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.003436544388238737 - }, - { - "songno": "800", - "difficulty": "oni", - "note_count": 657, - "density_avg": 6.3230075187969925, - "density_peak": 12, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.005861746590915558 - }, - { - "songno": "747", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.87431693989071, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 615, - "color_complexity": 0.0068247013233811915 - }, - { - "songno": "753", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.454812707444287, - "density_peak": 10, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 563, - "color_complexity": 0.00474949881619812 - }, - { - "songno": "784", - "difficulty": "oni", - "note_count": 881, - "density_avg": 7.654279569892473, - "density_peak": 15, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 807, - "color_complexity": 0.013132196554557145 - }, - { - "songno": "1210", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.409149072296865, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0024505255433668826 - }, - { - "songno": "1210", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.527831094049904, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.007820728104686347 - }, - { - "songno": "948", - "difficulty": "oni", - "note_count": 915, - "density_avg": 7.336138518806753, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.010411021576164171 - }, - { - "songno": "1204", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.7977566314625832, - "density_peak": 7, - "bpm_avg": 105.01687272727271, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0009566038523754819 - }, - { - "songno": "790", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3398564905414223, - "density_peak": 6, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 285, - "color_complexity": 0.0011190129123896512 - }, - { - "songno": "960", - "difficulty": "oni", - "note_count": 912, - "density_avg": 6.923336457357076, - "density_peak": 17, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 824, - "color_complexity": 0.010948788171929317 - }, - { - "songno": "960", - "difficulty": "ura", - "note_count": 1240, - "density_avg": 9.413308341143392, - "density_peak": 21, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1100, - "color_complexity": 0.02757118652366326 - }, - { - "songno": "974", - "difficulty": "oni", - "note_count": 216, - "density_avg": 2.049438202247191, - "density_peak": 5, - "bpm_avg": 76, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 189, - "color_complexity": 0 - }, - { - "songno": "223", - "difficulty": "oni", - "note_count": 502, - "density_avg": 5.265597261500406, - "density_peak": 10, - "bpm_avg": 219.91035856573706, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 420, - "color_complexity": 0.0035746818287955393 - }, - { - "songno": "545", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.558155740961462, - "density_peak": 8, - "bpm_avg": 232.39000000000038, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.0033004309608055194 - }, - { - "songno": "551", - "difficulty": "oni", - "note_count": 445, - "density_avg": 4.486744893524555, - "density_peak": 8, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016074770172839485 - }, - { - "songno": "551", - "difficulty": "ura", - "note_count": 553, - "density_avg": 5.575662755323772, - "density_peak": 10, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0033299986814814757 - }, - { - "songno": "237", - "difficulty": "oni", - "note_count": 665, - "density_avg": 4.705188679245282, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.003544677151816613 - }, - { - "songno": "579", - "difficulty": "oni", - "note_count": 588, - "density_avg": 5.402990229789272, - "density_peak": 11, - "bpm_avg": 128.26971088435374, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 520, - "color_complexity": 0.003964036631514234 - }, - { - "songno": "579", - "difficulty": "ura", - "note_count": 566, - "density_avg": 5.200837534116884, - "density_peak": 11, - "bpm_avg": 127.67909893992928, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 528, - "color_complexity": 0.0035817216406916637 - }, - { - "songno": "1012", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.424503882657462, - "density_peak": 16, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.01011744099631783 - }, - { - "songno": "1012", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.341242450388266, - "density_peak": 20, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 889, - "color_complexity": 0.014029091892053891 - }, - { - "songno": "586", - "difficulty": "oni", - "note_count": 397, - "density_avg": 4.5567610062893085, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.002075338630209768 - }, - { - "songno": "592", - "difficulty": "oni", - "note_count": 583, - "density_avg": 5.730928104575163, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 536, - "color_complexity": 0.006021851365487564 - }, - { - "songno": "1006", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.9443374598807885, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.0055697224802468935 - }, - { - "songno": "1007", - "difficulty": "oni", - "note_count": 187, - "density_avg": 2.1062404870624047, - "density_peak": 5, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 139, - "color_complexity": 0.00019671832027643094 - }, - { - "songno": "593", - "difficulty": "oni", - "note_count": 787, - "density_avg": 8.943181818181818, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 736, - "color_complexity": 0.011659247594643603 - }, - { - "songno": "587", - "difficulty": "oni", - "note_count": 406, - "density_avg": 5.278, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0031014543347437254 - }, - { - "songno": "1013", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.473381294964029, - "density_peak": 12, - "bpm_avg": 252, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0032918294702747454 - }, - { - "songno": "578", - "difficulty": "oni", - "note_count": 543, - "density_avg": 4.608849490699526, - "density_peak": 10, - "bpm_avg": 195.6503130755065, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 376, - "color_complexity": 0.0024798459154622577 - }, - { - "songno": "550", - "difficulty": "oni", - "note_count": 745, - "density_avg": 6.349431818181818, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.007397296575500027 - }, - { - "songno": "236", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.235159817351598, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0007795086805555548 - }, - { - "songno": "222", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.395323919400793, - "density_peak": 10, - "bpm_avg": 175.5353282442743, - "bpm_change": 16, - "scroll_change": 8, - "rhythm_complexity": 519, - "color_complexity": 0.0028397254514889556 - }, - { - "songno": "222", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 6.710418197558462, - "density_peak": 17, - "bpm_avg": 176.33152999999916, - "bpm_change": 23, - "scroll_change": 8, - "rhythm_complexity": 910, - "color_complexity": 0.01085106024672434 - }, - { - "songno": "544", - "difficulty": "oni", - "note_count": 609, - "density_avg": 5.933744722312439, - "density_peak": 11, - "bpm_avg": 178.6576354679803, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 584, - "color_complexity": 0.004578889320477496 - }, - { - "songno": "975", - "difficulty": "oni", - "note_count": 839, - "density_avg": 6.337274220032842, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 742, - "color_complexity": 0.0076307409603680425 - }, - { - "songno": "961", - "difficulty": "oni", - "note_count": 918, - "density_avg": 8.033080424886192, - "density_peak": 15, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 856, - "color_complexity": 0.011603203928179734 - }, - { - "songno": "1205", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.43354943273906, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 407, - "color_complexity": 0.0027253798759862146 - }, - { - "songno": "949", - "difficulty": "oni", - "note_count": 503, - "density_avg": 4.584635416666667, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.002234156158771279 - }, - { - "songno": "1211", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.132812499999999, - "density_peak": 8, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0018306425635870687 - }, - { - "songno": "785", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.447837150127226, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.007753697556988684 - }, - { - "songno": "746", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.910623427961922, - "density_peak": 15, - "bpm_avg": 139.28680981595093, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 588, - "color_complexity": 0.005363917713302166 - }, - { - "songno": "801", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.4278450363196127, - "density_peak": 6, - "bpm_avg": 121, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0007325713087555813 - }, - { - "songno": "41", - "difficulty": "oni", - "note_count": 676, - "density_avg": 6.364094143404489, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.0074799023930460905 - }, - { - "songno": "815", - "difficulty": "oni", - "note_count": 934, - "density_avg": 7.861952861952862, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 882, - "color_complexity": 0.0106341135190762 - }, - { - "songno": "55", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.846264113892979, - "density_peak": 12, - "bpm_avg": 140.10400000000269, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 719, - "color_complexity": 0.008034533456349005 - }, - { - "songno": "1359", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.0253004427577475, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 339, - "color_complexity": 0.0010969438400292904 - }, - { - "songno": "183", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.594776931447225, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 963, - "color_complexity": 0.011046133392594271 - }, - { - "songno": "1417", - "difficulty": "oni", - "note_count": 416, - "density_avg": 4.481622306717364, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 387, - "color_complexity": 0.00197118978587963 - }, - { - "songno": "1371", - "difficulty": "oni", - "note_count": 597, - "density_avg": 4.846032992930087, - "density_peak": 11, - "bpm_avg": 207.70519262981574, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 505, - "color_complexity": 0.0033778797897327587 - }, - { - "songno": "1371", - "difficulty": "ura", - "note_count": 819, - "density_avg": 6.640251078854452, - "density_peak": 13, - "bpm_avg": 214.42612942612942, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 721, - "color_complexity": 0.009180812697600552 - }, - { - "songno": "1365", - "difficulty": "oni", - "note_count": 636, - "density_avg": 5.235418359057677, - "density_peak": 12, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.004342289394910552 - }, - { - "songno": "1403", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.846960167714885, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.0027071726989258238 - }, - { - "songno": "197", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.200582829185416, - "density_peak": 9, - "bpm_avg": 167.0040606060606, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0017859149852279255 - }, - { - "songno": "197", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.491809826922916, - "density_peak": 12, - "bpm_avg": 167.0055294117647, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.005326583001696681 - }, - { - "songno": "82", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.775363793859752, - "density_peak": 8, - "bpm_avg": 111.05051835853128, - "bpm_change": 5, - "scroll_change": 6, - "rhythm_complexity": 424, - "color_complexity": 0.001945637675925473 - }, - { - "songno": "96", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.951510388308949, - "density_peak": 13, - "bpm_avg": 136.28221649484536, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 693, - "color_complexity": 0.0064522079293448395 - }, - { - "songno": "168", - "difficulty": "oni", - "note_count": 926, - "density_avg": 7.593528368794326, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.009431230001141383 - }, - { - "songno": "140", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.383458646616542, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.002023183832199547 - }, - { - "songno": "140", - "difficulty": "ura", - "note_count": 900, - "density_avg": 6.7669172932330826, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 837, - "color_complexity": 0.008599765361353855 - }, - { - "songno": "626", - "difficulty": "oni", - "note_count": 682, - "density_avg": 4.895284115829499, - "density_peak": 11, - "bpm_avg": 207.99706744868035, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 562, - "color_complexity": 0.004039241809345363 - }, - { - "songno": "626", - "difficulty": "ura", - "note_count": 1038, - "density_avg": 7.450593712948709, - "density_peak": 15, - "bpm_avg": 208.53082851637765, - "bpm_change": 25, - "scroll_change": 4, - "rhythm_complexity": 903, - "color_complexity": 0.017847570993143443 - }, - { - "songno": "154", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.42570281124498, - "density_peak": 12, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 713, - "color_complexity": 0.004604810736362368 - }, - { - "songno": "154", - "difficulty": "ura", - "note_count": 715, - "density_avg": 6.125836680053547, - "density_peak": 17, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 667, - "color_complexity": 0.004752308184206484 - }, - { - "songno": "1173", - "difficulty": "oni", - "note_count": 819, - "density_avg": 7.508840864440079, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 763, - "color_complexity": 0.009592316471023363 - }, - { - "songno": "381", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.955742312204971, - "density_peak": 9, - "bpm_avg": 179.26491646778044, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 401, - "color_complexity": 0.001423618560845573 - }, - { - "songno": "395", - "difficulty": "oni", - "note_count": 604, - "density_avg": 5.716088328075709, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.004769519402131342 - }, - { - "songno": "1167", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.776421090204933, - "density_peak": 12, - "bpm_avg": 166.64849721706867, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 486, - "color_complexity": 0.002126566604359518 - }, - { - "songno": "418", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.251494768310911, - "density_peak": 12, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 537, - "color_complexity": 0.005891019249115084 - }, - { - "songno": "1198", - "difficulty": "oni", - "note_count": 708, - "density_avg": 6.7420152690763615, - "density_peak": 12, - "bpm_avg": 171.34139830508477, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 649, - "color_complexity": 0.005377823739366038 - }, - { - "songno": "424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.748614021903536, - "density_peak": 12, - "bpm_avg": 175.00762416107392, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 696, - "color_complexity": 0.00652014459445998 - }, - { - "songno": "342", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.507109004739336, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032503275206611573 - }, - { - "songno": "356", - "difficulty": "oni", - "note_count": 570, - "density_avg": 6.824712643678161, - "density_peak": 12, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.004513945578231293 - }, - { - "songno": "430", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.0641087130295768, - "density_peak": 7, - "bpm_avg": 129.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 286, - "color_complexity": 0.0004704779765432086 - }, - { - "songno": "340", - "difficulty": "oni", - "note_count": 538, - "density_avg": 5.512441783100465, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.004311606674063811 - }, - { - "songno": "432", - "difficulty": "oni", - "note_count": 794, - "density_avg": 6.116246498599439, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 753, - "color_complexity": 0.00808079305414643 - }, - { - "songno": "354", - "difficulty": "oni", - "note_count": 570, - "density_avg": 5.3977272727272725, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.002888912925905895 - }, - { - "songno": "368", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.104602510460251, - "density_peak": 6, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.0006784779177676553 - }, - { - "songno": "368", - "difficulty": "ura", - "note_count": 816, - "density_avg": 6.828451882845188, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.0035706481632653024 - }, - { - "songno": "383", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.607514805076435, - "density_peak": 13, - "bpm_avg": 124.02398130841125, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 460, - "color_complexity": 0.002628668752946948 - }, - { - "songno": "1171", - "difficulty": "oni", - "note_count": 647, - "density_avg": 5.283593170007424, - "density_peak": 9, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0036800716326530897 - }, - { - "songno": "1171", - "difficulty": "ura", - "note_count": 870, - "density_avg": 7.096774193548388, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 782, - "color_complexity": 0.010293913885739461 - }, - { - "songno": "1165", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.764462809917355, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 488, - "color_complexity": 0.005490928601838688 - }, - { - "songno": "397", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.792592592592592, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004892909413672529 - }, - { - "songno": "1159", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.665311653116531, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 623, - "color_complexity": 0.0063370985099839156 - }, - { - "songno": "624", - "difficulty": "oni", - "note_count": 476, - "density_avg": 5.086846152415104, - "density_peak": 11, - "bpm_avg": 158.9903844537815, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 387, - "color_complexity": 0.0035114897220843784 - }, - { - "songno": "142", - "difficulty": "oni", - "note_count": 374, - "density_avg": 3.850873679269398, - "density_peak": 8, - "bpm_avg": 160.04160427807486, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0010417564725212153 - }, - { - "songno": "156", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.245303225722078, - "density_peak": 9, - "bpm_avg": 129.97355555555555, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 674, - "color_complexity": 0.004324273473088193 - }, - { - "songno": "156", - "difficulty": "ura", - "note_count": 999, - "density_avg": 6.84974891829589, - "density_peak": 11, - "bpm_avg": 129.95784784784786, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 877, - "color_complexity": 0.00870851332771651 - }, - { - "songno": "630", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.127625186769604, - "density_peak": 14, - "bpm_avg": 197.98951048951048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 793, - "color_complexity": 0.00996794114110347 - }, - { - "songno": "618", - "difficulty": "oni", - "note_count": 450, - "density_avg": 2.959557859413143, - "density_peak": 7, - "bpm_avg": 104.98897777777778, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 342, - "color_complexity": 0.0011989808990196733 - }, - { - "songno": "80", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.150596370938169, - "density_peak": 12, - "bpm_avg": 164.99647887323943, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009185321955568263 - }, - { - "songno": "80", - "difficulty": "ura", - "note_count": 948, - "density_avg": 7.956297370480498, - "density_peak": 13, - "bpm_avg": 164.41244725738397, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.012215325438206293 - }, - { - "songno": "94", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.136403720205955, - "density_peak": 15, - "bpm_avg": 190.85495, - "bpm_change": 9, - "scroll_change": 2, - "rhythm_complexity": 951, - "color_complexity": 0.01409292164827618 - }, - { - "songno": "1373", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.383277456224622, - "density_peak": 9, - "bpm_avg": 144.39680719794342, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 361, - "color_complexity": 0.0013883730557553342 - }, - { - "songno": "1415", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.285714285714286, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 330, - "color_complexity": 0.0013117731039504706 - }, - { - "songno": "181", - "difficulty": "oni", - "note_count": 958, - "density_avg": 7.24543879472693, - "density_peak": 15, - "bpm_avg": 200.79999999999768, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 869, - "color_complexity": 0.013764598164013467 - }, - { - "songno": "181", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.562106847253574, - "density_peak": 21, - "bpm_avg": 200.79999999999728, - "bpm_change": 0, - "scroll_change": 97, - "rhythm_complexity": 919, - "color_complexity": 0.015268327419339723 - }, - { - "songno": "1401", - "difficulty": "oni", - "note_count": 919, - "density_avg": 6.608714043993231, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.009734468185586955 - }, - { - "songno": "1367", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.767708779443255, - "density_peak": 21, - "bpm_avg": 218.9724770642202, - "bpm_change": 14, - "scroll_change": 63, - "rhythm_complexity": 665, - "color_complexity": 0.011174130110903025 - }, - { - "songno": "43", - "difficulty": "oni", - "note_count": 546, - "density_avg": 5.379310344827586, - "density_peak": 12, - "bpm_avg": 198.24175824175825, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 483, - "color_complexity": 0.003468089974759997 - }, - { - "songno": "43", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.536945812807882, - "density_peak": 17, - "bpm_avg": 201.09803921568627, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 687, - "color_complexity": 0.009081133132484391 - }, - { - "songno": "803", - "difficulty": "oni", - "note_count": 1024, - "density_avg": 7.528644499586435, - "density_peak": 13, - "bpm_avg": 222.22000000000105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 974, - "color_complexity": 0.013885935984222594 - }, - { - "songno": "5", - "difficulty": "oni", - "note_count": 848, - "density_avg": 6.189554119655987, - "density_peak": 14, - "bpm_avg": 172.70386792452828, - "bpm_change": 16, - "scroll_change": 15, - "rhythm_complexity": 729, - "color_complexity": 0.0062142659194311944 - }, - { - "songno": "817", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.2587846317066695, - "density_peak": 15, - "bpm_avg": 200.01450980392158, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 687, - "color_complexity": 0.008140177011060406 - }, - { - "songno": "750", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "988", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.1264667535853965, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 746, - "color_complexity": 0.006123601198822141 - }, - { - "songno": "778", - "difficulty": "oni", - "note_count": 788, - "density_avg": 7.6928243116510995, - "density_peak": 17, - "bpm_avg": 226.3365989847717, - "bpm_change": 18, - "scroll_change": 66, - "rhythm_complexity": 624, - "color_complexity": 0.008934335726636976 - }, - { - "songno": "1207", - "difficulty": "oni", - "note_count": 759, - "density_avg": 6.469717362045761, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 744, - "color_complexity": 0.005742742061520157 - }, - { - "songno": "793", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.625766871165644, - "density_peak": 8, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0024683435457593067 - }, - { - "songno": "793", - "difficulty": "ura", - "note_count": 591, - "density_avg": 5.891871165644172, - "density_peak": 12, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0043461886976781695 - }, - { - "songno": "1213", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.464236760124611, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 420, - "color_complexity": 0.0032040001926913735 - }, - { - "songno": "1213", - "difficulty": "ura", - "note_count": 768, - "density_avg": 6.555514018691588, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.008329307549597185 - }, - { - "songno": "977", - "difficulty": "oni", - "note_count": 892, - "density_avg": 7.692403932082216, - "density_peak": 13, - "bpm_avg": 193, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 841, - "color_complexity": 0.010780358781325997 - }, - { - "songno": "963", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.6890756302521, - "density_peak": 10, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 631, - "color_complexity": 0.00395600312500001 - }, - { - "songno": "552", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.3936928971411735, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 489, - "color_complexity": 0.003873716591605892 - }, - { - "songno": "546", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.668952785064181, - "density_peak": 13, - "bpm_avg": 189.66839215686267, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 733, - "color_complexity": 0.007380945314223218 - }, - { - "songno": "220", - "difficulty": "oni", - "note_count": 774, - "density_avg": 6.923662737987307, - "density_peak": 14, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 705, - "color_complexity": 0.007850868394418726 - }, - { - "songno": "208", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.975757575757576, - "density_peak": 7, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 318, - "color_complexity": 0.0010996217679012325 - }, - { - "songno": "591", - "difficulty": "oni", - "note_count": 550, - "density_avg": 6.497445721583653, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.006230203253456314 - }, - { - "songno": "1011", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.038678835289004, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00509121393193868 - }, - { - "songno": "585", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.694927188900561, - "density_peak": 12, - "bpm_avg": 171.13227168949766, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 816, - "color_complexity": 0.006166390185178144 - }, - { - "songno": "1039", - "difficulty": "oni", - "note_count": 979, - "density_avg": 7.178130511463845, - "density_peak": 17, - "bpm_avg": 185.6435137895812, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 910, - "color_complexity": 0.010419887219519058 - }, - { - "songno": "1038", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.156794425087108, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 472, - "color_complexity": 0.0030464437414256286 - }, - { - "songno": "1010", - "difficulty": "oni", - "note_count": 472, - "density_avg": 4.495238095238095, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 421, - "color_complexity": 0.003210095557433995 - }, - { - "songno": "1004", - "difficulty": "oni", - "note_count": 482, - "density_avg": 5.816699282452707, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.004243220327186805 - }, - { - "songno": "209", - "difficulty": "oni", - "note_count": 580, - "density_avg": 5.109935043617381, - "density_peak": 10, - "bpm_avg": 179.98424137931033, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 551, - "color_complexity": 0.002004213840175491 - }, - { - "songno": "547", - "difficulty": "oni", - "note_count": 549, - "density_avg": 4.129386206614364, - "density_peak": 8, - "bpm_avg": 174.987650273224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.00258447784042387 - }, - { - "songno": "221", - "difficulty": "oni", - "note_count": 673, - "density_avg": 4.823610013175231, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.003594547763971267 - }, - { - "songno": "221", - "difficulty": "ura", - "note_count": 800, - "density_avg": 5.6978266561927216, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.0055468972917958265 - }, - { - "songno": "553", - "difficulty": "oni", - "note_count": 797, - "density_avg": 5.524078525641025, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 741, - "color_complexity": 0.002769547858070646 - }, - { - "songno": "553", - "difficulty": "ura", - "note_count": 1208, - "density_avg": 8.37275641025641, - "density_peak": 17, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1152, - "color_complexity": 0.017505897085976867 - }, - { - "songno": "962", - "difficulty": "oni", - "note_count": 335, - "density_avg": 3.7120799273387832, - "density_peak": 7, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0008922093844860172 - }, - { - "songno": "976", - "difficulty": "oni", - "note_count": 524, - "density_avg": 4.435978835978836, - "density_peak": 11, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.003019821877315528 - }, - { - "songno": "1212", - "difficulty": "oni", - "note_count": 251, - "density_avg": 2.894414414414414, - "density_peak": 8, - "bpm_avg": 191.23505976095618, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 219, - "color_complexity": 0.0006565829361958133 - }, - { - "songno": "1212", - "difficulty": "ura", - "note_count": 567, - "density_avg": 6.538378378378378, - "density_peak": 13, - "bpm_avg": 190.64550264550263, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 549, - "color_complexity": 0.005807141929427852 - }, - { - "songno": "786", - "difficulty": "oni", - "note_count": 988, - "density_avg": 7.388888888888889, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 943, - "color_complexity": 0.013753718828957654 - }, - { - "songno": "792", - "difficulty": "oni", - "note_count": 429, - "density_avg": 4.927469879518072, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 397, - "color_complexity": 0.002623869131572016 - }, - { - "songno": "1206", - "difficulty": "oni", - "note_count": 817, - "density_avg": 5.805305542396968, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 747, - "color_complexity": 0.006040146188259872 - }, - { - "songno": "779", - "difficulty": "oni", - "note_count": 983, - "density_avg": 8.610558712121211, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 967, - "color_complexity": 0.01307278424703783 - }, - { - "songno": "745", - "difficulty": "oni", - "note_count": 877, - "density_avg": 8.949047686620432, - "density_peak": 16, - "bpm_avg": 147.37856328392246, - "bpm_change": 8, - "scroll_change": 5, - "rhythm_complexity": 764, - "color_complexity": 0.013001368247462165 - }, - { - "songno": "989", - "difficulty": "oni", - "note_count": 702, - "density_avg": 6.253164556962026, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.006953269428008632 - }, - { - "songno": "751", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.920083682008368, - "density_peak": 11, - "bpm_avg": 149, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.005570093432646433 - }, - { - "songno": "816", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.925, - "density_peak": 13, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 629, - "color_complexity": 0.0071276549487336045 - }, - { - "songno": "816", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.660633484162897, - "density_peak": 18, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 911, - "color_complexity": 0.01703051006851917 - }, - { - "songno": "56", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.710526315789474, - "density_peak": 12, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006675279915123506 - }, - { - "songno": "42", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.7340382630016777, - "density_peak": 6, - "bpm_avg": 96.05787499999998, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.0007873908348305684 - }, - { - "songno": "1428", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.209947643979057, - "density_peak": 10, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.004437146804600891 - }, - { - "songno": "1400", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.088499550763702, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 245, - "color_complexity": 0.0006296764500277547 - }, - { - "songno": "194", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.905559368565545, - "density_peak": 13, - "bpm_avg": 245.759413202934, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 677, - "color_complexity": 0.00810657808974594 - }, - { - "songno": "1366", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.9596284023631747, - "density_peak": 7, - "bpm_avg": 206.02371490280777, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 412, - "color_complexity": 0.0016158759196483428 - }, - { - "songno": "1366", - "difficulty": "ura", - "note_count": 752, - "density_avg": 6.431189111397639, - "density_peak": 14, - "bpm_avg": 206.02291223404254, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 724, - "color_complexity": 0.005002507144932206 - }, - { - "songno": "180", - "difficulty": "oni", - "note_count": 786, - "density_avg": 5.620981988502224, - "density_peak": 13, - "bpm_avg": 185.98715012722644, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 701, - "color_complexity": 0.004677427540990335 - }, - { - "songno": "1414", - "difficulty": "oni", - "note_count": 421, - "density_avg": 3.869485294117647, - "density_peak": 11, - "bpm_avg": 145.90261282660333, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 398, - "color_complexity": 0.0035130826419481854 - }, - { - "songno": "1414", - "difficulty": "ura", - "note_count": 524, - "density_avg": 4.8161764705882355, - "density_peak": 12, - "bpm_avg": 148.7476145038168, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 479, - "color_complexity": 0.004992614716281524 - }, - { - "songno": "95", - "difficulty": "oni", - "note_count": 610, - "density_avg": 5.58260602083915, - "density_peak": 11, - "bpm_avg": 240.00159016393457, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 565, - "color_complexity": 0.0037189892920778535 - }, - { - "songno": "95", - "difficulty": "ura", - "note_count": 861, - "density_avg": 7.879711121217227, - "density_peak": 15, - "bpm_avg": 239.9980371660861, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 838, - "color_complexity": 0.009163695198045368 - }, - { - "songno": "81", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.669449701998124, - "density_peak": 12, - "bpm_avg": 150.1746025877999, - "bpm_change": 15, - "scroll_change": 4, - "rhythm_complexity": 416, - "color_complexity": 0.003117697003649981 - }, - { - "songno": "157", - "difficulty": "oni", - "note_count": 329, - "density_avg": 4.061728395061729, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0010233865435518624 - }, - { - "songno": "625", - "difficulty": "oni", - "note_count": 710, - "density_avg": 5.0643356643356645, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 23, - "rhythm_complexity": 544, - "color_complexity": 0.004051370988278961 - }, - { - "songno": "1158", - "difficulty": "oni", - "note_count": 680, - "density_avg": 5.405405405405405, - "density_peak": 11, - "bpm_avg": 149.83455882352942, - "bpm_change": 2, - "scroll_change": 152, - "rhythm_complexity": 555, - "color_complexity": 0.005146425544873622 - }, - { - "songno": "1164", - "difficulty": "oni", - "note_count": 725, - "density_avg": 5.320785984848484, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.005186734133242906 - }, - { - "songno": "396", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.939102564102564, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.005629562145887713 - }, - { - "songno": "1170", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.102138879561543, - "density_peak": 12, - "bpm_avg": 175.9030065359477, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 719, - "color_complexity": 0.006791863812185975 - }, - { - "songno": "355", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.893704850361197, - "density_peak": 15, - "bpm_avg": 234.4431137724551, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 804, - "color_complexity": 0.007280447263794931 - }, - { - "songno": "341", - "difficulty": "oni", - "note_count": 481, - "density_avg": 4.598470363288719, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 451, - "color_complexity": 0.0030258919556248364 - }, - { - "songno": "427", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.54169888586397, - "density_peak": 14, - "bpm_avg": 171.74774774774775, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 712, - "color_complexity": 0.01151430760134732 - }, - { - "songno": "468", - "difficulty": "oni", - "note_count": 292, - "density_avg": 3.8334358974358973, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0011207831735573044 - }, - { - "songno": "440", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.612581128307539, - "density_peak": 11, - "bpm_avg": 159.9543378995434, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 580, - "color_complexity": 0.005339377185140268 - }, - { - "songno": "454", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.716612868898978, - "density_peak": 13, - "bpm_avg": 185.44401544401543, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.0080543376503791 - }, - { - "songno": "332", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.893865243432331, - "density_peak": 7, - "bpm_avg": 128.00653562653562, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0008580983056978052 - }, - { - "songno": "483", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.939965694682676, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 22, - "rhythm_complexity": 546, - "color_complexity": 0.0042729495382928 - }, - { - "songno": "1117", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.05748884639898, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0017342894868998518 - }, - { - "songno": "1103", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.794805194805194, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0017068116335411908 - }, - { - "songno": "1103", - "difficulty": "ura", - "note_count": 699, - "density_avg": 7.2557017543859645, - "density_peak": 15, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.006939321632125484 - }, - { - "songno": "497", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.994999999999999, - "density_peak": 9, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 522, - "color_complexity": 0.003669970311111108 - }, - { - "songno": "118", - "difficulty": "oni", - "note_count": 366, - "density_avg": 3.8199608610567513, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0015429870175956057 - }, - { - "songno": "118", - "difficulty": "ura", - "note_count": 743, - "density_avg": 7.744625407166123, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 725, - "color_complexity": 0.00658672465723715 - }, - { - "songno": "642", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.330386740331492, - "density_peak": 12, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.003803308079232605 - }, - { - "songno": "124", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.973137697516931, - "density_peak": 10, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.0038597305257116778 - }, - { - "songno": "25", - "difficulty": "oni", - "note_count": 306, - "density_avg": 3.151415094339623, - "density_peak": 7, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 200, - "color_complexity": 0.0002712413709014524 - }, - { - "songno": "1329", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.863192182410423, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 663, - "color_complexity": 0.006160795551172387 - }, - { - "songno": "1329", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.645408163265306, - "density_peak": 19, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 829, - "color_complexity": 0.016536003856181765 - }, - { - "songno": "865", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.591022727272727, - "density_peak": 10, - "bpm_avg": 134.6699999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.002745650613135159 - }, - { - "songno": "31", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.74304347826087, - "density_peak": 13, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.006213240279046773 - }, - { - "songno": "19", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.577897974853846, - "density_peak": 10, - "bpm_avg": 140.006446991404, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 642, - "color_complexity": 0.0046518737926312306 - }, - { - "songno": "1315", - "difficulty": "oni", - "note_count": 569, - "density_avg": 6.446630888491353, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 554, - "color_complexity": 0.003647510369425553 - }, - { - "songno": "681", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.2405033238366565, - "density_peak": 11, - "bpm_avg": 349.53657789613845, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.006770403176708602 - }, - { - "songno": "681", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.553418803418803, - "density_peak": 13, - "bpm_avg": 349.61712871287125, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 874, - "color_complexity": 0.013146867034298846 - }, - { - "songno": "859", - "difficulty": "oni", - "note_count": 821, - "density_avg": 7.278368794326242, - "density_peak": 16, - "bpm_avg": 174.78684531059685, - "bpm_change": 3, - "scroll_change": 12, - "rhythm_complexity": 680, - "color_complexity": 0.012195921288757045 - }, - { - "songno": "695", - "difficulty": "oni", - "note_count": 901, - "density_avg": 8.029591334318068, - "density_peak": 13, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 852, - "color_complexity": 0.010235725579828603 - }, - { - "songno": "1301", - "difficulty": "oni", - "note_count": 270, - "density_avg": 3.205128205128205, - "density_peak": 6, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 232, - "color_complexity": 0.0007651638374485593 - }, - { - "songno": "736", - "difficulty": "oni", - "note_count": 498, - "density_avg": 3.924600638977636, - "density_peak": 8, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.002857194018570982 - }, - { - "songno": "736", - "difficulty": "ura", - "note_count": 829, - "density_avg": 6.533120340788072, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 687, - "color_complexity": 0.009636496234714059 - }, - { - "songno": "722", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.7697589141275545, - "density_peak": 15, - "bpm_avg": 210.98557692307693, - "bpm_change": 17, - "scroll_change": 7, - "rhythm_complexity": 771, - "color_complexity": 0.008627312496384442 - }, - { - "songno": "911", - "difficulty": "oni", - "note_count": 550, - "density_avg": 4.521674140508221, - "density_peak": 9, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.00304304982072175 - }, - { - "songno": "911", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.848281016442452, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.007040081648242609 - }, - { - "songno": "905", - "difficulty": "oni", - "note_count": 747, - "density_avg": 6.766304347826087, - "density_peak": 17, - "bpm_avg": 243.80856760374832, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 684, - "color_complexity": 0.013035318604540649 - }, - { - "songno": "1249", - "difficulty": "oni", - "note_count": 809, - "density_avg": 6.241366642174872, - "density_peak": 13, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 743, - "color_complexity": 0.008287972475140527 - }, - { - "songno": "1249", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 8.921368765926465, - "density_peak": 19, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1001, - "color_complexity": 0.019728057499140254 - }, - { - "songno": "1261", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "939", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1275", - "difficulty": "oni", - "note_count": 512, - "density_avg": 4.447339847991314, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 476, - "color_complexity": 0.0029049006846869076 - }, - { - "songno": "1088", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.4275303643724695, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0009625791821487533 - }, - { - "songno": "1088", - "difficulty": "ura", - "note_count": 669, - "density_avg": 7.181435487265839, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 661, - "color_complexity": 0.004905382530864201 - }, - { - "songno": "252", - "difficulty": "oni", - "note_count": 802, - "density_avg": 5.370859728506788, - "density_peak": 12, - "bpm_avg": 177.60000000000267, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.005244939571555594 - }, - { - "songno": "534", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.682173228182733, - "density_peak": 9, - "bpm_avg": 160.12050541516214, - "bpm_change": 33, - "scroll_change": 2, - "rhythm_complexity": 476, - "color_complexity": 0.0026761583506185365 - }, - { - "songno": "520", - "difficulty": "oni", - "note_count": 1071, - "density_avg": 6.69375, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1024, - "color_complexity": 0.005957452838151928 - }, - { - "songno": "520", - "difficulty": "ura", - "note_count": 1408, - "density_avg": 8.8, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1339, - "color_complexity": 0.014006391813888871 - }, - { - "songno": "246", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.19240790655885, - "density_peak": 7, - "bpm_avg": 179, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 365, - "color_complexity": 0.0009459781568985699 - }, - { - "songno": "291", - "difficulty": "oni", - "note_count": 722, - "density_avg": 4.458657335161869, - "density_peak": 10, - "bpm_avg": 138.49015235457057, - "bpm_change": 65, - "scroll_change": 5, - "rhythm_complexity": 570, - "color_complexity": 0.003939506226192449 - }, - { - "songno": "1063", - "difficulty": "oni", - "note_count": 233, - "density_avg": 3.126412429378531, - "density_peak": 7, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0005572428665910098 - }, - { - "songno": "1077", - "difficulty": "oni", - "note_count": 661, - "density_avg": 4.362489557226399, - "density_peak": 8, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0021825557321554574 - }, - { - "songno": "1077", - "difficulty": "ura", - "note_count": 978, - "density_avg": 6.454636591478696, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 933, - "color_complexity": 0.008111015328558846 - }, - { - "songno": "285", - "difficulty": "oni", - "note_count": 831, - "density_avg": 4.739777777777777, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.003950487947050744 - }, - { - "songno": "285", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 5.703703703703703, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 930, - "color_complexity": 0.007952864150925951 - }, - { - "songno": "1076", - "difficulty": "oni", - "note_count": 268, - "density_avg": 3.172149695387293, - "density_peak": 7, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 252, - "color_complexity": 0.0007572133486028209 - }, - { - "songno": "284", - "difficulty": "oni", - "note_count": 480, - "density_avg": 4.188481675392671, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0020017827356111403 - }, - { - "songno": "284", - "difficulty": "ura", - "note_count": 688, - "density_avg": 6.083112290008842, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 656, - "color_complexity": 0.007194786523731172 - }, - { - "songno": "1062", - "difficulty": "oni", - "note_count": 411, - "density_avg": 4.765217391304348, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.0023948800302751533 - }, - { - "songno": "247", - "difficulty": "oni", - "note_count": 463, - "density_avg": 5.401666666666666, - "density_peak": 12, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.003573478522824629 - }, - { - "songno": "253", - "difficulty": "oni", - "note_count": 485, - "density_avg": 5.574712643678161, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.003843793398841019 - }, - { - "songno": "253", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.341991341991342, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 604, - "color_complexity": 0.006129374814814834 - }, - { - "songno": "535", - "difficulty": "oni", - "note_count": 410, - "density_avg": 4.874341610233258, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.0018738400167455378 - }, - { - "songno": "1089", - "difficulty": "oni", - "note_count": 461, - "density_avg": 5.274367436743675, - "density_peak": 8, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 396, - "color_complexity": 0.002109912667673027 - }, - { - "songno": "1274", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.409819121447028, - "density_peak": 11, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 571, - "color_complexity": 0.00229482111491551 - }, - { - "songno": "1274", - "difficulty": "ura", - "note_count": 906, - "density_avg": 6.203875968992248, - "density_peak": 13, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 855, - "color_complexity": 0.006991300047894472 - }, - { - "songno": "938", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.30130548302872, - "density_peak": 11, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.004930845866851957 - }, - { - "songno": "938", - "difficulty": "ura", - "note_count": 893, - "density_avg": 7.305657093124455, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.011765853918948962 - }, - { - "songno": "1260", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "1248", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.7716588986949344, - "density_peak": 11, - "bpm_avg": 128.1006160164271, - "bpm_change": 9, - "scroll_change": 26, - "rhythm_complexity": 365, - "color_complexity": 0.0023718757897255582 - }, - { - "songno": "910", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.592857142857143, - "density_peak": 14, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 10, - "rhythm_complexity": 607, - "color_complexity": 0.0070297102040816455 - }, - { - "songno": "723", - "difficulty": "oni", - "note_count": 818, - "density_avg": 7.316013628620102, - "density_peak": 17, - "bpm_avg": 208.86308068459658, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 766, - "color_complexity": 0.01543448357574908 - }, - { - "songno": "737", - "difficulty": "oni", - "note_count": 851, - "density_avg": 7.058681780924423, - "density_peak": 14, - "bpm_avg": 255.14688601645125, - "bpm_change": 6, - "scroll_change": 14, - "rhythm_complexity": 812, - "color_complexity": 0.009798307375454942 - }, - { - "songno": "1300", - "difficulty": "oni", - "note_count": 277, - "density_avg": 3.3390985324947593, - "density_peak": 6, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 247, - "color_complexity": 0.0007231685106202011 - }, - { - "songno": "694", - "difficulty": "oni", - "note_count": 304, - "density_avg": 2.4184271476732855, - "density_peak": 5, - "bpm_avg": 86.27661842105262, - "bpm_change": 11, - "scroll_change": 1, - "rhythm_complexity": 134, - "color_complexity": 0.0005287222518615498 - }, - { - "songno": "858", - "difficulty": "oni", - "note_count": 756, - "density_avg": 8.116055889434469, - "density_peak": 19, - "bpm_avg": 258.07473544973544, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 606, - "color_complexity": 0.01259380808891444 - }, - { - "songno": "680", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.306436781609195, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 776, - "color_complexity": 0.01018153529428208 - }, - { - "songno": "1314", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.5234415249871205, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0015259255319242464 - }, - { - "songno": "18", - "difficulty": "oni", - "note_count": 233, - "density_avg": 2.3241161616161614, - "density_peak": 6, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 195, - "color_complexity": 0.00044659974301822084 - }, - { - "songno": "864", - "difficulty": "oni", - "note_count": 882, - "density_avg": 5.9638297297297305, - "density_peak": 12, - "bpm_avg": 150.11000000000038, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 773, - "color_complexity": 0.0071132767572012635 - }, - { - "songno": "1328", - "difficulty": "oni", - "note_count": 1020, - "density_avg": 7.639776181874257, - "density_peak": 15, - "bpm_avg": 167.97058823529412, - "bpm_change": 9, - "scroll_change": 1, - "rhythm_complexity": 866, - "color_complexity": 0.012699294447011882 - }, - { - "songno": "131", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.1615676359039195, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 840, - "color_complexity": 0.009776475112071855 - }, - { - "songno": "496", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.5812236286919825, - "density_peak": 12, - "bpm_avg": 142.92192192192192, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 613, - "color_complexity": 0.004533200876904673 - }, - { - "songno": "1102", - "difficulty": "oni", - "note_count": 263, - "density_avg": 3.8770077007700774, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 229, - "color_complexity": 0.0004279434841514448 - }, - { - "songno": "1116", - "difficulty": "oni", - "note_count": 412, - "density_avg": 4.790697674418604, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0024907495874056927 - }, - { - "songno": "1116", - "difficulty": "ura", - "note_count": 600, - "density_avg": 6.976744186046512, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.00560416025449816 - }, - { - "songno": "482", - "difficulty": "oni", - "note_count": 346, - "density_avg": 2.9666666666666663, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0006757930263849239 - }, - { - "songno": "482", - "difficulty": "ura", - "note_count": 513, - "density_avg": 4.398554913294797, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 480, - "color_complexity": 0.0035907131067730576 - }, - { - "songno": "455", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.1903055443863675, - "density_peak": 13, - "bpm_avg": 126.00394557823128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 381, - "color_complexity": 0.001977270342343761 - }, - { - "songno": "333", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.486187845303867, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 193, - "color_complexity": 0.00022257125724363814 - }, - { - "songno": "441", - "difficulty": "oni", - "note_count": 951, - "density_avg": 7.644336795390784, - "density_peak": 19, - "bpm_avg": 241.40495268138804, - "bpm_change": 9, - "scroll_change": 29, - "rhythm_complexity": 831, - "color_complexity": 0.01139316057942693 - }, - { - "songno": "469", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.18925831202046, - "density_peak": 8, - "bpm_avg": 105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 442, - "color_complexity": 0.001774896406877779 - }, - { - "songno": "319", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.28423676012461, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0027857307485154507 - }, - { - "songno": "331", - "difficulty": "oni", - "note_count": 794, - "density_avg": 7.565777217437103, - "density_peak": 25, - "bpm_avg": 234.34867758186388, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.011788821284054146 - }, - { - "songno": "457", - "difficulty": "oni", - "note_count": 683, - "density_avg": 4.904137947063638, - "density_peak": 10, - "bpm_avg": 165.31679355783308, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 634, - "color_complexity": 0.005521762476981634 - }, - { - "songno": "457", - "difficulty": "ura", - "note_count": 1142, - "density_avg": 8.036951747666846, - "density_peak": 18, - "bpm_avg": 166.5690455341506, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 913, - "color_complexity": 0.011444538633832872 - }, - { - "songno": "443", - "difficulty": "oni", - "note_count": 480, - "density_avg": 3.9844357976653693, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 441, - "color_complexity": 0.0021895043268307965 - }, - { - "songno": "1100", - "difficulty": "oni", - "note_count": 627, - "density_avg": 4.823076923076922, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 579, - "color_complexity": 0.0021371049502445848 - }, - { - "songno": "1100", - "difficulty": "ura", - "note_count": 1107, - "density_avg": 8.179802955665025, - "density_peak": 17, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 999, - "color_complexity": 0.013102841020408195 - }, - { - "songno": "480", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.398998330550919, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.0018797628022121156 - }, - { - "songno": "1114", - "difficulty": "oni", - "note_count": 369, - "density_avg": 4.786699507389163, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.0010793154580246889 - }, - { - "songno": "133", - "difficulty": "oni", - "note_count": 544, - "density_avg": 5.0057545623698445, - "density_peak": 10, - "bpm_avg": 144.92279411764707, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0032187253988867075 - }, - { - "songno": "127", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.927693018955154, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 639, - "color_complexity": 0.005087802207716049 - }, - { - "songno": "641", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.359351596313936, - "density_peak": 13, - "bpm_avg": 183.46736596736596, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.007526604336568293 - }, - { - "songno": "32", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.0825386386057225, - "density_peak": 11, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002612798357609391 - }, - { - "songno": "26", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.028589263420724, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.002527332777864558 - }, - { - "songno": "866", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.45085665999179, - "density_peak": 13, - "bpm_avg": 217.26135013623974, - "bpm_change": 43, - "scroll_change": 48, - "rhythm_complexity": 613, - "color_complexity": 0.009144396327225066 - }, - { - "songno": "866", - "difficulty": "ura", - "note_count": 1059, - "density_avg": 7.81759859835489, - "density_peak": 19, - "bpm_avg": 219.09038054768666, - "bpm_change": 45, - "scroll_change": 50, - "rhythm_complexity": 951, - "color_complexity": 0.01660116475855062 - }, - { - "songno": "1302", - "difficulty": "oni", - "note_count": 224, - "density_avg": 3.0713947990543735, - "density_peak": 6, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 198, - "color_complexity": 0.0005196148454731401 - }, - { - "songno": "1316", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.258333333333334, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 337, - "color_complexity": 0.0013286353470143718 - }, - { - "songno": "709", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.732472324723247, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 387, - "color_complexity": 0.0016200186091317227 - }, - { - "songno": "721", - "difficulty": "oni", - "note_count": 923, - "density_avg": 7.917892156862746, - "density_peak": 15, - "bpm_avg": 204.88082340195015, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.012838028494088861 - }, - { - "songno": "721", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 9.548801870251314, - "density_peak": 26, - "bpm_avg": 204.24164524421593, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1051, - "color_complexity": 0.022632751140664233 - }, - { - "songno": "735", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.531003382187148, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.003388610484622033 - }, - { - "songno": "735", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 8.267568583239383, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 48, - "rhythm_complexity": 952, - "color_complexity": 0.01657038160020572 - }, - { - "songno": "906", - "difficulty": "oni", - "note_count": 696, - "density_avg": 7.472659176029962, - "density_peak": 15, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 624, - "color_complexity": 0.00839009090689488 - }, - { - "songno": "1276", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.493214019388516, - "density_peak": 13, - "bpm_avg": 216.7317972715736, - "bpm_change": 5, - "scroll_change": 8, - "rhythm_complexity": 688, - "color_complexity": 0.007771442995791033 - }, - { - "songno": "1276", - "difficulty": "ura", - "note_count": 982, - "density_avg": 8.089534992079024, - "density_peak": 17, - "bpm_avg": 217.068641802444, - "bpm_change": 5, - "scroll_change": 10, - "rhythm_complexity": 796, - "color_complexity": 0.015560678058738977 - }, - { - "songno": "1262", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "279", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.401634877384196, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 681, - "color_complexity": 0.0056647583111110985 - }, - { - "songno": "523", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.7142857142857144, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.001784775393817142 - }, - { - "songno": "537", - "difficulty": "oni", - "note_count": 889, - "density_avg": 6.808141878274888, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.0073329498418997115 - }, - { - "songno": "537", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.313939393939394, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 1024, - "color_complexity": 0.013760207343649366 - }, - { - "songno": "251", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.363757416230901, - "density_peak": 13, - "bpm_avg": 186.34351949420443, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 902, - "color_complexity": 0.00947505778911815 - }, - { - "songno": "1048", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.0745706892495885, - "density_peak": 16, - "bpm_avg": 303.39435774309726, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 731, - "color_complexity": 0.0073422698513376265 - }, - { - "songno": "1048", - "difficulty": "ura", - "note_count": 1210, - "density_avg": 8.823806163255703, - "density_peak": 20, - "bpm_avg": 306.797520661157, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 1104, - "color_complexity": 0.02650355526827244 - }, - { - "songno": "286", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.269201444823582, - "density_peak": 15, - "bpm_avg": 208.30490236382323, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 907, - "color_complexity": 0.014135846372470484 - }, - { - "songno": "1074", - "difficulty": "oni", - "note_count": 275, - "density_avg": 1.7748151589665229, - "density_peak": 5, - "bpm_avg": 130.66709090909075, - "bpm_change": 11, - "scroll_change": 7, - "rhythm_complexity": 207, - "color_complexity": 0.00027986797386202303 - }, - { - "songno": "1060", - "difficulty": "oni", - "note_count": 500, - "density_avg": 5.930470347648262, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.002777855949231541 - }, - { - "songno": "1061", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.065082508250826, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 420, - "color_complexity": 0.0025310427215227017 - }, - { - "songno": "1061", - "difficulty": "ura", - "note_count": 641, - "density_avg": 7.439235080778107, - "density_peak": 16, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.006176335937067828 - }, - { - "songno": "293", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.9115131578947375, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.003279314286055951 - }, - { - "songno": "287", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.9213917525773185, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 599, - "color_complexity": 0.002723945555555559 - }, - { - "songno": "1075", - "difficulty": "oni", - "note_count": 412, - "density_avg": 3.9806763285024154, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.001552322414077725 - }, - { - "songno": "1049", - "difficulty": "oni", - "note_count": 904, - "density_avg": 7.082621082621083, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.011640283195851569 - }, - { - "songno": "536", - "difficulty": "oni", - "note_count": 799, - "density_avg": 6.234971098265896, - "density_peak": 11, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.006309692173469361 - }, - { - "songno": "250", - "difficulty": "oni", - "note_count": 431, - "density_avg": 4.221134020618557, - "density_peak": 7, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.001356092488888879 - }, - { - "songno": "278", - "difficulty": "oni", - "note_count": 453, - "density_avg": 4.724022346368715, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 427, - "color_complexity": 0.00194132242501966 - }, - { - "songno": "278", - "difficulty": "ura", - "note_count": 541, - "density_avg": 5.648023862788963, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 496, - "color_complexity": 0.003116365466390776 - }, - { - "songno": "1263", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1277", - "difficulty": "oni", - "note_count": 491, - "density_avg": 5.385740402193784, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 428, - "color_complexity": 0.002492755502040824 - }, - { - "songno": "913", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.1119047619047615, - "density_peak": 8, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0012284065765495128 - }, - { - "songno": "907", - "difficulty": "oni", - "note_count": 782, - "density_avg": 6.61590524534687, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 766, - "color_complexity": 0.0077117502362762935 - }, - { - "songno": "734", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.751937984496124, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 970, - "color_complexity": 0.012236749636918528 - }, - { - "songno": "720", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.019466316710411, - "density_peak": 16, - "bpm_avg": 163.7781875658588, - "bpm_change": 13, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.01109974827783315 - }, - { - "songno": "1317", - "difficulty": "oni", - "note_count": 1234, - "density_avg": 9.02537216828479, - "density_peak": 23, - "bpm_avg": 226, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1091, - "color_complexity": 0.017659061497894216 - }, - { - "songno": "1303", - "difficulty": "oni", - "note_count": 331, - "density_avg": 3.787117117117117, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 262, - "color_complexity": 0.000637195013216569 - }, - { - "songno": "1303", - "difficulty": "ura", - "note_count": 548, - "density_avg": 6.26990990990991, - "density_peak": 10, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0038538314767354843 - }, - { - "songno": "697", - "difficulty": "oni", - "note_count": 944, - "density_avg": 8.292297899427117, - "density_peak": 15, - "bpm_avg": 207, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.01912440595191157 - }, - { - "songno": "1465", - "difficulty": "oni", - "note_count": 779, - "density_avg": 5.435659246575343, - "density_peak": 10, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.004299677582128451 - }, - { - "songno": "1465", - "difficulty": "ura", - "note_count": 1226, - "density_avg": 8.51098807495741, - "density_peak": 15, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 1153, - "color_complexity": 0.020153963714935035 - }, - { - "songno": "867", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.747089947089947, - "density_peak": 13, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 128, - "rhythm_complexity": 711, - "color_complexity": 0.010588617046977307 - }, - { - "songno": "27", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.489850746268657, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0021718089383166426 - }, - { - "songno": "33", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 8.508038585209004, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1084, - "color_complexity": 0.02041182051630919 - }, - { - "songno": "126", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.4937901482506324, - "density_peak": 9, - "bpm_avg": 131.52388333333312, - "bpm_change": 48, - "scroll_change": 5, - "rhythm_complexity": 286, - "color_complexity": 0.0013998820823004033 - }, - { - "songno": "640", - "difficulty": "oni", - "note_count": 614, - "density_avg": 5.6095332671300895, - "density_peak": 11, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 519, - "color_complexity": 0.004641319526988624 - }, - { - "songno": "898", - "difficulty": "oni", - "note_count": 580, - "density_avg": 3.877495908984278, - "density_peak": 9, - "bpm_avg": 150.02112068965528, - "bpm_change": 19, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.001957649136187011 - }, - { - "songno": "898", - "difficulty": "ura", - "note_count": 938, - "density_avg": 6.368815541641498, - "density_peak": 15, - "bpm_avg": 149.99675906183387, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.00939578637419635 - }, - { - "songno": "654", - "difficulty": "oni", - "note_count": 616, - "density_avg": 3.92536183938386, - "density_peak": 10, - "bpm_avg": 186.79998376623294, - "bpm_change": 41, - "scroll_change": 6, - "rhythm_complexity": 470, - "color_complexity": 0.0028585566705724417 - }, - { - "songno": "132", - "difficulty": "oni", - "note_count": 563, - "density_avg": 4.691666666666667, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.002632860677335451 - }, - { - "songno": "668", - "difficulty": "oni", - "note_count": 156, - "density_avg": 3.177829262914469, - "density_peak": 7, - "bpm_avg": 135.98147435897434, - "bpm_change": 11, - "scroll_change": 13, - "rhythm_complexity": 127, - "color_complexity": 0.0008434745846855931 - }, - { - "songno": "1115", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.168462926836902, - "density_peak": 9, - "bpm_avg": 174.25453874538744, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 508, - "color_complexity": 0.00322141847576798 - }, - { - "songno": "481", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.73644578313253, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 517, - "color_complexity": 0.0047526776359383405 - }, - { - "songno": "481", - "difficulty": "ura", - "note_count": 475, - "density_avg": 4.053714859437751, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.0018344381725787617 - }, - { - "songno": "495", - "difficulty": "oni", - "note_count": 993, - "density_avg": 7.860899067005938, - "density_peak": 13, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 791, - "color_complexity": 0.012232142048901003 - }, - { - "songno": "1101", - "difficulty": "oni", - "note_count": 495, - "density_avg": 5.7894736842105265, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 465, - "color_complexity": 0.0032142460871756066 - }, - { - "songno": "1129", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.159734126855776, - "density_peak": 15, - "bpm_avg": 296.9753340184995, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 923, - "color_complexity": 0.009354891517815087 - }, - { - "songno": "1129", - "difficulty": "ura", - "note_count": 1365, - "density_avg": 10.044231329042274, - "density_peak": 20, - "bpm_avg": 296.7956043956044, - "bpm_change": 2, - "scroll_change": 15, - "rhythm_complexity": 1282, - "color_complexity": 0.02926541851588723 - }, - { - "songno": "442", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.122371364653243, - "density_peak": 12, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 20, - "rhythm_complexity": 734, - "color_complexity": 0.009553534772088045 - }, - { - "songno": "324", - "difficulty": "oni", - "note_count": 697, - "density_avg": 4.525265259199076, - "density_peak": 10, - "bpm_avg": 268.00206599713056, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 620, - "color_complexity": 0.003041911468725504 - }, - { - "songno": "324", - "difficulty": "ura", - "note_count": 765, - "density_avg": 4.966754552779474, - "density_peak": 12, - "bpm_avg": 268.00470588235294, - "bpm_change": 1, - "scroll_change": 22, - "rhythm_complexity": 692, - "color_complexity": 0.006480207457907696 - }, - { - "songno": "456", - "difficulty": "oni", - "note_count": 1052, - "density_avg": 6.975627240143369, - "density_peak": 15, - "bpm_avg": 296, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 1020, - "color_complexity": 0.0104755202393025 - }, - { - "songno": "452", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.981268011527377, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.009637653491878782 - }, - { - "songno": "446", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.244131455399061, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 623, - "color_complexity": 0.006658715071534216 - }, - { - "songno": "308", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.795676429567643, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.00253320567901235 - }, - { - "songno": "1105", - "difficulty": "oni", - "note_count": 463, - "density_avg": 4.185310734463277, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002284756822053213 - }, - { - "songno": "491", - "difficulty": "oni", - "note_count": 932, - "density_avg": 6.502331793527954, - "density_peak": 14, - "bpm_avg": 161.98175965665223, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 856, - "color_complexity": 0.00782917512138684 - }, - { - "songno": "1111", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.501388888888889, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.002801646771296996 - }, - { - "songno": "1139", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.968747990482927, - "density_peak": 11, - "bpm_avg": 152.99175824175825, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 604, - "color_complexity": 0.0052596733884919394 - }, - { - "songno": "136", - "difficulty": "oni", - "note_count": 814, - "density_avg": 7.643192488262911, - "density_peak": 16, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 764, - "color_complexity": 0.010545037209956436 - }, - { - "songno": "888", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.460512681214576, - "density_peak": 11, - "bpm_avg": 144.99224422442217, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.0030275976389252494 - }, - { - "songno": "650", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.469626168224299, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.0041490764891975365 - }, - { - "songno": "644", - "difficulty": "oni", - "note_count": 526, - "density_avg": 3.742728343561653, - "density_peak": 10, - "bpm_avg": 195.00511406844106, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 490, - "color_complexity": 0.00343634256456614 - }, - { - "songno": "122", - "difficulty": "oni", - "note_count": 321, - "density_avg": 3.6626159554730977, - "density_peak": 8, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.001234696834722224 - }, - { - "songno": "678", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.8727205610926547, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0009340853032533977 - }, - { - "songno": "693", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.2436549692893575, - "density_peak": 10, - "bpm_avg": 181.52077328646715, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 494, - "color_complexity": 0.003001491882724897 - }, - { - "songno": "1307", - "difficulty": "oni", - "note_count": 616, - "density_avg": 5.09201318555651, - "density_peak": 10, - "bpm_avg": 146.6896103896104, - "bpm_change": 12, - "scroll_change": 5, - "rhythm_complexity": 584, - "color_complexity": 0.0037493678072959163 - }, - { - "songno": "1313", - "difficulty": "oni", - "note_count": 528, - "density_avg": 6.195515695067265, - "density_peak": 11, - "bpm_avg": 178.7064393939394, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 478, - "color_complexity": 0.004343619469181911 - }, - { - "songno": "687", - "difficulty": "oni", - "note_count": 567, - "density_avg": 3.9722033898305087, - "density_peak": 9, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 423, - "color_complexity": 0.00212110526565366 - }, - { - "songno": "37", - "difficulty": "oni", - "note_count": 701, - "density_avg": 4.963402298850575, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.004542184760286857 - }, - { - "songno": "877", - "difficulty": "oni", - "note_count": 399, - "density_avg": 2.915068493150685, - "density_peak": 6, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0006517097687074822 - }, - { - "songno": "1449", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.530859832068721, - "density_peak": 15, - "bpm_avg": 136.7059413580248, - "bpm_change": 16, - "scroll_change": 14, - "rhythm_complexity": 584, - "color_complexity": 0.005670735901267075 - }, - { - "songno": "724", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.593963254593176, - "density_peak": 13, - "bpm_avg": 193.7581241956242, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 716, - "color_complexity": 0.007963062210979383 - }, - { - "songno": "730", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.04524886877828, - "density_peak": 11, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 638, - "color_complexity": 0.0032692740965143156 - }, - { - "songno": "730", - "difficulty": "ura", - "note_count": 1037, - "density_avg": 7.681481481481482, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1024, - "color_complexity": 0.011726198575945777 - }, - { - "songno": "1298", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.149059334298119, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.004107696043726675 - }, - { - "songno": "1273", - "difficulty": "oni", - "note_count": 559, - "density_avg": 4.3843137254901965, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.00328769555464253 - }, - { - "songno": "1267", - "difficulty": "oni", - "note_count": 460, - "density_avg": 4.924574209245741, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0025164288827408967 - }, - { - "songno": "917", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.838535080038504, - "density_peak": 10, - "bpm_avg": 145.02262365591397, - "bpm_change": 6, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0033781766485795534 - }, - { - "songno": "526", - "difficulty": "oni", - "note_count": 714, - "density_avg": 5.871710526315789, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.006141511181211432 - }, - { - "songno": "268", - "difficulty": "oni", - "note_count": 378, - "density_avg": 4.1902325581395345, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0021932849596014987 - }, - { - "songno": "1071", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.9375, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.008914481841283513 - }, - { - "songno": "283", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.639147061016703, - "density_peak": 14, - "bpm_avg": 205.49019607843138, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 653, - "color_complexity": 0.007625387708608697 - }, - { - "songno": "283", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.669944985562987, - "density_peak": 18, - "bpm_avg": 205.3053053053053, - "bpm_change": 4, - "scroll_change": 13, - "rhythm_complexity": 872, - "color_complexity": 0.01671678965963029 - }, - { - "songno": "297", - "difficulty": "oni", - "note_count": 624, - "density_avg": 5.595547309833024, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.003784621852709177 - }, - { - "songno": "1065", - "difficulty": "oni", - "note_count": 336, - "density_avg": 4.592, - "density_peak": 8, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0009060710100874766 - }, - { - "songno": "1059", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.345862335653519, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 378, - "color_complexity": 0.0019647515162428087 - }, - { - "songno": "1058", - "difficulty": "oni", - "note_count": 795, - "density_avg": 6.5645371577574965, - "density_peak": 11, - "bpm_avg": 189.76815094339622, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 783, - "color_complexity": 0.00496280243878555 - }, - { - "songno": "1058", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.233376792698826, - "density_peak": 13, - "bpm_avg": 189.7895890410959, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 820, - "color_complexity": 0.00983635725238653 - }, - { - "songno": "296", - "difficulty": "oni", - "note_count": 587, - "density_avg": 6.103056269637246, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.003780445755006863 - }, - { - "songno": "1064", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.6298761904761907, - "density_peak": 9, - "bpm_avg": 164.81599999999935, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0009446727030675987 - }, - { - "songno": "1070", - "difficulty": "oni", - "note_count": 573, - "density_avg": 4.2308186195826645, - "density_peak": 8, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.0023749551743585374 - }, - { - "songno": "269", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.350411700975081, - "density_peak": 16, - "bpm_avg": 153.24000000000194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.00800766673684429 - }, - { - "songno": "255", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.924686192468619, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0028616076480792695 - }, - { - "songno": "527", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "241", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.6587995337995336, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.0012068473393913384 - }, - { - "songno": "1266", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "719", - "difficulty": "oni", - "note_count": 839, - "density_avg": 5.97153024911032, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.006764592762703618 - }, - { - "songno": "725", - "difficulty": "oni", - "note_count": 498, - "density_avg": 4.2872689814712395, - "density_peak": 8, - "bpm_avg": 167.41385542168666, - "bpm_change": 15, - "scroll_change": 10, - "rhythm_complexity": 443, - "color_complexity": 0.0017903915766308703 - }, - { - "songno": "22", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.3395061728395055, - "density_peak": 10, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 544, - "color_complexity": 0.004619385588120113 - }, - { - "songno": "36", - "difficulty": "oni", - "note_count": 368, - "density_avg": 2.5309236947791165, - "density_peak": 8, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0006423521938571453 - }, - { - "songno": "686", - "difficulty": "oni", - "note_count": 925, - "density_avg": 7.2146962233169125, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 876, - "color_complexity": 0.011704902266348089 - }, - { - "songno": "1312", - "difficulty": "oni", - "note_count": 360, - "density_avg": 4.335078534031414, - "density_peak": 7, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0013944065741496629 - }, - { - "songno": "1312", - "difficulty": "ura", - "note_count": 526, - "density_avg": 6.056570713391739, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 495, - "color_complexity": 0.002340517933844544 - }, - { - "songno": "1306", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.591201027617212, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 475, - "color_complexity": 0.0030538636486317824 - }, - { - "songno": "645", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.683760683760684, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006414190609269058 - }, - { - "songno": "645", - "difficulty": "ura", - "note_count": 832, - "density_avg": 7.300333810205055, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 816, - "color_complexity": 0.009342611821617549 - }, - { - "songno": "123", - "difficulty": "oni", - "note_count": 528, - "density_avg": 5.995604395604396, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 518, - "color_complexity": 0.0045457546914036626 - }, - { - "songno": "137", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "651", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.9873396065012825, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.00553034806308897 - }, - { - "songno": "889", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.066865375062096, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.002981817735605234 - }, - { - "songno": "1138", - "difficulty": "oni", - "note_count": 448, - "density_avg": 5.3096296296296295, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.003017227591582135 - }, - { - "songno": "1110", - "difficulty": "oni", - "note_count": 251, - "density_avg": 3.164316239316239, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0004965848950098353 - }, - { - "songno": "484", - "difficulty": "oni", - "note_count": 520, - "density_avg": 4.227642276422764, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 40, - "rhythm_complexity": 455, - "color_complexity": 0.0028291318569163963 - }, - { - "songno": "1104", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.403447789220843, - "density_peak": 16, - "bpm_avg": 193.87020262216922, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 780, - "color_complexity": 0.014285011267083994 - }, - { - "songno": "309", - "difficulty": "oni", - "note_count": 618, - "density_avg": 5.3794604812109235, - "density_peak": 11, - "bpm_avg": 154.40082524271844, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 519, - "color_complexity": 0.003937963855438437 - }, - { - "songno": "309", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.625254662687328, - "density_peak": 15, - "bpm_avg": 154.5685388127854, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 757, - "color_complexity": 0.01123083437064483 - }, - { - "songno": "321", - "difficulty": "oni", - "note_count": 639, - "density_avg": 5.020324508966695, - "density_peak": 10, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.003100579766717255 - }, - { - "songno": "447", - "difficulty": "oni", - "note_count": 494, - "density_avg": 4.526693227091633, - "density_peak": 9, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 448, - "color_complexity": 0.0021139227356413745 - }, - { - "songno": "447", - "difficulty": "ura", - "note_count": 666, - "density_avg": 6.066534653465347, - "density_peak": 10, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.004969979980555542 - }, - { - "songno": "453", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.92126329787234, - "density_peak": 11, - "bpm_avg": 156.29999999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 968, - "color_complexity": 0.009461813131184854 - }, - { - "songno": "335", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.878111511478374, - "density_peak": 16, - "bpm_avg": 205.3310502283105, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 863, - "color_complexity": 0.011918825632733525 - }, - { - "songno": "445", - "difficulty": "oni", - "note_count": 663, - "density_avg": 5.738245614035087, - "density_peak": 11, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 592, - "color_complexity": 0.002741165773605207 - }, - { - "songno": "323", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "337", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.954337899543379, - "density_peak": 10, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 530, - "color_complexity": 0.00540433278911567 - }, - { - "songno": "451", - "difficulty": "oni", - "note_count": 675, - "density_avg": 6.030499075785582, - "density_peak": 12, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.006355690813494686 - }, - { - "songno": "451", - "difficulty": "ura", - "note_count": 904, - "density_avg": 8.076401725200245, - "density_peak": 20, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.016481866291770234 - }, - { - "songno": "479", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.143258426966293, - "density_peak": 10, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 452, - "color_complexity": 0.002890690486212669 - }, - { - "songno": "1112", - "difficulty": "oni", - "note_count": 297, - "density_avg": 3.234262948207171, - "density_peak": 7, - "bpm_avg": 82, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 180, - "color_complexity": 0.0006824491879567726 - }, - { - "songno": "1106", - "difficulty": "oni", - "note_count": 860, - "density_avg": 6.653993663498415, - "density_peak": 16, - "bpm_avg": 229.84186046511627, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 775, - "color_complexity": 0.01017047065329758 - }, - { - "songno": "492", - "difficulty": "oni", - "note_count": 145, - "density_avg": 2.1286701208981, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 85, - "color_complexity": 0.0001495424017940449 - }, - { - "songno": "121", - "difficulty": "oni", - "note_count": 961, - "density_avg": 6.779719459795932, - "density_peak": 12, - "bpm_avg": 160.00915712799167, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 892, - "color_complexity": 0.009872271932460493 - }, - { - "songno": "647", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.119283746556475, - "density_peak": 11, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.0075567133961082205 - }, - { - "songno": "653", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.74982332155477, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.006002838991383211 - }, - { - "songno": "135", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.124043176566487, - "density_peak": 7, - "bpm_avg": 127.82057971014493, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 307, - "color_complexity": 0.0014613397656190884 - }, - { - "songno": "135", - "difficulty": "ura", - "note_count": 423, - "density_avg": 5.056435546920649, - "density_peak": 9, - "bpm_avg": 128.03806146572103, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 405, - "color_complexity": 0.002892080706412024 - }, - { - "songno": "109", - "difficulty": "oni", - "note_count": 478, - "density_avg": 4.8141300263059, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.002880150077937775 - }, - { - "songno": "109", - "difficulty": "ura", - "note_count": 497, - "density_avg": 5.192826510721248, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0032293518594411477 - }, - { - "songno": "1310", - "difficulty": "oni", - "note_count": 598, - "density_avg": 5.3257986064533664, - "density_peak": 9, - "bpm_avg": 261.52732441471574, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 575, - "color_complexity": 0.004213323953528848 - }, - { - "songno": "1310", - "difficulty": "ura", - "note_count": 985, - "density_avg": 7.9181984335657365, - "density_peak": 19, - "bpm_avg": 254.14044670050765, - "bpm_change": 9, - "scroll_change": 5, - "rhythm_complexity": 956, - "color_complexity": 0.019816319412825162 - }, - { - "songno": "684", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.283624493743577, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 720, - "color_complexity": 0.008447770747929774 - }, - { - "songno": "1304", - "difficulty": "oni", - "note_count": 575, - "density_avg": 4.523519870235199, - "density_peak": 9, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.0023624683895295574 - }, - { - "songno": "1304", - "difficulty": "ura", - "note_count": 949, - "density_avg": 7.38047704950892, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.009710451252269789 - }, - { - "songno": "848", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.65424076832215, - "density_peak": 7, - "bpm_avg": 180.95689655172413, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 331, - "color_complexity": 0.001347099303615295 - }, - { - "songno": "20", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.491734221728307, - "density_peak": 15, - "bpm_avg": 172.07752941176471, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 699, - "color_complexity": 0.007847222396499294 - }, - { - "songno": "860", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.362857142857142, - "density_peak": 19, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.011084398681655753 - }, - { - "songno": "1338", - "difficulty": "oni", - "note_count": 944, - "density_avg": 6.865454545454545, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 902, - "color_complexity": 0.010048223995663687 - }, - { - "songno": "34", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.754545454545455, - "density_peak": 11, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0020538075597567305 - }, - { - "songno": "874", - "difficulty": "oni", - "note_count": 647, - "density_avg": 4.785740160601408, - "density_peak": 11, - "bpm_avg": 133.0293663060278, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 560, - "color_complexity": 0.003804069931307931 - }, - { - "songno": "733", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.9326823271883042, - "density_peak": 9, - "bpm_avg": 132.03435714285703, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0014474566408557068 - }, - { - "songno": "727", - "difficulty": "oni", - "note_count": 719, - "density_avg": 6.166666666666667, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007623319369613549 - }, - { - "songno": "928", - "difficulty": "oni", - "note_count": 787, - "density_avg": 6.369061652818427, - "density_peak": 16, - "bpm_avg": 156.3456162642948, - "bpm_change": 7, - "scroll_change": 9, - "rhythm_complexity": 670, - "color_complexity": 0.008903162415004665 - }, - { - "songno": "1264", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1264", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "914", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.440860215053763, - "density_peak": 15, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 629, - "color_complexity": 0.00678543800602485 - }, - { - "songno": "1258", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "257", - "difficulty": "oni", - "note_count": 574, - "density_avg": 5.18734793187348, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.003024306608009598 - }, - { - "songno": "243", - "difficulty": "oni", - "note_count": 999, - "density_avg": 7.826923076923077, - "density_peak": 17, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 920, - "color_complexity": 0.0158010503577592 - }, - { - "songno": "525", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.87701317715959, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.005645533537414956 - }, - { - "songno": "1099", - "difficulty": "oni", - "note_count": 753, - "density_avg": 6.486905582356996, - "density_peak": 17, - "bpm_avg": 245.84993359893758, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 610, - "color_complexity": 0.011756473364341697 - }, - { - "songno": "519", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.8282548229615285, - "density_peak": 13, - "bpm_avg": 193.53182666666666, - "bpm_change": 8, - "scroll_change": 4, - "rhythm_complexity": 695, - "color_complexity": 0.007047309575744179 - }, - { - "songno": "519", - "difficulty": "ura", - "note_count": 1045, - "density_avg": 8.120701719993063, - "density_peak": 16, - "bpm_avg": 193.6839043062201, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 957, - "color_complexity": 0.014275378863811972 - }, - { - "songno": "1066", - "difficulty": "oni", - "note_count": 1008, - "density_avg": 8.023880597014927, - "density_peak": 17, - "bpm_avg": 223.83333333333334, - "bpm_change": 2, - "scroll_change": 60, - "rhythm_complexity": 921, - "color_complexity": 0.013031484161489732 - }, - { - "songno": "294", - "difficulty": "oni", - "note_count": 456, - "density_avg": 5.076683607331519, - "density_peak": 10, - "bpm_avg": 169.01565789473682, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0034697152173827597 - }, - { - "songno": "280", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.439428885227897, - "density_peak": 9, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.002407244655127435 - }, - { - "songno": "1072", - "difficulty": "oni", - "note_count": 974, - "density_avg": 6.608182247274705, - "density_peak": 12, - "bpm_avg": 265.2977412731006, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 884, - "color_complexity": 0.0070010094576651374 - }, - { - "songno": "1072", - "difficulty": "ura", - "note_count": 1400, - "density_avg": 9.495571695489103, - "density_peak": 23, - "bpm_avg": 269.7139285714286, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 1277, - "color_complexity": 0.0335805889531643 - }, - { - "songno": "281", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.730113636363637, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 511, - "color_complexity": 0.0042082094969739334 - }, - { - "songno": "281", - "difficulty": "ura", - "note_count": 568, - "density_avg": 4.8, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004120663794395485 - }, - { - "songno": "1073", - "difficulty": "oni", - "note_count": 398, - "density_avg": 3.7932121829710144, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.0012424587810011976 - }, - { - "songno": "1067", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.974137931034483, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.006562313074548445 - }, - { - "songno": "1067", - "difficulty": "ura", - "note_count": 518, - "density_avg": 4.441586280814576, - "density_peak": 12, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.00247671069063878 - }, - { - "songno": "518", - "difficulty": "oni", - "note_count": 987, - "density_avg": 8.803048502151556, - "density_peak": 20, - "bpm_avg": 242.59473150962512, - "bpm_change": 23, - "scroll_change": 201, - "rhythm_complexity": 899, - "color_complexity": 0.018626343258294577 - }, - { - "songno": "1098", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.4555314533622563, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 117, - "color_complexity": 0.0015401502067561236 - }, - { - "songno": "242", - "difficulty": "oni", - "note_count": 377, - "density_avg": 3.3248131539611356, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0009504215126543182 - }, - { - "songno": "524", - "difficulty": "oni", - "note_count": 725, - "density_avg": 6.220714018022406, - "density_peak": 13, - "bpm_avg": 177.29444137930983, - "bpm_change": 66, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.00586770711563485 - }, - { - "songno": "530", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.465020576131686, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0020684337247432526 - }, - { - "songno": "256", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.751552795031056, - "density_peak": 9, - "bpm_avg": 147.41721854304635, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 262, - "color_complexity": 0.0016181926166362723 - }, - { - "songno": "256", - "difficulty": "ura", - "note_count": 416, - "density_avg": 5.143740340030912, - "density_peak": 10, - "bpm_avg": 150.8653846153846, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 354, - "color_complexity": 0.0024673533825034562 - }, - { - "songno": "1259", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "915", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.3522033898305086, - "density_peak": 7, - "bpm_avg": 93, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0008326252898563732 - }, - { - "songno": "1271", - "difficulty": "oni", - "note_count": 395, - "density_avg": 3.6056453883996116, - "density_peak": 7, - "bpm_avg": 104.6088101265824, - "bpm_change": 19, - "scroll_change": 2, - "rhythm_complexity": 342, - "color_complexity": 0.0016478852131883524 - }, - { - "songno": "1271", - "difficulty": "ura", - "note_count": 705, - "density_avg": 6.42036702121103, - "density_peak": 12, - "bpm_avg": 103.91668085106386, - "bpm_change": 25, - "scroll_change": 2, - "rhythm_complexity": 621, - "color_complexity": 0.003912253740360649 - }, - { - "songno": "929", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.489709013484741, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 717, - "color_complexity": 0.008077239489795926 - }, - { - "songno": "726", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.781094527363184, - "density_peak": 10, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0026125022149435817 - }, - { - "songno": "732", - "difficulty": "oni", - "note_count": 327, - "density_avg": 3.4112489803198, - "density_peak": 6, - "bpm_avg": 128.002874617737, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 312, - "color_complexity": 0.0008848248717018 - }, - { - "songno": "875", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.645539906103287, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004144921585630589 - }, - { - "songno": "35", - "difficulty": "oni", - "note_count": 315, - "density_avg": 3.23855421686747, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 240, - "color_complexity": 0.0006133637138780425 - }, - { - "songno": "1339", - "difficulty": "oni", - "note_count": 433, - "density_avg": 4.926052332195677, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002240042845895285 - }, - { - "songno": "861", - "difficulty": "oni", - "note_count": 416, - "density_avg": 5.10063694267516, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.001895326770581583 - }, - { - "songno": "21", - "difficulty": "oni", - "note_count": 835, - "density_avg": 7.665267282395746, - "density_peak": 12, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 791, - "color_complexity": 0.010350692863008938 - }, - { - "songno": "849", - "difficulty": "oni", - "note_count": 1210, - "density_avg": 8.016327577363652, - "density_peak": 21, - "bpm_avg": 293.9834710743802, - "bpm_change": 9, - "scroll_change": 15, - "rhythm_complexity": 1082, - "color_complexity": 0.032368213694464 - }, - { - "songno": "1305", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.909838472834068, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.003986833247174614 - }, - { - "songno": "685", - "difficulty": "oni", - "note_count": 885, - "density_avg": 7.6991813655950425, - "density_peak": 19, - "bpm_avg": 217.13902372881356, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 821, - "color_complexity": 0.011592309992935527 - }, - { - "songno": "1311", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.347980997624703, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 380, - "color_complexity": 0.0023727944962687662 - }, - { - "songno": "1311", - "difficulty": "ura", - "note_count": 897, - "density_avg": 7.463153724247228, - "density_peak": 27, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 763, - "color_complexity": 0.0067704685133135835 - }, - { - "songno": "108", - "difficulty": "oni", - "note_count": 882, - "density_avg": 6.468000000000001, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.009115015090832046 - }, - { - "songno": "652", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.469015003261578, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.002473152164784899 - }, - { - "songno": "652", - "difficulty": "ura", - "note_count": 614, - "density_avg": 5.206784083496412, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 531, - "color_complexity": 0.002866896583522302 - }, - { - "songno": "134", - "difficulty": "oni", - "note_count": 635, - "density_avg": 6.1092246745897, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.005163154842975053 - }, - { - "songno": "120", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.216357950447204, - "density_peak": 20, - "bpm_avg": 206.61401307189553, - "bpm_change": 15, - "scroll_change": 224, - "rhythm_complexity": 543, - "color_complexity": 0.004980770586693651 - }, - { - "songno": "646", - "difficulty": "oni", - "note_count": 456, - "density_avg": 3.5800807537012114, - "density_peak": 8, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0015286650613049817 - }, - { - "songno": "646", - "difficulty": "ura", - "note_count": 756, - "density_avg": 5.935397039030955, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.008138518238598654 - }, - { - "songno": "493", - "difficulty": "oni", - "note_count": 552, - "density_avg": 3.9239193083573487, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 450, - "color_complexity": 0.0017604967403042494 - }, - { - "songno": "493", - "difficulty": "ura", - "note_count": 1035, - "density_avg": 7.357348703170029, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.012013295995585432 - }, - { - "songno": "1107", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.535869996036465, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 814, - "color_complexity": 0.007554047567047632 - }, - { - "songno": "1113", - "difficulty": "oni", - "note_count": 561, - "density_avg": 4.46087786259542, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 553, - "color_complexity": 0.0028368573020750966 - }, - { - "songno": "487", - "difficulty": "oni", - "note_count": 556, - "density_avg": 4.5315763787213275, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0027883777378602532 - }, - { - "songno": "487", - "difficulty": "ura", - "note_count": 806, - "density_avg": 6.569155685700342, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 784, - "color_complexity": 0.007836578406899344 - }, - { - "songno": "478", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.020559210526316, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0026770483889597546 - }, - { - "songno": "336", - "difficulty": "oni", - "note_count": 1304, - "density_avg": 11.808920081503283, - "density_peak": 21, - "bpm_avg": 291.5184049079755, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1255, - "color_complexity": 0.03172641728093539 - }, - { - "songno": "450", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "322", - "difficulty": "oni", - "note_count": 607, - "density_avg": 4.979395030714651, - "density_peak": 13, - "bpm_avg": 149.54920922570017, - "bpm_change": 15, - "scroll_change": 15, - "rhythm_complexity": 560, - "color_complexity": 0.005248271768336951 - } -] \ No newline at end of file diff --git a/output/lightgbm3/features_lgbm.txt b/output/lightgbm3/features_lgbm.txt deleted file mode 100644 index c3200c2..0000000 --- a/output/lightgbm3/features_lgbm.txt +++ /dev/null @@ -1,8 +0,0 @@ -bpm_avg -bpm_change -color_complexity -density_avg -density_peak -note_count -rhythm_complexity -scroll_change diff --git a/output/lightgbm3/model_lgbm.pkl b/output/lightgbm3/model_lgbm.pkl deleted file mode 100644 index a557ca6..0000000 Binary files a/output/lightgbm3/model_lgbm.pkl and /dev/null differ diff --git a/output/lightgbm3/scaler_lgbm.pkl b/output/lightgbm3/scaler_lgbm.pkl deleted file mode 100644 index 4c5344f..0000000 Binary files a/output/lightgbm3/scaler_lgbm.pkl and /dev/null differ diff --git a/output/lightgbm3/temp.json b/output/lightgbm3/temp.json deleted file mode 100644 index f62e775..0000000 --- a/output/lightgbm3/temp.json +++ /dev/null @@ -1,17594 +0,0 @@ -[ - { - "songno": "449", - "difficulty": "oni", - "note_count": 784, - "density_avg": 5.587527839643652, - "density_peak": 12, - "bpm_avg": 280.46938775510205, - "bpm_change": 2, - "scroll_change": 22, - "rhythm_complexity": 670, - "color_complexity": 0.006692674014408041 - }, - { - "songno": "307", - "difficulty": "oni", - "note_count": 604, - "density_avg": 4.531287297527706, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.004356983446119197 - }, - { - "songno": "461", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.787089080466525, - "density_peak": 13, - "bpm_avg": 185.9635159817354, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 604, - "color_complexity": 0.004993864138842205 - }, - { - "songno": "313", - "difficulty": "oni", - "note_count": 427, - "density_avg": 3.6810344827586206, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.001489031508400551 - }, - { - "songno": "1136", - "difficulty": "oni", - "note_count": 360, - "density_avg": 3.814569536423841, - "density_peak": 7, - "bpm_avg": 96, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0009429447111111097 - }, - { - "songno": "1122", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.956597239601169, - "density_peak": 12, - "bpm_avg": 284.18774045801524, - "bpm_change": 7, - "scroll_change": 16, - "rhythm_complexity": 574, - "color_complexity": 0.004677826484192639 - }, - { - "songno": "1122", - "difficulty": "ura", - "note_count": 1108, - "density_avg": 8.070413061908537, - "density_peak": 19, - "bpm_avg": 283.00328519855594, - "bpm_change": 15, - "scroll_change": 20, - "rhythm_complexity": 994, - "color_complexity": 0.025356178647564762 - }, - { - "songno": "887", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.6222865412445735, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.0068026821675988775 - }, - { - "songno": "139", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.310763888888889, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 621, - "color_complexity": 0.004459180190854104 - }, - { - "songno": "139", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.30859375, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 742, - "color_complexity": 0.008277929116327007 - }, - { - "songno": "663", - "difficulty": "oni", - "note_count": 476, - "density_avg": 4.109953034614047, - "density_peak": 9, - "bpm_avg": 130.0222563025208, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0018006687913481438 - }, - { - "songno": "105", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.0236184143527267, - "density_peak": 7, - "bpm_avg": 139.7528813559323, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 251, - "color_complexity": 0.000919907220485541 - }, - { - "songno": "105", - "difficulty": "ura", - "note_count": 676, - "density_avg": 5.773915390119896, - "density_peak": 10, - "bpm_avg": 140.52822485207096, - "bpm_change": 37, - "scroll_change": 38, - "rhythm_complexity": 589, - "color_complexity": 0.00501915309149266 - }, - { - "songno": "111", - "difficulty": "oni", - "note_count": 777, - "density_avg": 4.7050971079637005, - "density_peak": 10, - "bpm_avg": 135.94851994851996, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.0034587090618026814 - }, - { - "songno": "677", - "difficulty": "oni", - "note_count": 792, - "density_avg": 7.97583081570997, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.011505421296296236 - }, - { - "songno": "1308", - "difficulty": "oni", - "note_count": 773, - "density_avg": 5.771693790767178, - "density_peak": 13, - "bpm_avg": 239.01681759379042, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 727, - "color_complexity": 0.004041496952479993 - }, - { - "songno": "1308", - "difficulty": "ura", - "note_count": 1090, - "density_avg": 8.134814687221887, - "density_peak": 17, - "bpm_avg": 238.0091743119266, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 1038, - "color_complexity": 0.012863064027688232 - }, - { - "songno": "844", - "difficulty": "oni", - "note_count": 853, - "density_avg": 7.192956349206349, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.009678652688977774 - }, - { - "songno": "10", - "difficulty": "oni", - "note_count": 552, - "density_avg": 6.224101479915433, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0053731713053946 - }, - { - "songno": "688", - "difficulty": "oni", - "note_count": 707, - "density_avg": 5.590339370071598, - "density_peak": 13, - "bpm_avg": 175.99777934936353, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 654, - "color_complexity": 0.0068829446479436295 - }, - { - "songno": "850", - "difficulty": "oni", - "note_count": 872, - "density_avg": 6.794553847245661, - "density_peak": 17, - "bpm_avg": 274.81462155963305, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 703, - "color_complexity": 0.011439028910402393 - }, - { - "songno": "38", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.823086574654956, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.006105417539154131 - }, - { - "songno": "1334", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.035211267605634, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0029164289624079654 - }, - { - "songno": "878", - "difficulty": "oni", - "note_count": 806, - "density_avg": 6.302813376391915, - "density_peak": 16, - "bpm_avg": 255.37493796526053, - "bpm_change": 18, - "scroll_change": 29, - "rhythm_complexity": 676, - "color_complexity": 0.00676603514709561 - }, - { - "songno": "1452", - "difficulty": "oni", - "note_count": 316, - "density_avg": 9.328413284132841, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.00370360888888889 - }, - { - "songno": "1452", - "difficulty": "ura", - "note_count": 364, - "density_avg": 10.7255985267035, - "density_peak": 16, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.005922417777777777 - }, - { - "songno": "1446", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.135464535464536, - "density_peak": 12, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 287, - "color_complexity": 0.0022338303464472424 - }, - { - "songno": "1320", - "difficulty": "oni", - "note_count": 808, - "density_avg": 5.597655209166001, - "density_peak": 10, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 660, - "color_complexity": 0.004510001949763438 - }, - { - "songno": "1320", - "difficulty": "ura", - "note_count": 1111, - "density_avg": 8.00387919091161, - "density_peak": 17, - "bpm_avg": 260, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1020, - "color_complexity": 0.017274985877227887 - }, - { - "songno": "717", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.051711580480699, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.003257797200705463 - }, - { - "songno": "717", - "difficulty": "ura", - "note_count": 888, - "density_avg": 5.859679767103348, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.0064979530110355664 - }, - { - "songno": "1283", - "difficulty": "oni", - "note_count": 292, - "density_avg": 2.5710691823899374, - "density_peak": 6, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007190323891200115 - }, - { - "songno": "1297", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.889774696707105, - "density_peak": 14, - "bpm_avg": 139, - "bpm_change": 0, - "scroll_change": 71, - "rhythm_complexity": 690, - "color_complexity": 0.00893526861494559 - }, - { - "songno": "703", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.337966985230235, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.004553366071901534 - }, - { - "songno": "930", - "difficulty": "oni", - "note_count": 830, - "density_avg": 6.856171039844509, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009572243853901754 - }, - { - "songno": "924", - "difficulty": "oni", - "note_count": 350, - "density_avg": 4.697134566557852, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 338, - "color_complexity": 0.001804688302505356 - }, - { - "songno": "1268", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.332533672783506, - "density_peak": 10, - "bpm_avg": 219.96846280991733, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 552, - "color_complexity": 0.0032868798750415457 - }, - { - "songno": "1268", - "difficulty": "ura", - "note_count": 862, - "density_avg": 7.597758720560962, - "density_peak": 16, - "bpm_avg": 219.97786542923433, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 788, - "color_complexity": 0.010894191901963987 - }, - { - "songno": "1240", - "difficulty": "oni", - "note_count": 362, - "density_avg": 4.114535519125683, - "density_peak": 8, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 341, - "color_complexity": 0.0012868878780337735 - }, - { - "songno": "1240", - "difficulty": "ura", - "note_count": 657, - "density_avg": 7.467540983606558, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 623, - "color_complexity": 0.006901208079133739 - }, - { - "songno": "918", - "difficulty": "oni", - "note_count": 687, - "density_avg": 5.564132231404959, - "density_peak": 10, - "bpm_avg": 147, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.0037093791356749206 - }, - { - "songno": "1254", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.10387323943662, - "density_peak": 10, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.002324958780785769 - }, - { - "songno": "273", - "difficulty": "oni", - "note_count": 536, - "density_avg": 3.8068181818181817, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 509, - "color_complexity": 0.0013844103014602775 - }, - { - "songno": "273", - "difficulty": "ura", - "note_count": 763, - "density_avg": 5.419034090909091, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.005901183240301944 - }, - { - "songno": "1081", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.2018633540372665, - "density_peak": 13, - "bpm_avg": 185.72062084257206, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0036115374738737846 - }, - { - "songno": "1081", - "difficulty": "ura", - "note_count": 876, - "density_avg": 8.061349693251532, - "density_peak": 17, - "bpm_avg": 184.7945205479452, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 795, - "color_complexity": 0.011201968041594108 - }, - { - "songno": "515", - "difficulty": "oni", - "note_count": 488, - "density_avg": 3.964351424306376, - "density_peak": 9, - "bpm_avg": 126.00137295081967, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0017224712869179865 - }, - { - "songno": "501", - "difficulty": "oni", - "note_count": 962, - "density_avg": 6.846975088967972, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.010496300000000026 - }, - { - "songno": "1095", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.266752577319587, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.0017214377433399854 - }, - { - "songno": "267", - "difficulty": "oni", - "note_count": 417, - "density_avg": 3.8167169707310875, - "density_peak": 7, - "bpm_avg": 122.98940047961632, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0013931846914091836 - }, - { - "songno": "298", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.162656400384986, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0036774421583104394 - }, - { - "songno": "1042", - "difficulty": "oni", - "note_count": 885, - "density_avg": 6.954813359528488, - "density_peak": 17, - "bpm_avg": 235.72881355932202, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 861, - "color_complexity": 0.014998699115480149 - }, - { - "songno": "1042", - "difficulty": "ura", - "note_count": 1172, - "density_avg": 9.210216110019646, - "density_peak": 22, - "bpm_avg": 235.13651877133105, - "bpm_change": 6, - "scroll_change": 30, - "rhythm_complexity": 1080, - "color_complexity": 0.026092071293037866 - }, - { - "songno": "1056", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.061631944444445, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.003389508968475695 - }, - { - "songno": "1056", - "difficulty": "ura", - "note_count": 981, - "density_avg": 7.238281250000001, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 822, - "color_complexity": 0.011152284174905557 - }, - { - "songno": "1057", - "difficulty": "oni", - "note_count": 693, - "density_avg": 6.188912614318521, - "density_peak": 9, - "bpm_avg": 189.978354978355, - "bpm_change": 2, - "scroll_change": 38, - "rhythm_complexity": 676, - "color_complexity": 0.004701383799728597 - }, - { - "songno": "1043", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.87114845066276, - "density_peak": 15, - "bpm_avg": 281.053324099723, - "bpm_change": 17, - "scroll_change": 20, - "rhythm_complexity": 645, - "color_complexity": 0.006450077902468618 - }, - { - "songno": "1043", - "difficulty": "ura", - "note_count": 1170, - "density_avg": 9.514187932514444, - "density_peak": 23, - "bpm_avg": 277.8562564102565, - "bpm_change": 21, - "scroll_change": 25, - "rhythm_complexity": 1012, - "color_complexity": 0.018544465114083062 - }, - { - "songno": "299", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.454986894298035, - "density_peak": 9, - "bpm_avg": 150.05410835214448, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 390, - "color_complexity": 0.0015806091145694461 - }, - { - "songno": "1094", - "difficulty": "oni", - "note_count": 787, - "density_avg": 5.777579365079365, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007064537493320363 - }, - { - "songno": "500", - "difficulty": "oni", - "note_count": 672, - "density_avg": 4.774736842105264, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.0038177443787500687 - }, - { - "songno": "500", - "difficulty": "ura", - "note_count": 931, - "density_avg": 6.615, - "density_peak": 13, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 843, - "color_complexity": 0.010551994809414898 - }, - { - "songno": "266", - "difficulty": "oni", - "note_count": 727, - "density_avg": 6.058333333333333, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.00523845953455764 - }, - { - "songno": "266", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.3, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 822, - "color_complexity": 0.010420249000243716 - }, - { - "songno": "514", - "difficulty": "oni", - "note_count": 814, - "density_avg": 5.973215923683728, - "density_peak": 14, - "bpm_avg": 165.7002457002457, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 686, - "color_complexity": 0.008519774499891938 - }, - { - "songno": "1080", - "difficulty": "oni", - "note_count": 875, - "density_avg": 5.780068330267169, - "density_peak": 13, - "bpm_avg": 196.92365714285708, - "bpm_change": 16, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.007146615914553868 - }, - { - "songno": "1080", - "difficulty": "ura", - "note_count": 1195, - "density_avg": 7.821022092578282, - "density_peak": 20, - "bpm_avg": 191.14794979079488, - "bpm_change": 19, - "scroll_change": 42, - "rhythm_complexity": 1022, - "color_complexity": 0.02013975013518078 - }, - { - "songno": "1255", - "difficulty": "oni", - "note_count": 901, - "density_avg": 7.908777777777777, - "density_peak": 16, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 824, - "color_complexity": 0.011367388067806112 - }, - { - "songno": "919", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.641447554794225, - "density_peak": 14, - "bpm_avg": 196.55979166666668, - "bpm_change": 10, - "scroll_change": 1, - "rhythm_complexity": 602, - "color_complexity": 0.007553145746370371 - }, - { - "songno": "1241", - "difficulty": "oni", - "note_count": 460, - "density_avg": 5.357854406130269, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002625198626415662 - }, - { - "songno": "1269", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.548521256931608, - "density_peak": 8, - "bpm_avg": 169.7357512953368, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 362, - "color_complexity": 0.0012765241259185696 - }, - { - "songno": "925", - "difficulty": "oni", - "note_count": 402, - "density_avg": 4.852367688022284, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 350, - "color_complexity": 0.0020141831385599505 - }, - { - "songno": "931", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.924268492805577, - "density_peak": 10, - "bpm_avg": 139.81105610561056, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 519, - "color_complexity": 0.005182473838445212 - }, - { - "songno": "702", - "difficulty": "oni", - "note_count": 827, - "density_avg": 7.370254629629629, - "density_peak": 15, - "bpm_avg": 307.0689238210399, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 744, - "color_complexity": 0.010723288557717443 - }, - { - "songno": "1296", - "difficulty": "oni", - "note_count": 599, - "density_avg": 5.878953107960741, - "density_peak": 14, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 530, - "color_complexity": 0.0047220630883788636 - }, - { - "songno": "1282", - "difficulty": "oni", - "note_count": 358, - "density_avg": 2.767731699836277, - "density_peak": 5, - "bpm_avg": 69.51117318435755, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 326, - "color_complexity": 0.0005071411899862813 - }, - { - "songno": "716", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.299784017278617, - "density_peak": 10, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0030277657896664446 - }, - { - "songno": "716", - "difficulty": "ura", - "note_count": 916, - "density_avg": 7.0161702127659575, - "density_peak": 16, - "bpm_avg": 216, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 746, - "color_complexity": 0.01051877614218145 - }, - { - "songno": "1447", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.366637706342311, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 546, - "color_complexity": 0.006275856002078183 - }, - { - "songno": "1321", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.743093922651934, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.00468243012509637 - }, - { - "songno": "879", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.804987298038817, - "density_peak": 13, - "bpm_avg": 164.54063926940913, - "bpm_change": 2, - "scroll_change": 13, - "rhythm_complexity": 780, - "color_complexity": 0.009281100492511754 - }, - { - "songno": "1335", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.9738489871086555, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.0024204684315892594 - }, - { - "songno": "39", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.2819332566168, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.006067056407061526 - }, - { - "songno": "851", - "difficulty": "oni", - "note_count": 1141, - "density_avg": 9.109780439121757, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1082, - "color_complexity": 0.01834452672849811 - }, - { - "songno": "689", - "difficulty": "oni", - "note_count": 558, - "density_avg": 4.79549436795995, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0020224802461305666 - }, - { - "songno": "689", - "difficulty": "ura", - "note_count": 940, - "density_avg": 7.842851356824625, - "density_peak": 14, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 900, - "color_complexity": 0.013325826574036262 - }, - { - "songno": "11", - "difficulty": "oni", - "note_count": 338, - "density_avg": 3.979100529100529, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.0008495953896165008 - }, - { - "songno": "845", - "difficulty": "oni", - "note_count": 632, - "density_avg": 4.764193168433451, - "density_peak": 13, - "bpm_avg": 187.29113924050634, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 582, - "color_complexity": 0.006825138251077646 - }, - { - "songno": "845", - "difficulty": "ura", - "note_count": 1075, - "density_avg": 8.097293056100431, - "density_peak": 20, - "bpm_avg": 206.55627906976744, - "bpm_change": 5, - "scroll_change": 72, - "rhythm_complexity": 968, - "color_complexity": 0.015127150063685387 - }, - { - "songno": "1309", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.473444228071022, - "density_peak": 9, - "bpm_avg": 145.52260162601624, - "bpm_change": 9, - "scroll_change": 11, - "rhythm_complexity": 507, - "color_complexity": 0.0025885878426359895 - }, - { - "songno": "1309", - "difficulty": "ura", - "note_count": 939, - "density_avg": 6.772973581443851, - "density_peak": 16, - "bpm_avg": 147.59201277955273, - "bpm_change": 10, - "scroll_change": 12, - "rhythm_complexity": 808, - "color_complexity": 0.012227426595713463 - }, - { - "songno": "110", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.871428571428571, - "density_peak": 14, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 702, - "color_complexity": 0.010021341608405222 - }, - { - "songno": "676", - "difficulty": "oni", - "note_count": 437, - "density_avg": 3.884444444444444, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0012223281719922372 - }, - { - "songno": "676", - "difficulty": "ura", - "note_count": 667, - "density_avg": 5.644001208824418, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.004799657806185799 - }, - { - "songno": "662", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.276267529665588, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.005613621807659088 - }, - { - "songno": "892", - "difficulty": "oni", - "note_count": 1109, - "density_avg": 8.24299599771298, - "density_peak": 15, - "bpm_avg": 265.04057709648333, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 1000, - "color_complexity": 0.017453126502744783 - }, - { - "songno": "886", - "difficulty": "oni", - "note_count": 349, - "density_avg": 3.0673191749591764, - "density_peak": 7, - "bpm_avg": 139.99272206303726, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0008546809154483517 - }, - { - "songno": "138", - "difficulty": "oni", - "note_count": 780, - "density_avg": 6.964285714285714, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.0052534405955924155 - }, - { - "songno": "1123", - "difficulty": "oni", - "note_count": 264, - "density_avg": 2.663677130044843, - "density_peak": 5, - "bpm_avg": 67.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.0004318712794196085 - }, - { - "songno": "1137", - "difficulty": "oni", - "note_count": 770, - "density_avg": 5.96590909090909, - "density_peak": 11, - "bpm_avg": 207.61363636363637, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 756, - "color_complexity": 0.0055544305555555035 - }, - { - "songno": "474", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.821248411934069, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.0022008104828447643 - }, - { - "songno": "312", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4820512820512826, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 265, - "color_complexity": 0.00043966209876543236 - }, - { - "songno": "306", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.377229080932785, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.004581235945311708 - }, - { - "songno": "460", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.4239677744209467, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 253, - "color_complexity": 0.0011835257969693843 - }, - { - "songno": "448", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.055865921787709, - "density_peak": 8, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 398, - "color_complexity": 0.0019192825468789222 - }, - { - "songno": "448", - "difficulty": "ura", - "note_count": 639, - "density_avg": 5.759329608938548, - "density_peak": 13, - "bpm_avg": 242, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 580, - "color_complexity": 0.005227028111131027 - }, - { - "songno": "338", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.713574660633484, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.008195218080555547 - }, - { - "songno": "310", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.914736164736165, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 562, - "color_complexity": 0.004902071568412837 - }, - { - "songno": "310", - "difficulty": "ura", - "note_count": 710, - "density_avg": 7.074895531983285, - "density_peak": 16, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.009715980223240543 - }, - { - "songno": "462", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.825484764542937, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 664, - "color_complexity": 0.005425073578737284 - }, - { - "songno": "304", - "difficulty": "oni", - "note_count": 656, - "density_avg": 4.984802431610943, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.0035966554705215378 - }, - { - "songno": "489", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.153253652058433, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 285, - "color_complexity": 0.0009261243454858258 - }, - { - "songno": "1109", - "difficulty": "oni", - "note_count": 778, - "density_avg": 5.1274600469468465, - "density_peak": 10, - "bpm_avg": 172.2172236503856, - "bpm_change": 4, - "scroll_change": 8, - "rhythm_complexity": 708, - "color_complexity": 0.005392071893761451 - }, - { - "songno": "1121", - "difficulty": "oni", - "note_count": 937, - "density_avg": 6.805207262761218, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.008424583068823538 - }, - { - "songno": "1121", - "difficulty": "ura", - "note_count": 1103, - "density_avg": 7.990295574918845, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 104, - "rhythm_complexity": 1014, - "color_complexity": 0.013420207514881202 - }, - { - "songno": "1135", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3827481256964647, - "density_peak": 7, - "bpm_avg": 139.6446575, - "bpm_change": 74, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0008244971762495653 - }, - { - "songno": "890", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.878893093491634, - "density_peak": 23, - "bpm_avg": 215.56481662591685, - "bpm_change": 3, - "scroll_change": 63, - "rhythm_complexity": 692, - "color_complexity": 0.007223462340697105 - }, - { - "songno": "648", - "difficulty": "oni", - "note_count": 425, - "density_avg": 3.8259835665300748, - "density_peak": 9, - "bpm_avg": 150.34588235294117, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 309, - "color_complexity": 0.0025337343700833877 - }, - { - "songno": "648", - "difficulty": "ura", - "note_count": 635, - "density_avg": 5.716469564109641, - "density_peak": 10, - "bpm_avg": 149.4, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 567, - "color_complexity": 0.004614408200336598 - }, - { - "songno": "884", - "difficulty": "oni", - "note_count": 296, - "density_avg": 2.6636248415716097, - "density_peak": 5, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 270, - "color_complexity": 0.00038172729747033797 - }, - { - "songno": "884", - "difficulty": "ura", - "note_count": 429, - "density_avg": 3.7884328358208954, - "density_peak": 8, - "bpm_avg": 71, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 406, - "color_complexity": 0.0013675083212830042 - }, - { - "songno": "112", - "difficulty": "oni", - "note_count": 658, - "density_avg": 5.253023532916294, - "density_peak": 12, - "bpm_avg": 150.69908814589667, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.0034954625712895386 - }, - { - "songno": "106", - "difficulty": "oni", - "note_count": 608, - "density_avg": 4.595680751173709, - "density_peak": 11, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.004163864524037761 - }, - { - "songno": "106", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.323102310231022, - "density_peak": 12, - "bpm_avg": 161, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.006499025666789507 - }, - { - "songno": "660", - "difficulty": "oni", - "note_count": 746, - "density_avg": 5.8419371458011335, - "density_peak": 11, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 681, - "color_complexity": 0.004872810662308923 - }, - { - "songno": "13", - "difficulty": "oni", - "note_count": 652, - "density_avg": 4.789964306753993, - "density_peak": 15, - "bpm_avg": 183.73312883435582, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 542, - "color_complexity": 0.0035775893385438058 - }, - { - "songno": "847", - "difficulty": "oni", - "note_count": 217, - "density_avg": 2.449382716049383, - "density_peak": 5, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 125, - "color_complexity": 0.00026225457549773254 - }, - { - "songno": "1323", - "difficulty": "oni", - "note_count": 678, - "density_avg": 4.792146596858639, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.00418911277686577 - }, - { - "songno": "1445", - "difficulty": "oni", - "note_count": 313, - "density_avg": 4.553788217747949, - "density_peak": 8, - "bpm_avg": 195.099999999999, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 301, - "color_complexity": 0.001053518496089843 - }, - { - "songno": "1451", - "difficulty": "oni", - "note_count": 276, - "density_avg": 8, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 274, - "color_complexity": 0.0013629999999999988 - }, - { - "songno": "1451", - "difficulty": "ura", - "note_count": 334, - "density_avg": 9.657831325301206, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 332, - "color_complexity": 0.0029699999999999974 - }, - { - "songno": "1337", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.466033390903857, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 504, - "color_complexity": 0.0021567929970507274 - }, - { - "songno": "728", - "difficulty": "oni", - "note_count": 633, - "density_avg": 4.306122448979592, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 572, - "color_complexity": 0.003516002661600338 - }, - { - "songno": "1294", - "difficulty": "oni", - "note_count": 307, - "density_avg": 3.547011952191235, - "density_peak": 7, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 269, - "color_complexity": 0.0007957672930532399 - }, - { - "songno": "700", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.693309650680877, - "density_peak": 14, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 560, - "color_complexity": 0.009112909883393238 - }, - { - "songno": "700", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.220959147424512, - "density_peak": 15, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 795, - "color_complexity": 0.015829611055823777 - }, - { - "songno": "714", - "difficulty": "oni", - "note_count": 816, - "density_avg": 5.767393317306, - "density_peak": 11, - "bpm_avg": 127.99754901960785, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 679, - "color_complexity": 0.005419349720496814 - }, - { - "songno": "1280", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.208042328042328, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 259, - "color_complexity": 0.001251865558932129 - }, - { - "songno": "927", - "difficulty": "oni", - "note_count": 817, - "density_avg": 6.923728813559322, - "density_peak": 15, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.009524370009981157 - }, - { - "songno": "933", - "difficulty": "oni", - "note_count": 754, - "density_avg": 6.135792228429214, - "density_peak": 13, - "bpm_avg": 184.24403183023873, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 695, - "color_complexity": 0.006941030233059149 - }, - { - "songno": "1257", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "1243", - "difficulty": "oni", - "note_count": 172, - "density_avg": 2.2941943604574355, - "density_peak": 5, - "bpm_avg": 112.20731395348835, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 98, - "color_complexity": 0.00023208879038365057 - }, - { - "songno": "264", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.067368421052631, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.0013331775341541565 - }, - { - "songno": "264", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.386149003147953, - "density_peak": 17, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 931, - "color_complexity": 0.007155499542542846 - }, - { - "songno": "502", - "difficulty": "oni", - "note_count": 648, - "density_avg": 4.473912409542694, - "density_peak": 12, - "bpm_avg": 244.02237654320987, - "bpm_change": 19, - "scroll_change": 35, - "rhythm_complexity": 569, - "color_complexity": 0.0035150165391702073 - }, - { - "songno": "1096", - "difficulty": "oni", - "note_count": 411, - "density_avg": 3.2178797525898206, - "density_peak": 7, - "bpm_avg": 139.9713868613138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 276, - "color_complexity": 0.000493655691089331 - }, - { - "songno": "1082", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.614365411436541, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.0023097318888378746 - }, - { - "songno": "1082", - "difficulty": "ura", - "note_count": 448, - "density_avg": 4.0613668061366806, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 194, - "color_complexity": 0.0011019428908422544 - }, - { - "songno": "270", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.9876288659793815, - "density_peak": 11, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.004469801528064703 - }, - { - "songno": "270", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.711340206185566, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.004662824928395057 - }, - { - "songno": "1069", - "difficulty": "oni", - "note_count": 766, - "density_avg": 5.894855166450497, - "density_peak": 13, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.0068770676731100535 - }, - { - "songno": "1055", - "difficulty": "oni", - "note_count": 318, - "density_avg": 3.0607287088842856, - "density_peak": 6, - "bpm_avg": 118.64779874213836, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 297, - "color_complexity": 0.0003497159012737784 - }, - { - "songno": "1041", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.706870828030499, - "density_peak": 18, - "bpm_avg": 227.62018730489075, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 812, - "color_complexity": 0.012832984602094512 - }, - { - "songno": "1040", - "difficulty": "oni", - "note_count": 1085, - "density_avg": 8.242753623188408, - "density_peak": 18, - "bpm_avg": 213.5483870967742, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 965, - "color_complexity": 0.015968218300661995 - }, - { - "songno": "1054", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.720156555772994, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0025290626378815 - }, - { - "songno": "1068", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.863992707383774, - "density_peak": 14, - "bpm_avg": 255.12566844919786, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.005791964138130194 - }, - { - "songno": "517", - "difficulty": "oni", - "note_count": 814, - "density_avg": 6.397373929590866, - "density_peak": 14, - "bpm_avg": 181.8095823095823, - "bpm_change": 1, - "scroll_change": 32, - "rhythm_complexity": 749, - "color_complexity": 0.006798216927391931 - }, - { - "songno": "1083", - "difficulty": "oni", - "note_count": 474, - "density_avg": 4.861538461538461, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0029674998115468347 - }, - { - "songno": "265", - "difficulty": "oni", - "note_count": 1414, - "density_avg": 8.299364326843058, - "density_peak": 15, - "bpm_avg": 214.70616690240453, - "bpm_change": 25, - "scroll_change": 20, - "rhythm_complexity": 1331, - "color_complexity": 0.018173703563239794 - }, - { - "songno": "1097", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.7577276524644945, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001849195302450555 - }, - { - "songno": "1097", - "difficulty": "ura", - "note_count": 621, - "density_avg": 6.7275, - "density_peak": 18, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 549, - "color_complexity": 0.005603147077769407 - }, - { - "songno": "503", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.702320758171336, - "density_peak": 17, - "bpm_avg": 191.78205128205127, - "bpm_change": 19, - "scroll_change": 18, - "rhythm_complexity": 771, - "color_complexity": 0.014996263091616608 - }, - { - "songno": "259", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.331684981684981, - "density_peak": 13, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 689, - "color_complexity": 0.00801465114055647 - }, - { - "songno": "1242", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.888470112174466, - "density_peak": 12, - "bpm_avg": 168.0115107913669, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 670, - "color_complexity": 0.00495241123441391 - }, - { - "songno": "1256", - "difficulty": "oni", - "note_count": 611, - "density_avg": 4.783050375063426, - "density_peak": 13, - "bpm_avg": 198.7643207855974, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 554, - "color_complexity": 0.0027301159464871287 - }, - { - "songno": "1256", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.820404786723998, - "density_peak": 16, - "bpm_avg": 199.37337337337337, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 914, - "color_complexity": 0.016703133633069436 - }, - { - "songno": "932", - "difficulty": "oni", - "note_count": 618, - "density_avg": 4.336842105263158, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 523, - "color_complexity": 0.002924875537246298 - }, - { - "songno": "926", - "difficulty": "oni", - "note_count": 379, - "density_avg": 4.4018583042973285, - "density_peak": 9, - "bpm_avg": 195.778364116095, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 344, - "color_complexity": 0.0024355778533635616 - }, - { - "songno": "926", - "difficulty": "ura", - "note_count": 486, - "density_avg": 5.644599303135889, - "density_peak": 14, - "bpm_avg": 196.70781893004116, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 473, - "color_complexity": 0.003387862559838752 - }, - { - "songno": "1281", - "difficulty": "oni", - "note_count": 227, - "density_avg": 2.445791245791246, - "density_peak": 5, - "bpm_avg": 64, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0002404172203017832 - }, - { - "songno": "715", - "difficulty": "oni", - "note_count": 868, - "density_avg": 6.799333333333333, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.01134628875880108 - }, - { - "songno": "701", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.786726323639075, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 752, - "color_complexity": 0.005823289006124861 - }, - { - "songno": "1295", - "difficulty": "oni", - "note_count": 189, - "density_avg": 3.0687679083094554, - "density_peak": 6, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 164, - "color_complexity": 0.00026016401427469103 - }, - { - "songno": "1295", - "difficulty": "ura", - "note_count": 452, - "density_avg": 6.969614512471655, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 394, - "color_complexity": 0.004021272310681372 - }, - { - "songno": "1450", - "difficulty": "oni", - "note_count": 208, - "density_avg": 6.540880503144654, - "density_peak": 10, - "bpm_avg": 184.6153846153846, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 206, - "color_complexity": 0.0015812777777777787 - }, - { - "songno": "1450", - "difficulty": "ura", - "note_count": 356, - "density_avg": 11.142410015649453, - "density_peak": 21, - "bpm_avg": 198.87640449438203, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.003905555555555551 - }, - { - "songno": "1336", - "difficulty": "oni", - "note_count": 422, - "density_avg": 4.838721804511278, - "density_peak": 9, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0024054803628501026 - }, - { - "songno": "1322", - "difficulty": "oni", - "note_count": 796, - "density_avg": 6.39871382636656, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007560471510146754 - }, - { - "songno": "846", - "difficulty": "oni", - "note_count": 1075, - "density_avg": 7.6326606875934235, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 1028, - "color_complexity": 0.012019652202160877 - }, - { - "songno": "852", - "difficulty": "oni", - "note_count": 646, - "density_avg": 6.333332008926779, - "density_peak": 11, - "bpm_avg": 150.0066563467492, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.005626239483722758 - }, - { - "songno": "12", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.996341168568955, - "density_peak": 13, - "bpm_avg": 166.52425044091711, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 414, - "color_complexity": 0.004864000452060178 - }, - { - "songno": "107", - "difficulty": "oni", - "note_count": 557, - "density_avg": 5.21118234134049, - "density_peak": 11, - "bpm_avg": 182.99942549371633, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.002788441409346582 - }, - { - "songno": "661", - "difficulty": "oni", - "note_count": 343, - "density_avg": 4.0077412373195, - "density_peak": 9, - "bpm_avg": 174.98749271137027, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 295, - "color_complexity": 0.0018034653512230387 - }, - { - "songno": "675", - "difficulty": "oni", - "note_count": 675, - "density_avg": 5.425038639876353, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 650, - "color_complexity": 0.005424337539556581 - }, - { - "songno": "113", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.348435814455232, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 520, - "color_complexity": 0.004471486876451478 - }, - { - "songno": "649", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.002106741573034, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005403401206080654 - }, - { - "songno": "891", - "difficulty": "oni", - "note_count": 637, - "density_avg": 5.5142600574712635, - "density_peak": 13, - "bpm_avg": 120.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 578, - "color_complexity": 0.004390081260147561 - }, - { - "songno": "1134", - "difficulty": "oni", - "note_count": 579, - "density_avg": 4.92947912277412, - "density_peak": 14, - "bpm_avg": 245.72967184801368, - "bpm_change": 43, - "scroll_change": 53, - "rhythm_complexity": 506, - "color_complexity": 0.0037710761659396357 - }, - { - "songno": "1120", - "difficulty": "oni", - "note_count": 569, - "density_avg": 3.848777688254768, - "density_peak": 13, - "bpm_avg": 224.25061511423542, - "bpm_change": 19, - "scroll_change": 16, - "rhythm_complexity": 424, - "color_complexity": 0.002806086031184233 - }, - { - "songno": "1120", - "difficulty": "ura", - "note_count": 1316, - "density_avg": 8.672958041803211, - "density_peak": 19, - "bpm_avg": 230.7918693009118, - "bpm_change": 31, - "scroll_change": 20, - "rhythm_complexity": 1140, - "color_complexity": 0.027594331254300268 - }, - { - "songno": "1108", - "difficulty": "oni", - "note_count": 994, - "density_avg": 7.341574428318002, - "density_peak": 17, - "bpm_avg": 189.52328973843058, - "bpm_change": 4, - "scroll_change": 3, - "rhythm_complexity": 895, - "color_complexity": 0.01436886916690537 - }, - { - "songno": "488", - "difficulty": "oni", - "note_count": 721, - "density_avg": 5.4534740545294635, - "density_peak": 11, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.005557804243332835 - }, - { - "songno": "463", - "difficulty": "oni", - "note_count": 1262, - "density_avg": 10.51228654727197, - "density_peak": 21, - "bpm_avg": 289.3502377179081, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1206, - "color_complexity": 0.02688671604938281 - }, - { - "songno": "305", - "difficulty": "oni", - "note_count": 404, - "density_avg": 2.9793510324483776, - "density_peak": 7, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 334, - "color_complexity": 0.0011269350488797814 - }, - { - "songno": "311", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.8063881238942265, - "density_peak": 11, - "bpm_avg": 139.97432432432433, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.0036900919925151624 - }, - { - "songno": "477", - "difficulty": "oni", - "note_count": 823, - "density_avg": 7.382794117647059, - "density_peak": 16, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007441174932292236 - }, - { - "songno": "339", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.7045606595527065, - "density_peak": 7, - "bpm_avg": 203.93999999999994, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 195, - "color_complexity": 0.0013393247619027753 - }, - { - "songno": "473", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.60376647834275, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 645, - "color_complexity": 0.00546303918146272 - }, - { - "songno": "315", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.775949367088607, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002333632622222223 - }, - { - "songno": "301", - "difficulty": "oni", - "note_count": 635, - "density_avg": 4.890992167101827, - "density_peak": 9, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.0024983523777777814 - }, - { - "songno": "301", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.021614583333334, - "density_peak": 14, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 880, - "color_complexity": 0.008932103429302611 - }, - { - "songno": "467", - "difficulty": "oni", - "note_count": 282, - "density_avg": 3.4825301204819277, - "density_peak": 9, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0013235945910575755 - }, - { - "songno": "1124", - "difficulty": "oni", - "note_count": 272, - "density_avg": 3.5416666666666665, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 199, - "color_complexity": 0.0006831732207862458 - }, - { - "songno": "1130", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.805547663494926, - "density_peak": 13, - "bpm_avg": 129.99072072072084, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.0020258420005310647 - }, - { - "songno": "1118", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.732288946910357, - "density_peak": 7, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 288, - "color_complexity": 0.0007325935245541832 - }, - { - "songno": "498", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.275883838383838, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 400, - "color_complexity": 0.003376567696496029 - }, - { - "songno": "117", - "difficulty": "oni", - "note_count": 535, - "density_avg": 5.356246848066588, - "density_peak": 11, - "bpm_avg": 251.99521495327105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 462, - "color_complexity": 0.004222161853333101 - }, - { - "songno": "671", - "difficulty": "oni", - "note_count": 410, - "density_avg": 3.450273224043716, - "density_peak": 8, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0012054266683730259 - }, - { - "songno": "671", - "difficulty": "ura", - "note_count": 677, - "density_avg": 5.697158469945356, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 605, - "color_complexity": 0.005413294539821419 - }, - { - "songno": "103", - "difficulty": "oni", - "note_count": 610, - "density_avg": 6.009514854555188, - "density_peak": 13, - "bpm_avg": 154.01629508196717, - "bpm_change": 16, - "scroll_change": 1, - "rhythm_complexity": 477, - "color_complexity": 0.005826070741159816 - }, - { - "songno": "895", - "difficulty": "oni", - "note_count": 173, - "density_avg": 2.6657026360705482, - "density_peak": 5, - "bpm_avg": 124.72254335260115, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 150, - "color_complexity": 0.00019134521669944668 - }, - { - "songno": "881", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.192570869990225, - "density_peak": 11, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 598, - "color_complexity": 0.0057253069467954314 - }, - { - "songno": "881", - "difficulty": "ura", - "note_count": 1072, - "density_avg": 8.383186705767352, - "density_peak": 14, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 984, - "color_complexity": 0.012190500794968669 - }, - { - "songno": "1440", - "difficulty": "oni", - "note_count": 517, - "density_avg": 4.226158038147139, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 482, - "color_complexity": 0.0014626288888888938 - }, - { - "songno": "1440", - "difficulty": "ura", - "note_count": 783, - "density_avg": 6.400544959128065, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 707, - "color_complexity": 0.008214471133786864 - }, - { - "songno": "1326", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.7503373819163293, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 348, - "color_complexity": 0.0018581379520222529 - }, - { - "songno": "1332", - "difficulty": "oni", - "note_count": 313, - "density_avg": 3.2317886178861785, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 283, - "color_complexity": 0.0008785929815157734 - }, - { - "songno": "16", - "difficulty": "oni", - "note_count": 1158, - "density_avg": 7.917948717948717, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 1144, - "color_complexity": 0.018309384984222153 - }, - { - "songno": "856", - "difficulty": "oni", - "note_count": 1069, - "density_avg": 8.325545171339565, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 26, - "rhythm_complexity": 1040, - "color_complexity": 0.016318527571019367 - }, - { - "songno": "856", - "difficulty": "ura", - "note_count": 1217, - "density_avg": 9.390432098765432, - "density_peak": 19, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 61, - "rhythm_complexity": 1138, - "color_complexity": 0.02326034249281563 - }, - { - "songno": "842", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.4280104712041886, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005455513520408136 - }, - { - "songno": "842", - "difficulty": "ura", - "note_count": 400, - "density_avg": 4.712041884816754, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0022741689577120945 - }, - { - "songno": "705", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.421748544910672, - "density_peak": 11, - "bpm_avg": 159.99186011904925, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 640, - "color_complexity": 0.0043446264976376905 - }, - { - "songno": "711", - "difficulty": "oni", - "note_count": 329, - "density_avg": 3.3989155251141554, - "density_peak": 9, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.001112275485585283 - }, - { - "songno": "711", - "difficulty": "ura", - "note_count": 579, - "density_avg": 5.981678082191781, - "density_peak": 11, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004185147433958592 - }, - { - "songno": "1285", - "difficulty": "oni", - "note_count": 262, - "density_avg": 2.8172043010752685, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.00034787009731670446 - }, - { - "songno": "739", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.305287587517423, - "density_peak": 13, - "bpm_avg": 145.00850456621015, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 827, - "color_complexity": 0.006125403478426269 - }, - { - "songno": "1252", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.505896730068671, - "density_peak": 8, - "bpm_avg": 121.04021428571414, - "bpm_change": 13, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0013462417466670125 - }, - { - "songno": "1246", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.708483754512635, - "density_peak": 11, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 672, - "color_complexity": 0.005117602631330323 - }, - { - "songno": "922", - "difficulty": "oni", - "note_count": 653, - "density_avg": 4.737033006891549, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 585, - "color_complexity": 0.0023023720266436647 - }, - { - "songno": "936", - "difficulty": "oni", - "note_count": 165, - "density_avg": 4.2076502732240435, - "density_peak": 8, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 151, - "color_complexity": 0.0008537801738766207 - }, - { - "songno": "936", - "difficulty": "ura", - "note_count": 298, - "density_avg": 7.436720142602495, - "density_peak": 12, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.0031363811111111174 - }, - { - "songno": "507", - "difficulty": "oni", - "note_count": 713, - "density_avg": 6.050690493928884, - "density_peak": 11, - "bpm_avg": 162.96774193548387, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 688, - "color_complexity": 0.005449118371276925 - }, - { - "songno": "507", - "difficulty": "ura", - "note_count": 820, - "density_avg": 6.958718380114565, - "density_peak": 16, - "bpm_avg": 163.04634146341462, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 786, - "color_complexity": 0.008775243848637624 - }, - { - "songno": "261", - "difficulty": "oni", - "note_count": 596, - "density_avg": 4.68339670468948, - "density_peak": 10, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 448, - "color_complexity": 0.0032035497958133943 - }, - { - "songno": "275", - "difficulty": "oni", - "note_count": 471, - "density_avg": 3.7983870967741935, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0014629954324407563 - }, - { - "songno": "275", - "difficulty": "ura", - "note_count": 579, - "density_avg": 4.669354838709678, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032396907410827207 - }, - { - "songno": "1087", - "difficulty": "oni", - "note_count": 432, - "density_avg": 4.593417721518987, - "density_peak": 8, - "bpm_avg": 126, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0009177726570637099 - }, - { - "songno": "513", - "difficulty": "oni", - "note_count": 902, - "density_avg": 8.046009389671362, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.00931081721731946 - }, - { - "songno": "1050", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.37177643444115, - "density_peak": 13, - "bpm_avg": 254.4884287454324, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 681, - "color_complexity": 0.00750678215702546 - }, - { - "songno": "1044", - "difficulty": "oni", - "note_count": 354, - "density_avg": 4.137662337662339, - "density_peak": 9, - "bpm_avg": 134.8093220338983, - "bpm_change": 2, - "scroll_change": 10, - "rhythm_complexity": 299, - "color_complexity": 0.001672735809948981 - }, - { - "songno": "1078", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.1607511737089204, - "density_peak": 8, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.001620308782656562 - }, - { - "songno": "1079", - "difficulty": "oni", - "note_count": 720, - "density_avg": 4.84370257966616, - "density_peak": 8, - "bpm_avg": 152.2111111111111, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.003269103869082218 - }, - { - "songno": "1045", - "difficulty": "oni", - "note_count": 867, - "density_avg": 6.920790960247057, - "density_peak": 12, - "bpm_avg": 194.20876585928488, - "bpm_change": 16, - "scroll_change": 16, - "rhythm_complexity": 773, - "color_complexity": 0.008916370348287475 - }, - { - "songno": "1051", - "difficulty": "oni", - "note_count": 749, - "density_avg": 7.204677320222285, - "density_peak": 15, - "bpm_avg": 224.78480640854474, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 699, - "color_complexity": 0.00986952735460736 - }, - { - "songno": "248", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.8250728862973755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.005878941111111095 - }, - { - "songno": "248", - "difficulty": "ura", - "note_count": 942, - "density_avg": 8.215116279069766, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 891, - "color_complexity": 0.012005669489796008 - }, - { - "songno": "274", - "difficulty": "oni", - "note_count": 654, - "density_avg": 4.980907668231612, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.003646207172941537 - }, - { - "songno": "274", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.826291079812206, - "density_peak": 9, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.005340539587654338 - }, - { - "songno": "512", - "difficulty": "oni", - "note_count": 456, - "density_avg": 4.061068702290077, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0020193846947050348 - }, - { - "songno": "1086", - "difficulty": "oni", - "note_count": 913, - "density_avg": 8.151785714285714, - "density_peak": 17, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 850, - "color_complexity": 0.012738948317727986 - }, - { - "songno": "1092", - "difficulty": "oni", - "note_count": 824, - "density_avg": 5.540486409155937, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 802, - "color_complexity": 0.00375172717596914 - }, - { - "songno": "506", - "difficulty": "oni", - "note_count": 250, - "density_avg": 3.7887229774905276, - "density_peak": 8, - "bpm_avg": 139.016, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 218, - "color_complexity": 0.0010185472151319195 - }, - { - "songno": "506", - "difficulty": "ura", - "note_count": 348, - "density_avg": 5.022071307300509, - "density_peak": 9, - "bpm_avg": 138.16666666666666, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 314, - "color_complexity": 0.0018775119784505694 - }, - { - "songno": "260", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.701195219123506, - "density_peak": 10, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 460, - "color_complexity": 0.0031646464661656587 - }, - { - "songno": "937", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.756818181818183, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.0026147915360533627 - }, - { - "songno": "1247", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.199855530614306, - "density_peak": 15, - "bpm_avg": 117.65747800586507, - "bpm_change": 8, - "scroll_change": 9, - "rhythm_complexity": 590, - "color_complexity": 0.0072310435349687225 - }, - { - "songno": "738", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.632268632268633, - "density_peak": 12, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0035795386094999554 - }, - { - "songno": "1284", - "difficulty": "oni", - "note_count": 334, - "density_avg": 3.595138888888889, - "density_peak": 7, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 318, - "color_complexity": 0.0010574817635116592 - }, - { - "songno": "704", - "difficulty": "oni", - "note_count": 620, - "density_avg": 4.860627177700349, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 491, - "color_complexity": 0.0030628671679145195 - }, - { - "songno": "843", - "difficulty": "oni", - "note_count": 501, - "density_avg": 4.865258557902404, - "density_peak": 15, - "bpm_avg": 127.55738522954091, - "bpm_change": 27, - "scroll_change": 86, - "rhythm_complexity": 430, - "color_complexity": 0.004476905848974846 - }, - { - "songno": "857", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.366604798240187, - "density_peak": 15, - "bpm_avg": 159.30906389301634, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 562, - "color_complexity": 0.00426951634150544 - }, - { - "songno": "17", - "difficulty": "oni", - "note_count": 700, - "density_avg": 5.400534436559395, - "density_peak": 11, - "bpm_avg": 144.20714285714286, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.00472643746528474 - }, - { - "songno": "1333", - "difficulty": "oni", - "note_count": 172, - "density_avg": 1.5733333333333333, - "density_peak": 4, - "bpm_avg": 59, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00009861868255332103 - }, - { - "songno": "1455", - "difficulty": "oni", - "note_count": 503, - "density_avg": 5.432282545242265, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.00321445135785848 - }, - { - "songno": "1455", - "difficulty": "ura", - "note_count": 766, - "density_avg": 8.047132311186827, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.009616679598199184 - }, - { - "songno": "1441", - "difficulty": "oni", - "note_count": 372, - "density_avg": 5.264150943396226, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 268, - "color_complexity": 0.0019842107429846956 - }, - { - "songno": "1327", - "difficulty": "oni", - "note_count": 395, - "density_avg": 4.839032274147445, - "density_peak": 8, - "bpm_avg": 147.0087088607595, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.001427526775067218 - }, - { - "songno": "1327", - "difficulty": "ura", - "note_count": 512, - "density_avg": 6.22052515086054, - "density_peak": 9, - "bpm_avg": 147.0083984375, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 469, - "color_complexity": 0.004347462507503395 - }, - { - "songno": "880", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.259266555534577, - "density_peak": 12, - "bpm_avg": 170.78512968299415, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 664, - "color_complexity": 0.0054895389038104436 - }, - { - "songno": "894", - "difficulty": "oni", - "note_count": 323, - "density_avg": 2.367926689576174, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0005058558384247332 - }, - { - "songno": "116", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.164847811117171, - "density_peak": 9, - "bpm_avg": 170.1988493150685, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 331, - "color_complexity": 0.0016319783493619318 - }, - { - "songno": "670", - "difficulty": "oni", - "note_count": 690, - "density_avg": 4.890907753925259, - "density_peak": 14, - "bpm_avg": 169.8479565217385, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 608, - "color_complexity": 0.005160122644245964 - }, - { - "songno": "499", - "difficulty": "oni", - "note_count": 936, - "density_avg": 6.872319807589215, - "density_peak": 13, - "bpm_avg": 193.30128205128204, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 833, - "color_complexity": 0.011851530953352691 - }, - { - "songno": "1119", - "difficulty": "oni", - "note_count": 562, - "density_avg": 4.974161313347609, - "density_peak": 9, - "bpm_avg": 248, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.00358868590492983 - }, - { - "songno": "1131", - "difficulty": "oni", - "note_count": 509, - "density_avg": 4.519946984758119, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0014665661983364843 - }, - { - "songno": "1131", - "difficulty": "ura", - "note_count": 662, - "density_avg": 5.594954273099968, - "density_peak": 10, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.004430385128495827 - }, - { - "songno": "1125", - "difficulty": "oni", - "note_count": 397, - "density_avg": 2.8931070158422245, - "density_peak": 6, - "bpm_avg": 98, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 230, - "color_complexity": 0.0008972601216066811 - }, - { - "songno": "300", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.988133764832794, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.003133776137437903 - }, - { - "songno": "466", - "difficulty": "oni", - "note_count": 384, - "density_avg": 4.708045977011494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 366, - "color_complexity": 0.0024928036264185976 - }, - { - "songno": "472", - "difficulty": "oni", - "note_count": 670, - "density_avg": 5.787793427230047, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 636, - "color_complexity": 0.005590136340236864 - }, - { - "songno": "314", - "difficulty": "oni", - "note_count": 293, - "density_avg": 2.5320987654320986, - "density_peak": 6, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 273, - "color_complexity": 0.00022264120762903998 - }, - { - "songno": "302", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.484084143905007, - "density_peak": 11, - "bpm_avg": 143.44724999999937, - "bpm_change": 12, - "scroll_change": 4, - "rhythm_complexity": 404, - "color_complexity": 0.004238094429688095 - }, - { - "songno": "316", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.634870799426448, - "density_peak": 9, - "bpm_avg": 130.00513821138208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0028332665654973027 - }, - { - "songno": "470", - "difficulty": "oni", - "note_count": 615, - "density_avg": 4.6381838622223714, - "density_peak": 10, - "bpm_avg": 150.00764227642276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.00177708789060178 - }, - { - "songno": "470", - "difficulty": "ura", - "note_count": 822, - "density_avg": 6.199328674385023, - "density_peak": 11, - "bpm_avg": 150.00743309002434, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 750, - "color_complexity": 0.007301105632067015 - }, - { - "songno": "458", - "difficulty": "oni", - "note_count": 605, - "density_avg": 5.355463347164592, - "density_peak": 11, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 566, - "color_complexity": 0.0028292610768898946 - }, - { - "songno": "1133", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.484926692360691, - "density_peak": 10, - "bpm_avg": 194.03649842271298, - "bpm_change": 4, - "scroll_change": 7, - "rhythm_complexity": 592, - "color_complexity": 0.0035904439029338236 - }, - { - "songno": "1133", - "difficulty": "ura", - "note_count": 929, - "density_avg": 6.571761667512748, - "density_peak": 13, - "bpm_avg": 194.36912809472557, - "bpm_change": 5, - "scroll_change": 22, - "rhythm_complexity": 810, - "color_complexity": 0.009096481039119107 - }, - { - "songno": "1127", - "difficulty": "oni", - "note_count": 524, - "density_avg": 6.726075268817204, - "density_peak": 11, - "bpm_avg": 191, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 516, - "color_complexity": 0.004093829722877772 - }, - { - "songno": "100", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.773836439104744, - "density_peak": 11, - "bpm_avg": 149.95562130177518, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 476, - "color_complexity": 0.004756157454311307 - }, - { - "songno": "100", - "difficulty": "ura", - "note_count": 659, - "density_avg": 6.107286772260961, - "density_peak": 11, - "bpm_avg": 149.99235204855847, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 583, - "color_complexity": 0.0054523159032933855 - }, - { - "songno": "666", - "difficulty": "oni", - "note_count": 639, - "density_avg": 7.153584905660376, - "density_peak": 11, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 615, - "color_complexity": 0.008336757969547338 - }, - { - "songno": "672", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.8876166242578454, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0016144455838139153 - }, - { - "songno": "114", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.051903114186851, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 556, - "color_complexity": 0.0040498389003758625 - }, - { - "songno": "882", - "difficulty": "oni", - "note_count": 352, - "density_avg": 3.282393876130828, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0005044328294896559 - }, - { - "songno": "882", - "difficulty": "ura", - "note_count": 569, - "density_avg": 5.305915100904662, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.0024828088615125757 - }, - { - "songno": "896", - "difficulty": "oni", - "note_count": 940, - "density_avg": 7.560814214917917, - "density_peak": 20, - "bpm_avg": 247.38173404255332, - "bpm_change": 11, - "scroll_change": 24, - "rhythm_complexity": 842, - "color_complexity": 0.011939282275545976 - }, - { - "songno": "128", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.034374250580236, - "density_peak": 13, - "bpm_avg": 173.99227064220185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 768, - "color_complexity": 0.008631030824992465 - }, - { - "songno": "1457", - "difficulty": "oni", - "note_count": 622, - "density_avg": 6.269258459323255, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.004413508641975329 - }, - { - "songno": "1331", - "difficulty": "oni", - "note_count": 211, - "density_avg": 2.4981785063752278, - "density_peak": 5, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0003341390948416037 - }, - { - "songno": "1325", - "difficulty": "oni", - "note_count": 714, - "density_avg": 7.193954659949623, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.009706423538012446 - }, - { - "songno": "869", - "difficulty": "oni", - "note_count": 984, - "density_avg": 7.46041446388104, - "density_peak": 18, - "bpm_avg": 290.0498780487808, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 842, - "color_complexity": 0.01298671248501483 - }, - { - "songno": "699", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.21127385707945, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 909, - "color_complexity": 0.014662068882383061 - }, - { - "songno": "1319", - "difficulty": "oni", - "note_count": 719, - "density_avg": 4.938260936923714, - "density_peak": 13, - "bpm_avg": 235.326842837274, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 627, - "color_complexity": 0.0066211093414901105 - }, - { - "songno": "1319", - "difficulty": "ura", - "note_count": 1337, - "density_avg": 8.929103950483837, - "density_peak": 18, - "bpm_avg": 234.69691847419597, - "bpm_change": 19, - "scroll_change": 71, - "rhythm_complexity": 1222, - "color_complexity": 0.0210652104195674 - }, - { - "songno": "15", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.108978873239437, - "density_peak": 11, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.004710197230383599 - }, - { - "songno": "15", - "difficulty": "ura", - "note_count": 932, - "density_avg": 8.368309859154929, - "density_peak": 16, - "bpm_avg": 306, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.013968603750755133 - }, - { - "songno": "855", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.34520037278658, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 357, - "color_complexity": 0.002449154203014268 - }, - { - "songno": "1286", - "difficulty": "oni", - "note_count": 306, - "density_avg": 2.8570024570024573, - "density_peak": 6, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0007984180708171067 - }, - { - "songno": "1292", - "difficulty": "oni", - "note_count": 472, - "density_avg": 3.973976272483735, - "density_peak": 8, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 402, - "color_complexity": 0.0017641762654321013 - }, - { - "songno": "706", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.8145789101203116, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 316, - "color_complexity": 0.002161003383950621 - }, - { - "songno": "909", - "difficulty": "oni", - "note_count": 439, - "density_avg": 5.226190476190476, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0020473420061728406 - }, - { - "songno": "1245", - "difficulty": "oni", - "note_count": 632, - "density_avg": 5.166715328467153, - "density_peak": 11, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 19, - "rhythm_complexity": 562, - "color_complexity": 0.004657912686069128 - }, - { - "songno": "1251", - "difficulty": "oni", - "note_count": 403, - "density_avg": 4.257601239064866, - "density_peak": 8, - "bpm_avg": 164.69370967741918, - "bpm_change": 39, - "scroll_change": 1, - "rhythm_complexity": 278, - "color_complexity": 0.0020379168461830727 - }, - { - "songno": "1251", - "difficulty": "ura", - "note_count": 645, - "density_avg": 6.814274935972303, - "density_peak": 11, - "bpm_avg": 164.84160620155023, - "bpm_change": 41, - "scroll_change": 1, - "rhythm_complexity": 556, - "color_complexity": 0.0056928150574618456 - }, - { - "songno": "935", - "difficulty": "oni", - "note_count": 732, - "density_avg": 5.140899818980971, - "density_peak": 12, - "bpm_avg": 152.56129781420765, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 564, - "color_complexity": 0.0049699034012006755 - }, - { - "songno": "1279", - "difficulty": "oni", - "note_count": 880, - "density_avg": 6.1145080600333515, - "density_peak": 13, - "bpm_avg": 249.85795454545453, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 590, - "color_complexity": 0.008094883577688882 - }, - { - "songno": "921", - "difficulty": "oni", - "note_count": 291, - "density_avg": 3.1525, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 266, - "color_complexity": 0.001086549577416047 - }, - { - "songno": "1084", - "difficulty": "oni", - "note_count": 435, - "density_avg": 3.0948616600790513, - "density_peak": 8, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 342, - "color_complexity": 0.0011149488297520637 - }, - { - "songno": "1084", - "difficulty": "ura", - "note_count": 664, - "density_avg": 4.705511811023621, - "density_peak": 10, - "bpm_avg": 108, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 577, - "color_complexity": 0.003746192557562716 - }, - { - "songno": "510", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.914560439560439, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.004385576756741015 - }, - { - "songno": "276", - "difficulty": "oni", - "note_count": 572, - "density_avg": 4.707818930041152, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.002875670864197522 - }, - { - "songno": "276", - "difficulty": "ura", - "note_count": 700, - "density_avg": 5.6811594202898545, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 696, - "color_complexity": 0.003454018737997262 - }, - { - "songno": "262", - "difficulty": "oni", - "note_count": 589, - "density_avg": 4.016704921825748, - "density_peak": 9, - "bpm_avg": 111.04259762309044, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 463, - "color_complexity": 0.0020354118158598363 - }, - { - "songno": "504", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.688226103538581, - "density_peak": 12, - "bpm_avg": 164.96924705882358, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 670, - "color_complexity": 0.003208694740082672 - }, - { - "songno": "504", - "difficulty": "ura", - "note_count": 1100, - "density_avg": 7.347823274049404, - "density_peak": 14, - "bpm_avg": 164.97976363636315, - "bpm_change": 18, - "scroll_change": 18, - "rhythm_complexity": 1000, - "color_complexity": 0.0132445012548659 - }, - { - "songno": "1090", - "difficulty": "oni", - "note_count": 243, - "density_avg": 2.6878923766816145, - "density_peak": 6, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 134, - "color_complexity": 0.00043362500626337907 - }, - { - "songno": "538", - "difficulty": "oni", - "note_count": 945, - "density_avg": 7.538560738174717, - "density_peak": 21, - "bpm_avg": 200.02753439153435, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 893, - "color_complexity": 0.012391606183705058 - }, - { - "songno": "1047", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.228545618789521, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.0070913098305485 - }, - { - "songno": "1053", - "difficulty": "oni", - "note_count": 555, - "density_avg": 3.9206740498178747, - "density_peak": 9, - "bpm_avg": 183.6036036036036, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 481, - "color_complexity": 0.0018931107561911255 - }, - { - "songno": "1053", - "difficulty": "ura", - "note_count": 1099, - "density_avg": 7.763641046396115, - "density_peak": 14, - "bpm_avg": 182.57506824385806, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 972, - "color_complexity": 0.016074045730421618 - }, - { - "songno": "288", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.403861003861005, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 749, - "color_complexity": 0.01046521247109798 - }, - { - "songno": "1052", - "difficulty": "oni", - "note_count": 742, - "density_avg": 5.278884462151394, - "density_peak": 13, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 639, - "color_complexity": 0.00550097144024776 - }, - { - "songno": "1052", - "difficulty": "ura", - "note_count": 1176, - "density_avg": 8.045977011494253, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 1093, - "color_complexity": 0.02131716656353882 - }, - { - "songno": "1046", - "difficulty": "oni", - "note_count": 541, - "density_avg": 6.102650874224478, - "density_peak": 13, - "bpm_avg": 199.72273567467653, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.00450128330359733 - }, - { - "songno": "1046", - "difficulty": "ura", - "note_count": 621, - "density_avg": 7.73109243697479, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 604, - "color_complexity": 0.006374884460034465 - }, - { - "songno": "539", - "difficulty": "oni", - "note_count": 792, - "density_avg": 5.675570032573289, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 757, - "color_complexity": 0.006197943335459175 - }, - { - "songno": "539", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.158957654723126, - "density_peak": 14, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 937, - "color_complexity": 0.010304696111111135 - }, - { - "songno": "1091", - "difficulty": "oni", - "note_count": 274, - "density_avg": 3.233981841763943, - "density_peak": 8, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.0003489265802469149 - }, - { - "songno": "505", - "difficulty": "oni", - "note_count": 728, - "density_avg": 4.817204301075269, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.0024496518686301797 - }, - { - "songno": "511", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.973861386138614, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.0015197719062607078 - }, - { - "songno": "511", - "difficulty": "ura", - "note_count": 546, - "density_avg": 6.270891089108911, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.005743839326187316 - }, - { - "songno": "1085", - "difficulty": "oni", - "note_count": 1138, - "density_avg": 9.204767986377183, - "density_peak": 14, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1088, - "color_complexity": 0.014703381743512217 - }, - { - "songno": "277", - "difficulty": "oni", - "note_count": 445, - "density_avg": 3.6341917283048284, - "density_peak": 8, - "bpm_avg": 171.99826966292133, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.0020813195040302883 - }, - { - "songno": "277", - "difficulty": "ura", - "note_count": 585, - "density_avg": 4.770737372264775, - "density_peak": 11, - "bpm_avg": 171.99473504273504, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.005060615261845435 - }, - { - "songno": "920", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.421110242376857, - "density_peak": 9, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004355153614285699 - }, - { - "songno": "920", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.717904612978889, - "density_peak": 12, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 825, - "color_complexity": 0.009295798702040838 - }, - { - "songno": "1278", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.283296371223447, - "density_peak": 19, - "bpm_avg": 231.9844375, - "bpm_change": 71, - "scroll_change": 187, - "rhythm_complexity": 847, - "color_complexity": 0.012190425640302392 - }, - { - "songno": "934", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.636731150793651, - "density_peak": 14, - "bpm_avg": 183.5, - "bpm_change": 0, - "scroll_change": 35, - "rhythm_complexity": 747, - "color_complexity": 0.010298519636411839 - }, - { - "songno": "1250", - "difficulty": "oni", - "note_count": 698, - "density_avg": 6.156917363045497, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006670612366998688 - }, - { - "songno": "1244", - "difficulty": "oni", - "note_count": 326, - "density_avg": 4.032552083333333, - "density_peak": 7, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.001092109461731194 - }, - { - "songno": "908", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.542407206174336, - "density_peak": 13, - "bpm_avg": 184.85773480662982, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 701, - "color_complexity": 0.005314764044482667 - }, - { - "songno": "707", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.883967391304348, - "density_peak": 12, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007304416946362079 - }, - { - "songno": "1293", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.611299435028249, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.0011822022666666638 - }, - { - "songno": "1287", - "difficulty": "oni", - "note_count": 304, - "density_avg": 3.5625, - "density_peak": 6, - "bpm_avg": 90, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 277, - "color_complexity": 0.000738419722991691 - }, - { - "songno": "713", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.952755905511811, - "density_peak": 12, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 708, - "color_complexity": 0.007394549478840226 - }, - { - "songno": "14", - "difficulty": "oni", - "note_count": 455, - "density_avg": 3.8595119490553125, - "density_peak": 7, - "bpm_avg": 128.00272527472532, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0014407419023724298 - }, - { - "songno": "1318", - "difficulty": "oni", - "note_count": 905, - "density_avg": 6.6112012987013, - "density_peak": 14, - "bpm_avg": 259.4088397790055, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 844, - "color_complexity": 0.007820317021683725 - }, - { - "songno": "1318", - "difficulty": "ura", - "note_count": 1159, - "density_avg": 8.46672077922078, - "density_peak": 18, - "bpm_avg": 256.48835202761, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 1094, - "color_complexity": 0.017110096093883732 - }, - { - "songno": "698", - "difficulty": "oni", - "note_count": 1194, - "density_avg": 8.223137475666464, - "density_peak": 16, - "bpm_avg": 199.92463986599665, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 1103, - "color_complexity": 0.018206996204650418 - }, - { - "songno": "868", - "difficulty": "oni", - "note_count": 961, - "density_avg": 7.151627906976745, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 859, - "color_complexity": 0.013822264805620656 - }, - { - "songno": "868", - "difficulty": "ura", - "note_count": 1305, - "density_avg": 9.711627906976744, - "density_peak": 25, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 120, - "rhythm_complexity": 1246, - "color_complexity": 0.019582738634989584 - }, - { - "songno": "1324", - "difficulty": "oni", - "note_count": 811, - "density_avg": 6.322102104295747, - "density_peak": 16, - "bpm_avg": 170.43156596794083, - "bpm_change": 11, - "scroll_change": 17, - "rhythm_complexity": 664, - "color_complexity": 0.006560420104808106 - }, - { - "songno": "1442", - "difficulty": "oni", - "note_count": 415, - "density_avg": 3.6744791666666665, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 379, - "color_complexity": 0.0013988094826594664 - }, - { - "songno": "1456", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.6178312046080645, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.0040473257165252905 - }, - { - "songno": "1330", - "difficulty": "oni", - "note_count": 297, - "density_avg": 2.2789237668161437, - "density_peak": 5, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0004440058069272963 - }, - { - "songno": "897", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.435308343409916, - "density_peak": 8, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 349, - "color_complexity": 0.0019701741906721485 - }, - { - "songno": "673", - "difficulty": "oni", - "note_count": 674, - "density_avg": 6.688190076869323, - "density_peak": 15, - "bpm_avg": 167.4925816023739, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 625, - "color_complexity": 0.00627578561114128 - }, - { - "songno": "115", - "difficulty": "oni", - "note_count": 341, - "density_avg": 4.05322570428458, - "density_peak": 8, - "bpm_avg": 164.7099706744868, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 320, - "color_complexity": 0.0008169411582718039 - }, - { - "songno": "101", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.42588215773468, - "density_peak": 7, - "bpm_avg": 143.83536842105286, - "bpm_change": 14, - "scroll_change": 2, - "rhythm_complexity": 223, - "color_complexity": 0.0005886783305206696 - }, - { - "songno": "1126", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.6896188158961882, - "density_peak": 8, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.0017448254881589416 - }, - { - "songno": "1132", - "difficulty": "oni", - "note_count": 595, - "density_avg": 4.1469696969696965, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 520, - "color_complexity": 0.0036295703122201078 - }, - { - "songno": "459", - "difficulty": "oni", - "note_count": 553, - "density_avg": 4.932275132275132, - "density_peak": 9, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.002235320574056874 - }, - { - "songno": "317", - "difficulty": "oni", - "note_count": 443, - "density_avg": 4.7348029392117565, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.002547114352429677 - }, - { - "songno": "317", - "difficulty": "ura", - "note_count": 569, - "density_avg": 6.093708165997322, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.0037641542935528097 - }, - { - "songno": "471", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.027810650887575, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.009396690742807612 - }, - { - "songno": "465", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.911212074590177, - "density_peak": 15, - "bpm_avg": 127.86786786786787, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 585, - "color_complexity": 0.0038404432358629553 - }, - { - "songno": "358", - "difficulty": "oni", - "note_count": 682, - "density_avg": 6.436433470507545, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 575, - "color_complexity": 0.006004589644246098 - }, - { - "songno": "1196", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.168413062024918, - "density_peak": 11, - "bpm_avg": 200.14719412724295, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 315, - "color_complexity": 0.0033317869939527146 - }, - { - "songno": "1196", - "difficulty": "ura", - "note_count": 1119, - "density_avg": 7.858565931700912, - "density_peak": 15, - "bpm_avg": 200.09512064343178, - "bpm_change": 23, - "scroll_change": 2, - "rhythm_complexity": 758, - "color_complexity": 0.018550024251476196 - }, - { - "songno": "402", - "difficulty": "oni", - "note_count": 681, - "density_avg": 6.522988505747127, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 647, - "color_complexity": 0.005736246213711815 - }, - { - "songno": "402", - "difficulty": "ura", - "note_count": 943, - "density_avg": 8.936271025823265, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 825, - "color_complexity": 0.01097117310596598 - }, - { - "songno": "364", - "difficulty": "oni", - "note_count": 545, - "density_avg": 5.190476190476191, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 499, - "color_complexity": 0.0034087314688095068 - }, - { - "songno": "416", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.592472562807775, - "density_peak": 12, - "bpm_avg": 183.0736162361628, - "bpm_change": 70, - "scroll_change": 2, - "rhythm_complexity": 444, - "color_complexity": 0.003853961241339756 - }, - { - "songno": "1169", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.307882534775889, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 493, - "color_complexity": 0.0025056026371154303 - }, - { - "songno": "1155", - "difficulty": "oni", - "note_count": 415, - "density_avg": 4.382259767687434, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0017484908903376147 - }, - { - "songno": "1141", - "difficulty": "oni", - "note_count": 695, - "density_avg": 5.660037878787878, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 690, - "color_complexity": 0.005247635711093078 - }, - { - "songno": "628", - "difficulty": "oni", - "note_count": 976, - "density_avg": 8.09585253456221, - "density_peak": 15, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 938, - "color_complexity": 0.014773061250000082 - }, - { - "songno": "166", - "difficulty": "oni", - "note_count": 592, - "density_avg": 5.519813519813519, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 516, - "color_complexity": 0.003721939591836732 - }, - { - "songno": "98", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.616406636158505, - "density_peak": 8, - "bpm_avg": 122.34319088319094, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 285, - "color_complexity": 0.0011109673572387985 - }, - { - "songno": "1394", - "difficulty": "oni", - "note_count": 678, - "density_avg": 6.064570230607967, - "density_peak": 13, - "bpm_avg": 160.51917404129793, - "bpm_change": 12, - "scroll_change": 0, - "rhythm_complexity": 529, - "color_complexity": 0.006599241176379303 - }, - { - "songno": "1380", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.656552330694812, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005310334211021441 - }, - { - "songno": "1380", - "difficulty": "ura", - "note_count": 865, - "density_avg": 7.227352682497801, - "density_peak": 17, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 761, - "color_complexity": 0.009448980577942735 - }, - { - "songno": "614", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.1925, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.003715440318086437 - }, - { - "songno": "199", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.686525892408245, - "density_peak": 9, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0015999809944002043 - }, - { - "songno": "67", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.904639175257731, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.004669144880604776 - }, - { - "songno": "73", - "difficulty": "oni", - "note_count": 876, - "density_avg": 8.239004149377593, - "density_peak": 14, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 862, - "color_complexity": 0.008713334446863187 - }, - { - "songno": "73", - "difficulty": "ura", - "note_count": 915, - "density_avg": 8.605809128630705, - "density_peak": 14, - "bpm_avg": 203.88852459016394, - "bpm_change": 2, - "scroll_change": 3, - "rhythm_complexity": 907, - "color_complexity": 0.012598723086419733 - }, - { - "songno": "833", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.589343729694607, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 836, - "color_complexity": 0.01508577106060983 - }, - { - "songno": "1419", - "difficulty": "oni", - "note_count": 1055, - "density_avg": 7.124984692192965, - "density_peak": 16, - "bpm_avg": 206.34502369668246, - "bpm_change": 16, - "scroll_change": 30, - "rhythm_complexity": 901, - "color_complexity": 0.009958925222890526 - }, - { - "songno": "1419", - "difficulty": "ura", - "note_count": 1438, - "density_avg": 9.711590509358752, - "density_peak": 22, - "bpm_avg": 207.2489568845619, - "bpm_change": 16, - "scroll_change": 41, - "rhythm_complexity": 1155, - "color_complexity": 0.033885251462878296 - }, - { - "songno": "9", - "difficulty": "oni", - "note_count": 466, - "density_avg": 3.8193959638010546, - "density_peak": 8, - "bpm_avg": 163.00523605150215, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 396, - "color_complexity": 0.001314240542779155 - }, - { - "songno": "9", - "difficulty": "ura", - "note_count": 681, - "density_avg": 5.321182335265388, - "density_peak": 10, - "bpm_avg": 163.01602055800296, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 646, - "color_complexity": 0.0054555293492886126 - }, - { - "songno": "1431", - "difficulty": "oni", - "note_count": 825, - "density_avg": 6.043712840646725, - "density_peak": 13, - "bpm_avg": 180.0088000000001, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 762, - "color_complexity": 0.006014767136369827 - }, - { - "songno": "1357", - "difficulty": "oni", - "note_count": 703, - "density_avg": 4.911489717619787, - "density_peak": 14, - "bpm_avg": 199.9972972972973, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 616, - "color_complexity": 0.000616580816067637 - }, - { - "songno": "1357", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.073818374933616, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 955, - "color_complexity": 0.007854224150660213 - }, - { - "songno": "1343", - "difficulty": "oni", - "note_count": 279, - "density_avg": 3.169924812030075, - "density_peak": 6, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 221, - "color_complexity": 0.0006248289693254968 - }, - { - "songno": "1343", - "difficulty": "ura", - "note_count": 566, - "density_avg": 6.430743525480367, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0037054673898715158 - }, - { - "songno": "1425", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.841666666666667, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.00980659603242667 - }, - { - "songno": "748", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.702888583218709, - "density_peak": 17, - "bpm_avg": 186.27627627627626, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 917, - "color_complexity": 0.013256775651791036 - }, - { - "songno": "990", - "difficulty": "oni", - "note_count": 1111, - "density_avg": 9.593079700188397, - "density_peak": 16, - "bpm_avg": 203.65641764176416, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 1066, - "color_complexity": 0.014413828088018618 - }, - { - "songno": "984", - "difficulty": "oni", - "note_count": 446, - "density_avg": 5.1544298245614035, - "density_peak": 9, - "bpm_avg": 160.31390134529147, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 413, - "color_complexity": 0.0015697646971252327 - }, - { - "songno": "774", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.829218989124031, - "density_peak": 15, - "bpm_avg": 168.00981996726676, - "bpm_change": 20, - "scroll_change": 19, - "rhythm_complexity": 556, - "color_complexity": 0.008990997359901822 - }, - { - "songno": "760", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.545887151597554, - "density_peak": 16, - "bpm_avg": 203.1855, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 850, - "color_complexity": 0.014314210829957054 - }, - { - "songno": "947", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.201434878587197, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 619, - "color_complexity": 0.004581128752476536 - }, - { - "songno": "1237", - "difficulty": "oni", - "note_count": 552, - "density_avg": 4.51078355314197, - "density_peak": 9, - "bpm_avg": 205.5144927536232, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.002258348221638869 - }, - { - "songno": "1237", - "difficulty": "ura", - "note_count": 962, - "density_avg": 7.858136228512342, - "density_peak": 15, - "bpm_avg": 205.3014553014553, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 837, - "color_complexity": 0.01285488391387629 - }, - { - "songno": "238", - "difficulty": "oni", - "note_count": 484, - "density_avg": 6.06639566395664, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 466, - "color_complexity": 0.003516260348992351 - }, - { - "songno": "576", - "difficulty": "oni", - "note_count": 854, - "density_avg": 6.958518518518519, - "density_peak": 13, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 774, - "color_complexity": 0.008246150026396728 - }, - { - "songno": "204", - "difficulty": "oni", - "note_count": 390, - "density_avg": 3.1917948697674747, - "density_peak": 7, - "bpm_avg": 127.81471794871796, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0011555350740271254 - }, - { - "songno": "1021", - "difficulty": "oni", - "note_count": 458, - "density_avg": 4.285380116959064, - "density_peak": 13, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.002751824318386189 - }, - { - "songno": "1035", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.3507788161993775, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 637, - "color_complexity": 0.005636438866440603 - }, - { - "songno": "1035", - "difficulty": "ura", - "note_count": 1089, - "density_avg": 8.551766893986361, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1032, - "color_complexity": 0.012806188619968862 - }, - { - "songno": "1034", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.262383964424658, - "density_peak": 11, - "bpm_avg": 185.36418918918918, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 670, - "color_complexity": 0.00449243120435546 - }, - { - "songno": "1020", - "difficulty": "oni", - "note_count": 556, - "density_avg": 5.183516460755705, - "density_peak": 10, - "bpm_avg": 159.95887769784176, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 486, - "color_complexity": 0.0027357075206317543 - }, - { - "songno": "1020", - "difficulty": "ura", - "note_count": 707, - "density_avg": 6.591270031932164, - "density_peak": 12, - "bpm_avg": 162.02029420084858, - "bpm_change": 5, - "scroll_change": 2, - "rhythm_complexity": 693, - "color_complexity": 0.004757860795108542 - }, - { - "songno": "1008", - "difficulty": "oni", - "note_count": 249, - "density_avg": 3.7456410256410257, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 224, - "color_complexity": 0.0010818908439331689 - }, - { - "songno": "588", - "difficulty": "oni", - "note_count": 861, - "density_avg": 6.837232524964337, - "density_peak": 14, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 819, - "color_complexity": 0.01153366890971254 - }, - { - "songno": "205", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.109133055169217, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.002658451806490057 - }, - { - "songno": "577", - "difficulty": "oni", - "note_count": 803, - "density_avg": 6.8195329087048835, - "density_peak": 16, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 675, - "color_complexity": 0.009285326511893845 - }, - { - "songno": "211", - "difficulty": "oni", - "note_count": 864, - "density_avg": 6.9430601496997015, - "density_peak": 11, - "bpm_avg": 161.125, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 830, - "color_complexity": 0.011478577191172106 - }, - { - "songno": "239", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.95959595959596, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.0077838354591836766 - }, - { - "songno": "1236", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.700359892147317, - "density_peak": 20, - "bpm_avg": 242.48248248248248, - "bpm_change": 7, - "scroll_change": 146, - "rhythm_complexity": 905, - "color_complexity": 0.016323152358715592 - }, - { - "songno": "946", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.0014184397163115, - "density_peak": 10, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.0020005718754418345 - }, - { - "songno": "952", - "difficulty": "oni", - "note_count": 717, - "density_avg": 6.128205128205129, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.007741479416134963 - }, - { - "songno": "761", - "difficulty": "oni", - "note_count": 902, - "density_avg": 7.567340823970038, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.01348508429319256 - }, - { - "songno": "775", - "difficulty": "oni", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 16, - "bpm_avg": 243.05825242718447, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 700, - "color_complexity": 0.010716255172709585 - }, - { - "songno": "775", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.821832785688208, - "density_peak": 14, - "bpm_avg": 242.4757281553398, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 745, - "color_complexity": 0.010561460644845198 - }, - { - "songno": "991", - "difficulty": "oni", - "note_count": 694, - "density_avg": 5.82349537037037, - "density_peak": 12, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 643, - "color_complexity": 0.005476894034754873 - }, - { - "songno": "749", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.58212161930252, - "density_peak": 15, - "bpm_avg": 186.13175675675674, - "bpm_change": 22, - "scroll_change": 26, - "rhythm_complexity": 840, - "color_complexity": 0.010647856596629493 - }, - { - "songno": "1342", - "difficulty": "oni", - "note_count": 321, - "density_avg": 4.243990384615385, - "density_peak": 8, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 279, - "color_complexity": 0.0009468668597647406 - }, - { - "songno": "1424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.726132686084143, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 699, - "color_complexity": 0.006500551571248105 - }, - { - "songno": "8", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.8251366120218577, - "density_peak": 8, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001714575045893014 - }, - { - "songno": "1356", - "difficulty": "oni", - "note_count": 1120, - "density_avg": 7.648578811369509, - "density_peak": 15, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1036, - "color_complexity": 0.011008075535663414 - }, - { - "songno": "72", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.26815144766147, - "density_peak": 13, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 745, - "color_complexity": 0.008029338470156076 - }, - { - "songno": "1418", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.39136574541053, - "density_peak": 13, - "bpm_avg": 172.07762557077626, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 780, - "color_complexity": 0.010990536271348108 - }, - { - "songno": "198", - "difficulty": "oni", - "note_count": 392, - "density_avg": 4.565461847389558, - "density_peak": 9, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0017093391041618571 - }, - { - "songno": "826", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.512437810945274, - "density_peak": 21, - "bpm_avg": 200.07923169267707, - "bpm_change": 2, - "scroll_change": 20, - "rhythm_complexity": 699, - "color_complexity": 0.008065090370174466 - }, - { - "songno": "66", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.93374613003096, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006237777312295145 - }, - { - "songno": "615", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.8845460407738575, - "density_peak": 13, - "bpm_avg": 209.6716621253406, - "bpm_change": 15, - "scroll_change": 9, - "rhythm_complexity": 641, - "color_complexity": 0.0041508155087384545 - }, - { - "songno": "1381", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.69765625, - "density_peak": 14, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.00615265079935022 - }, - { - "songno": "173", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.883720930232558, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 712, - "color_complexity": 0.006189637010333841 - }, - { - "songno": "167", - "difficulty": "oni", - "note_count": 828, - "density_avg": 6.663298872196968, - "density_peak": 14, - "bpm_avg": 201.7512077294686, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 798, - "color_complexity": 0.00619789634739647 - }, - { - "songno": "1395", - "difficulty": "oni", - "note_count": 926, - "density_avg": 6.844050258684406, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 801, - "color_complexity": 0.01583305014615938 - }, - { - "songno": "601", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.8070832099039524, - "density_peak": 9, - "bpm_avg": 169.30492063492076, - "bpm_change": 35, - "scroll_change": 2, - "rhythm_complexity": 304, - "color_complexity": 0.0009495584436399778 - }, - { - "songno": "601", - "difficulty": "ura", - "note_count": 757, - "density_avg": 6.325667767200526, - "density_peak": 12, - "bpm_avg": 173.14684280052856, - "bpm_change": 35, - "scroll_change": 4, - "rhythm_complexity": 638, - "color_complexity": 0.007174443241356957 - }, - { - "songno": "629", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.310009267840592, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 751, - "color_complexity": 0.0073302324515683945 - }, - { - "songno": "1140", - "difficulty": "oni", - "note_count": 562, - "density_avg": 5.053869541204061, - "density_peak": 10, - "bpm_avg": 159.99039145907471, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 504, - "color_complexity": 0.0032252104966734993 - }, - { - "songno": "1140", - "difficulty": "ura", - "note_count": 879, - "density_avg": 7.592165251691859, - "density_peak": 16, - "bpm_avg": 159.812059158135, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 765, - "color_complexity": 0.0063164056042033 - }, - { - "songno": "1154", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.928441837802259, - "density_peak": 14, - "bpm_avg": 239.84745762711864, - "bpm_change": 12, - "scroll_change": 15, - "rhythm_complexity": 618, - "color_complexity": 0.005391017636986323 - }, - { - "songno": "1168", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.981200909546523, - "density_peak": 8, - "bpm_avg": 129.64721768707474, - "bpm_change": 14, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016828069744445901 - }, - { - "songno": "1168", - "difficulty": "ura", - "note_count": 733, - "density_avg": 6.603522347730304, - "density_peak": 11, - "bpm_avg": 129.88940927694543, - "bpm_change": 66, - "scroll_change": 6, - "rhythm_complexity": 465, - "color_complexity": 0.006026550275146372 - }, - { - "songno": "1183", - "difficulty": "oni", - "note_count": 532, - "density_avg": 4.685636856368563, - "density_peak": 11, - "bpm_avg": 168.1203007518797, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 434, - "color_complexity": 0.002400538246595251 - }, - { - "songno": "417", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.074066757528118, - "density_peak": 9, - "bpm_avg": 160.00004040404042, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.0015723617729505638 - }, - { - "songno": "417", - "difficulty": "ura", - "note_count": 777, - "density_avg": 6.395050243635046, - "density_peak": 11, - "bpm_avg": 160.00002574002573, - "bpm_change": 3, - "scroll_change": 5, - "rhythm_complexity": 749, - "color_complexity": 0.007238797565792423 - }, - { - "songno": "403", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.020080321285141, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 570, - "color_complexity": 0.004050200550464442 - }, - { - "songno": "403", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.144578313253012, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 743, - "color_complexity": 0.006892555903810102 - }, - { - "songno": "1197", - "difficulty": "oni", - "note_count": 602, - "density_avg": 4.318917089678512, - "density_peak": 11, - "bpm_avg": 211.64784053156146, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 486, - "color_complexity": 0.0017625623784054663 - }, - { - "songno": "1197", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.1671065989847715, - "density_peak": 16, - "bpm_avg": 211.78778778778778, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 857, - "color_complexity": 0.012080873725724186 - }, - { - "songno": "365", - "difficulty": "oni", - "note_count": 822, - "density_avg": 7.195959595959596, - "density_peak": 15, - "bpm_avg": 200.4087591240876, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 799, - "color_complexity": 0.011999234431091285 - }, - { - "songno": "359", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.49475890985325, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 300, - "color_complexity": 0.003194577269203926 - }, - { - "songno": "429", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.16969872433587, - "density_peak": 11, - "bpm_avg": 160.0048320413437, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 346, - "color_complexity": 0.0027322792176294425 - }, - { - "songno": "415", - "difficulty": "oni", - "note_count": 521, - "density_avg": 3.6019708510654853, - "density_peak": 8, - "bpm_avg": 139.96679462571976, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 441, - "color_complexity": 0.001474628075984925 - }, - { - "songno": "1181", - "difficulty": "oni", - "note_count": 231, - "density_avg": 4.091787439613526, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 141, - "color_complexity": 0.0006873993156336606 - }, - { - "songno": "367", - "difficulty": "oni", - "note_count": 624, - "density_avg": 6.106422018348624, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.006190357760781997 - }, - { - "songno": "1195", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.9287817938420337, - "density_peak": 8, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0010137507865453303 - }, - { - "songno": "401", - "difficulty": "oni", - "note_count": 668, - "density_avg": 5.527186761229315, - "density_peak": 15, - "bpm_avg": 260.0898203592814, - "bpm_change": 4, - "scroll_change": 12, - "rhythm_complexity": 585, - "color_complexity": 0.005183734489235187 - }, - { - "songno": "398", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.923201856148492, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.003282641543197276 - }, - { - "songno": "1142", - "difficulty": "oni", - "note_count": 393, - "density_avg": 4.936940298507462, - "density_peak": 9, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0012709410806509788 - }, - { - "songno": "159", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.551603934560249, - "density_peak": 15, - "bpm_avg": 160.03296732026106, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 698, - "color_complexity": 0.006219329504113033 - }, - { - "songno": "171", - "difficulty": "oni", - "note_count": 653, - "density_avg": 6.533159746300676, - "density_peak": 12, - "bpm_avg": 235.19142419601837, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 567, - "color_complexity": 0.00635848433143966 - }, - { - "songno": "1383", - "difficulty": "oni", - "note_count": 1079, - "density_avg": 7.431815907462518, - "density_peak": 16, - "bpm_avg": 156.7701575532901, - "bpm_change": 11, - "scroll_change": 11, - "rhythm_complexity": 971, - "color_complexity": 0.013871993739205354 - }, - { - "songno": "617", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.326363636363637, - "density_peak": 12, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0040817978954081745 - }, - { - "songno": "1397", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "70", - "difficulty": "oni", - "note_count": 722, - "density_avg": 5.62962962962963, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.0065436619114178545 - }, - { - "songno": "64", - "difficulty": "oni", - "note_count": 608, - "density_avg": 6.144193061840121, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.00492357033293637 - }, - { - "songno": "1368", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.780729166666666, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010869024745673393 - }, - { - "songno": "824", - "difficulty": "oni", - "note_count": 199, - "density_avg": 2.5830944199210877, - "density_peak": 6, - "bpm_avg": 148.72085427135676, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 161, - "color_complexity": 0.0003074235312836148 - }, - { - "songno": "824", - "difficulty": "ura", - "note_count": 430, - "density_avg": 5.175755954031412, - "density_peak": 10, - "bpm_avg": 148.87081395348835, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 363, - "color_complexity": 0.0032175598758908477 - }, - { - "songno": "1426", - "difficulty": "oni", - "note_count": 479, - "density_avg": 4.875928243637881, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.002172193250509392 - }, - { - "songno": "1354", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.734225327873769, - "density_peak": 13, - "bpm_avg": 179.72653594771046, - "bpm_change": 7, - "scroll_change": 15, - "rhythm_complexity": 734, - "color_complexity": 0.007964919131700072 - }, - { - "songno": "818", - "difficulty": "oni", - "note_count": 846, - "density_avg": 7.1729651162790695, - "density_peak": 16, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 657, - "color_complexity": 0.00918082922932229 - }, - { - "songno": "1432", - "difficulty": "oni", - "note_count": 1053, - "density_avg": 7.269142512116014, - "density_peak": 14, - "bpm_avg": 156.8356600189935, - "bpm_change": 6, - "scroll_change": 20, - "rhythm_complexity": 907, - "color_complexity": 0.013030326912320108 - }, - { - "songno": "987", - "difficulty": "oni", - "note_count": 380, - "density_avg": 4.569760653823701, - "density_peak": 9, - "bpm_avg": 206, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.002440377499765448 - }, - { - "songno": "993", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.096801346801346, - "density_peak": 14, - "bpm_avg": 180.09393063583815, - "bpm_change": 35, - "scroll_change": 48, - "rhythm_complexity": 603, - "color_complexity": 0.00686516603828627 - }, - { - "songno": "993", - "difficulty": "ura", - "note_count": 1070, - "density_avg": 7.88102900841604, - "density_peak": 18, - "bpm_avg": 162.01897196261712, - "bpm_change": 42, - "scroll_change": 272, - "rhythm_complexity": 924, - "color_complexity": 0.013241814374083491 - }, - { - "songno": "763", - "difficulty": "oni", - "note_count": 978, - "density_avg": 8.256232664954757, - "density_peak": 17, - "bpm_avg": 194.02607361963192, - "bpm_change": 8, - "scroll_change": 11, - "rhythm_complexity": 874, - "color_complexity": 0.013895492789115544 - }, - { - "songno": "777", - "difficulty": "oni", - "note_count": 739, - "density_avg": 7.797051978277734, - "density_peak": 16, - "bpm_avg": 204, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.013527538876619076 - }, - { - "songno": "944", - "difficulty": "oni", - "note_count": 629, - "density_avg": 4.673945383329588, - "density_peak": 10, - "bpm_avg": 101.57392686804451, - "bpm_change": 8, - "scroll_change": 2, - "rhythm_complexity": 522, - "color_complexity": 0.0025838360181263077 - }, - { - "songno": "1208", - "difficulty": "oni", - "note_count": 558, - "density_avg": 2.871920801066091, - "density_peak": 5, - "bpm_avg": 113.10578494623665, - "bpm_change": 26, - "scroll_change": 0, - "rhythm_complexity": 376, - "color_complexity": 0.0009551482149608538 - }, - { - "songno": "1234", - "difficulty": "oni", - "note_count": 916, - "density_avg": 5.901973929236499, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 863, - "color_complexity": 0.004255697428349144 - }, - { - "songno": "1220", - "difficulty": "oni", - "note_count": 405, - "density_avg": 2.868949232585596, - "density_peak": 7, - "bpm_avg": 110, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 343, - "color_complexity": 0.0011273159462396626 - }, - { - "songno": "1220", - "difficulty": "ura", - "note_count": 804, - "density_avg": 5.668625146886017, - "density_peak": 15, - "bpm_avg": 111.71641791044776, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 662, - "color_complexity": 0.008858915966979342 - }, - { - "songno": "549", - "difficulty": "oni", - "note_count": 716, - "density_avg": 6.422453703703703, - "density_peak": 15, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004328081905707195 - }, - { - "songno": "561", - "difficulty": "oni", - "note_count": 471, - "density_avg": 4.8307692307692305, - "density_peak": 12, - "bpm_avg": 196.43312101910828, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 428, - "color_complexity": 0.003748535437129884 - }, - { - "songno": "207", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.037965328834292, - "density_peak": 7, - "bpm_avg": 110.00082882882883, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0020621240315578226 - }, - { - "songno": "213", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.259094942324756, - "density_peak": 10, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.002258420190569404 - }, - { - "songno": "575", - "difficulty": "oni", - "note_count": 620, - "density_avg": 5.291607396870555, - "density_peak": 14, - "bpm_avg": 360, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.006999148109652445 - }, - { - "songno": "1036", - "difficulty": "oni", - "note_count": 752, - "density_avg": 4.851612903225806, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.003321776251056654 - }, - { - "songno": "1022", - "difficulty": "oni", - "note_count": 469, - "density_avg": 4.20897435897436, - "density_peak": 9, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0013065631456790111 - }, - { - "songno": "1023", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.9256830194989174, - "density_peak": 10, - "bpm_avg": 140.08218390804598, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0012653129320987643 - }, - { - "songno": "1037", - "difficulty": "oni", - "note_count": 985, - "density_avg": 7.836117740652347, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.01393773577281376 - }, - { - "songno": "212", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.296930388686157, - "density_peak": 10, - "bpm_avg": 154.76406533575317, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 487, - "color_complexity": 0.0034473077023386553 - }, - { - "songno": "574", - "difficulty": "oni", - "note_count": 848, - "density_avg": 7.43859649122807, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 826, - "color_complexity": 0.007734122412654237 - }, - { - "songno": "560", - "difficulty": "oni", - "note_count": 640, - "density_avg": 5.005586592178771, - "density_peak": 12, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 607, - "color_complexity": 0.004092341027345833 - }, - { - "songno": "548", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.615460992907801, - "density_peak": 12, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 611, - "color_complexity": 0.004721166844608656 - }, - { - "songno": "1235", - "difficulty": "oni", - "note_count": 985, - "density_avg": 6.457902001380263, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 890, - "color_complexity": 0.007687399638884248 - }, - { - "songno": "1235", - "difficulty": "ura", - "note_count": 1244, - "density_avg": 8.155969634230503, - "density_peak": 19, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1154, - "color_complexity": 0.016763635685183353 - }, - { - "songno": "951", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.9867724867724865, - "density_peak": 9, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.0022818653178819704 - }, - { - "songno": "951", - "difficulty": "ura", - "note_count": 854, - "density_avg": 7.342592592592593, - "density_peak": 13, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.009435180951384889 - }, - { - "songno": "1209", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.398099117447386, - "density_peak": 10, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0025785174201498084 - }, - { - "songno": "945", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.7363184079602, - "density_peak": 9, - "bpm_avg": 193.01470588235293, - "bpm_change": 3, - "scroll_change": 4, - "rhythm_complexity": 487, - "color_complexity": 0.0033306615363511726 - }, - { - "songno": "776", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.69831223628692, - "density_peak": 11, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004772060150827519 - }, - { - "songno": "776", - "difficulty": "ura", - "note_count": 648, - "density_avg": 6.653164556962025, - "density_peak": 13, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 576, - "color_complexity": 0.003922080586702115 - }, - { - "songno": "762", - "difficulty": "oni", - "note_count": 659, - "density_avg": 6.059770114942529, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 542, - "color_complexity": 0.0049837290818746 - }, - { - "songno": "992", - "difficulty": "oni", - "note_count": 757, - "density_avg": 6.41090785907859, - "density_peak": 17, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.009610421709254004 - }, - { - "songno": "819", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.447102115915364, - "density_peak": 13, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.007005063298365982 - }, - { - "songno": "819", - "difficulty": "ura", - "note_count": 1121, - "density_avg": 8.250229990800369, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 89, - "rhythm_complexity": 1099, - "color_complexity": 0.016406242616303725 - }, - { - "songno": "1355", - "difficulty": "oni", - "note_count": 811, - "density_avg": 7.041967728612796, - "density_peak": 14, - "bpm_avg": 180.4588581997534, - "bpm_change": 50, - "scroll_change": 0, - "rhythm_complexity": 626, - "color_complexity": 0.010109033251288277 - }, - { - "songno": "59", - "difficulty": "oni", - "note_count": 266, - "density_avg": 3.6247379454926625, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0012709674618358168 - }, - { - "songno": "1433", - "difficulty": "oni", - "note_count": 625, - "density_avg": 5.378170289855072, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 596, - "color_complexity": 0.004304697680107563 - }, - { - "songno": "1427", - "difficulty": "oni", - "note_count": 802, - "density_avg": 6.724164825165736, - "density_peak": 14, - "bpm_avg": 172.85785536159602, - "bpm_change": 3, - "scroll_change": 7, - "rhythm_complexity": 774, - "color_complexity": 0.007210905889246595 - }, - { - "songno": "1341", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.022537562604341, - "density_peak": 10, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 36, - "rhythm_complexity": 514, - "color_complexity": 0.0032715521018358376 - }, - { - "songno": "1369", - "difficulty": "oni", - "note_count": 1333, - "density_avg": 8.628180392619107, - "density_peak": 26, - "bpm_avg": 293.294448612153, - "bpm_change": 34, - "scroll_change": 73, - "rhythm_complexity": 1212, - "color_complexity": 0.026552837371460504 - }, - { - "songno": "65", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.283987915407855, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 811, - "color_complexity": 0.01022240041848812 - }, - { - "songno": "831", - "difficulty": "oni", - "note_count": 155, - "density_avg": 2.110328638497653, - "density_peak": 4, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 97, - "color_complexity": 0.00013929702017038287 - }, - { - "songno": "831", - "difficulty": "ura", - "note_count": 390, - "density_avg": 4.896103896103897, - "density_peak": 14, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.001968236276567831 - }, - { - "songno": "71", - "difficulty": "oni", - "note_count": 506, - "density_avg": 5.021374045801527, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.004396389028277388 - }, - { - "songno": "1396", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.311139134089954, - "density_peak": 15, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 541, - "color_complexity": 0.005754106151443266 - }, - { - "songno": "164", - "difficulty": "oni", - "note_count": 702, - "density_avg": 5.973512476007677, - "density_peak": 11, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 644, - "color_complexity": 0.005367313973709004 - }, - { - "songno": "164", - "difficulty": "ura", - "note_count": 824, - "density_avg": 7.011644273832373, - "density_peak": 13, - "bpm_avg": 266, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 768, - "color_complexity": 0.008434488632128357 - }, - { - "songno": "616", - "difficulty": "oni", - "note_count": 706, - "density_avg": 6.154729138539452, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 677, - "color_complexity": 0.004885405373502864 - }, - { - "songno": "1382", - "difficulty": "oni", - "note_count": 230, - "density_avg": 2.795138888888889, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 138, - "color_complexity": 0.00041253739551006734 - }, - { - "songno": "1382", - "difficulty": "ura", - "note_count": 408, - "density_avg": 4.8820512820512825, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 305, - "color_complexity": 0.0018377258416491153 - }, - { - "songno": "1157", - "difficulty": "oni", - "note_count": 444, - "density_avg": 4.742541436464088, - "density_peak": 10, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002446646804012332 - }, - { - "songno": "1157", - "difficulty": "ura", - "note_count": 594, - "density_avg": 5.795218954493964, - "density_peak": 10, - "bpm_avg": 173.11915824915826, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 567, - "color_complexity": 0.003914227134039106 - }, - { - "songno": "1143", - "difficulty": "oni", - "note_count": 391, - "density_avg": 4.858786655169103, - "density_peak": 10, - "bpm_avg": 178.6214833759591, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0012928450790294433 - }, - { - "songno": "399", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "399", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "366", - "difficulty": "oni", - "note_count": 382, - "density_avg": 3.0362292051756006, - "density_peak": 7, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 374, - "color_complexity": 0.0008775127155092593 - }, - { - "songno": "366", - "difficulty": "ura", - "note_count": 724, - "density_avg": 5.733333333333333, - "density_peak": 9, - "bpm_avg": 129, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 722, - "color_complexity": 0.004021803271604949 - }, - { - "songno": "400", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.7301115241635685, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 839, - "color_complexity": 0.010014797892289455 - }, - { - "songno": "400", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 7.68277571251549, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 964, - "color_complexity": 0.014194174235367433 - }, - { - "songno": "1194", - "difficulty": "oni", - "note_count": 435, - "density_avg": 4.693275013668671, - "density_peak": 10, - "bpm_avg": 191.95172413793102, - "bpm_change": 1, - "scroll_change": 18, - "rhythm_complexity": 421, - "color_complexity": 0.0027733587817132146 - }, - { - "songno": "1180", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.829068755439513, - "density_peak": 14, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 592, - "color_complexity": 0.004626618460704637 - }, - { - "songno": "414", - "difficulty": "oni", - "note_count": 692, - "density_avg": 5.750297275733301, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 662, - "color_complexity": 0.00452032040219044 - }, - { - "songno": "414", - "difficulty": "ura", - "note_count": 939, - "density_avg": 7.802787777331747, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 908, - "color_complexity": 0.011284689481677213 - }, - { - "songno": "372", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.7213622291021675, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 668, - "color_complexity": 0.005214235027496703 - }, - { - "songno": "428", - "difficulty": "oni", - "note_count": 840, - "density_avg": 5.928397279609906, - "density_peak": 11, - "bpm_avg": 164.92857142857142, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 763, - "color_complexity": 0.006646954772878754 - }, - { - "songno": "410", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.822945205479452, - "density_peak": 11, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 654, - "color_complexity": 0.006408985514693502 - }, - { - "songno": "1184", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.4989690721649485, - "density_peak": 14, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 726, - "color_complexity": 0.009521952015316769 - }, - { - "songno": "1190", - "difficulty": "oni", - "note_count": 381, - "density_avg": 4.097539012059327, - "density_peak": 14, - "bpm_avg": 146.63976377952756, - "bpm_change": 4, - "scroll_change": 5, - "rhythm_complexity": 338, - "color_complexity": 0.0022999258747490913 - }, - { - "songno": "404", - "difficulty": "oni", - "note_count": 821, - "density_avg": 6.851326566936777, - "density_peak": 13, - "bpm_avg": 169.9844336175398, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 797, - "color_complexity": 0.008049431070957097 - }, - { - "songno": "438", - "difficulty": "oni", - "note_count": 818, - "density_avg": 5.791427477994641, - "density_peak": 14, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.007998437370327547 - }, - { - "songno": "1147", - "difficulty": "oni", - "note_count": 766, - "density_avg": 7.07621247113164, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 652, - "color_complexity": 0.009152072851309225 - }, - { - "songno": "1153", - "difficulty": "oni", - "note_count": 294, - "density_avg": 2.5526976603782336, - "density_peak": 6, - "bpm_avg": 112.0011224489796, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 235, - "color_complexity": 0.000252077545989206 - }, - { - "songno": "389", - "difficulty": "oni", - "note_count": 450, - "density_avg": 4.1273100616016425, - "density_peak": 11, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 388, - "color_complexity": 0.0026050518654572937 - }, - { - "songno": "1386", - "difficulty": "oni", - "note_count": 452, - "density_avg": 4.466666666666667, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 398, - "color_complexity": 0.0027950377672401935 - }, - { - "songno": "612", - "difficulty": "oni", - "note_count": 724, - "density_avg": 5.303291608715808, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 679, - "color_complexity": 0.005978157255408406 - }, - { - "songno": "160", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.04586483390607, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006200499452198458 - }, - { - "songno": "160", - "difficulty": "ura", - "note_count": 713, - "density_avg": 4.839089347079038, - "density_peak": 16, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 674, - "color_complexity": 0.00693128423392695 - }, - { - "songno": "606", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.532051282051282, - "density_peak": 11, - "bpm_avg": 205.63366336633663, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 465, - "color_complexity": 0.0030682981990958996 - }, - { - "songno": "606", - "difficulty": "ura", - "note_count": 798, - "density_avg": 7.161538461538461, - "density_peak": 15, - "bpm_avg": 207.23684210526315, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 749, - "color_complexity": 0.010069282996383962 - }, - { - "songno": "1392", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.4338235294117645, - "density_peak": 11, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 682, - "color_complexity": 0.005502803813450183 - }, - { - "songno": "1392", - "difficulty": "ura", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 17, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 715, - "color_complexity": 0.01452331502908522 - }, - { - "songno": "148", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.8958393113342895, - "density_peak": 17, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 686, - "color_complexity": 0.010113767476029744 - }, - { - "songno": "1345", - "difficulty": "oni", - "note_count": 581, - "density_avg": 4.254989796765805, - "density_peak": 8, - "bpm_avg": 139.0790533562828, - "bpm_change": 45, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.0021638817153075045 - }, - { - "songno": "1345", - "difficulty": "ura", - "note_count": 832, - "density_avg": 6.093203977468415, - "density_peak": 10, - "bpm_avg": 139.34663461538537, - "bpm_change": 45, - "scroll_change": 1, - "rhythm_complexity": 741, - "color_complexity": 0.0056403792611961845 - }, - { - "songno": "49", - "difficulty": "oni", - "note_count": 619, - "density_avg": 4.7220563847429515, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002946306581031739 - }, - { - "songno": "49", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.835820895522389, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 671, - "color_complexity": 0.005567746728227036 - }, - { - "songno": "809", - "difficulty": "oni", - "note_count": 434, - "density_avg": 4.801960784313726, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.00219817331725675 - }, - { - "songno": "1423", - "difficulty": "oni", - "note_count": 400, - "density_avg": 4.5595854922279795, - "density_peak": 8, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 254, - "color_complexity": 0.0018558804431185695 - }, - { - "songno": "1437", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.769278606965173, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 760, - "color_complexity": 0.009505697225651586 - }, - { - "songno": "1351", - "difficulty": "oni", - "note_count": 1025, - "density_avg": 6.603465851172274, - "density_peak": 13, - "bpm_avg": 307.7531707317073, - "bpm_change": 4, - "scroll_change": 55, - "rhythm_complexity": 912, - "color_complexity": 0.012679539958429393 - }, - { - "songno": "1379", - "difficulty": "oni", - "note_count": 1057, - "density_avg": 7.084450402144772, - "density_peak": 13, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 791, - "color_complexity": 0.013184509036100125 - }, - { - "songno": "835", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.739904988123516, - "density_peak": 14, - "bpm_avg": 227, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.007293012462853437 - }, - { - "songno": "61", - "difficulty": "oni", - "note_count": 594, - "density_avg": 5.224270744221638, - "density_peak": 11, - "bpm_avg": 199.80547138047217, - "bpm_change": 6, - "scroll_change": 5, - "rhythm_complexity": 415, - "color_complexity": 0.0031743616536387127 - }, - { - "songno": "821", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.032917532917533, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 456, - "color_complexity": 0.0030350479749134507 - }, - { - "songno": "766", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.843888888888889, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002595659520017682 - }, - { - "songno": "982", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.161106905867197, - "density_peak": 15, - "bpm_avg": 199.17582159624416, - "bpm_change": 26, - "scroll_change": 24, - "rhythm_complexity": 744, - "color_complexity": 0.011557347918342226 - }, - { - "songno": "1231", - "difficulty": "oni", - "note_count": 645, - "density_avg": 4.683928571428571, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 543, - "color_complexity": 0.0029976610517622594 - }, - { - "songno": "969", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.723751686909583, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021041066572503823 - }, - { - "songno": "1225", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.10645825622744, - "density_peak": 10, - "bpm_avg": 135.00590361445848, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.0021983715933300133 - }, - { - "songno": "1225", - "difficulty": "ura", - "note_count": 641, - "density_avg": 5.33180576644295, - "density_peak": 12, - "bpm_avg": 135.03413416536702, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.0033193741298001116 - }, - { - "songno": "941", - "difficulty": "oni", - "note_count": 551, - "density_avg": 5.225446009389672, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.003752197212831999 - }, - { - "songno": "799", - "difficulty": "oni", - "note_count": 531, - "density_avg": 4.2548076923076925, - "density_peak": 8, - "bpm_avg": 199.90583804143125, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 319, - "color_complexity": 0.001668554489974818 - }, - { - "songno": "955", - "difficulty": "oni", - "note_count": 900, - "density_avg": 8.084696823869105, - "density_peak": 15, - "bpm_avg": 271.9111111111111, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 873, - "color_complexity": 0.010041976962576167 - }, - { - "songno": "1219", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.358890689909964, - "density_peak": 11, - "bpm_avg": 166.09129263913826, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 512, - "color_complexity": 0.0027964857210582145 - }, - { - "songno": "1219", - "difficulty": "ura", - "note_count": 825, - "density_avg": 6.456166641249049, - "density_peak": 12, - "bpm_avg": 167.29315151515152, - "bpm_change": 7, - "scroll_change": 86, - "rhythm_complexity": 794, - "color_complexity": 0.008253724780231682 - }, - { - "songno": "202", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 11, - "bpm_avg": 229.2149019607842, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.004982959733910084 - }, - { - "songno": "202", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.225141631210587, - "density_peak": 13, - "bpm_avg": 230.97896732026177, - "bpm_change": 7, - "scroll_change": 6, - "rhythm_complexity": 619, - "color_complexity": 0.008060110087944019 - }, - { - "songno": "570", - "difficulty": "oni", - "note_count": 899, - "density_avg": 7.320846905537459, - "density_peak": 15, - "bpm_avg": 194.6496106785317, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 808, - "color_complexity": 0.010651287823167377 - }, - { - "songno": "558", - "difficulty": "oni", - "note_count": 704, - "density_avg": 6.253389434315101, - "density_peak": 15, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 655, - "color_complexity": 0.006618036168276772 - }, - { - "songno": "1033", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.036475409836066, - "density_peak": 10, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 402, - "color_complexity": 0.0007345935262122296 - }, - { - "songno": "1033", - "difficulty": "ura", - "note_count": 784, - "density_avg": 7.169426751592357, - "density_peak": 16, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 727, - "color_complexity": 0.009556082350817993 - }, - { - "songno": "1027", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.6757373820173465, - "density_peak": 8, - "bpm_avg": 267.8518252595155, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 532, - "color_complexity": 0.0025686427369981985 - }, - { - "songno": "1027", - "difficulty": "ura", - "note_count": 847, - "density_avg": 6.9474783247378005, - "density_peak": 13, - "bpm_avg": 262.02409681227863, - "bpm_change": 5, - "scroll_change": 1, - "rhythm_complexity": 773, - "color_complexity": 0.0067428453359066704 - }, - { - "songno": "1026", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.5561904761904755, - "density_peak": 9, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.002528991509849881 - }, - { - "songno": "1032", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.715848214285714, - "density_peak": 10, - "bpm_avg": 316.6707530647986, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 523, - "color_complexity": 0.0019617138743353375 - }, - { - "songno": "1032", - "difficulty": "ura", - "note_count": 1074, - "density_avg": 8.870089285714284, - "density_peak": 23, - "bpm_avg": 317.8072625698324, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 973, - "color_complexity": 0.018461684761804573 - }, - { - "songno": "559", - "difficulty": "oni", - "note_count": 664, - "density_avg": 5.632826187183033, - "density_peak": 11, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 590, - "color_complexity": 0.005906721880753596 - }, - { - "songno": "571", - "difficulty": "oni", - "note_count": 899, - "density_avg": 6.6527169697028, - "density_peak": 13, - "bpm_avg": 226.01601779755273, - "bpm_change": 2, - "scroll_change": 31, - "rhythm_complexity": 842, - "color_complexity": 0.0117320719217324 - }, - { - "songno": "203", - "difficulty": "oni", - "note_count": 567, - "density_avg": 5.049520976000035, - "density_peak": 9, - "bpm_avg": 170.98465608465608, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 546, - "color_complexity": 0.003207393256157052 - }, - { - "songno": "203", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.812845761269889, - "density_peak": 12, - "bpm_avg": 170.9886274509804, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 756, - "color_complexity": 0.009111100663275726 - }, - { - "songno": "565", - "difficulty": "oni", - "note_count": 585, - "density_avg": 4.936708860759494, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 542, - "color_complexity": 0.0038411581593529834 - }, - { - "songno": "1218", - "difficulty": "oni", - "note_count": 281, - "density_avg": 3.2233468286099862, - "density_peak": 7, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 238, - "color_complexity": 0.0005612459415740576 - }, - { - "songno": "1218", - "difficulty": "ura", - "note_count": 599, - "density_avg": 6.748177601060305, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.005773923137481609 - }, - { - "songno": "954", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.254587869362364, - "density_peak": 14, - "bpm_avg": 280.5296803652968, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 854, - "color_complexity": 0.007469683954205944 - }, - { - "songno": "954", - "difficulty": "ura", - "note_count": 1259, - "density_avg": 10.426399688958009, - "density_peak": 18, - "bpm_avg": 280.6799046862589, - "bpm_change": 1, - "scroll_change": 5, - "rhythm_complexity": 1197, - "color_complexity": 0.030354191089788922 - }, - { - "songno": "798", - "difficulty": "oni", - "note_count": 903, - "density_avg": 6.911903686482896, - "density_peak": 15, - "bpm_avg": 190.6234772978959, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 838, - "color_complexity": 0.012583282845687502 - }, - { - "songno": "940", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.815789473684211, - "density_peak": 15, - "bpm_avg": 160.6177606177606, - "bpm_change": 2, - "scroll_change": 39, - "rhythm_complexity": 621, - "color_complexity": 0.007578414847205498 - }, - { - "songno": "968", - "difficulty": "oni", - "note_count": 877, - "density_avg": 6.878431372549019, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 793, - "color_complexity": 0.008657901298085332 - }, - { - "songno": "1230", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.8243204577968526, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 291, - "color_complexity": 0.0015480482903287784 - }, - { - "songno": "997", - "difficulty": "oni", - "note_count": 590, - "density_avg": 5.353088158581116, - "density_peak": 9, - "bpm_avg": 173.92999999999762, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 574, - "color_complexity": 0.0035676447379020533 - }, - { - "songno": "997", - "difficulty": "ura", - "note_count": 817, - "density_avg": 7.412666145018257, - "density_peak": 12, - "bpm_avg": 173.92999999999637, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 759, - "color_complexity": 0.007633115582408368 - }, - { - "songno": "983", - "difficulty": "oni", - "note_count": 965, - "density_avg": 7.744537147397697, - "density_peak": 14, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.012424795118273716 - }, - { - "songno": "773", - "difficulty": "oni", - "note_count": 487, - "density_avg": 5.223913909379468, - "density_peak": 8, - "bpm_avg": 166.05244353182835, - "bpm_change": 16, - "scroll_change": 2, - "rhythm_complexity": 462, - "color_complexity": 0.0030853450543817137 - }, - { - "songno": "820", - "difficulty": "oni", - "note_count": 1096, - "density_avg": 8.154568368778666, - "density_peak": 17, - "bpm_avg": 231.02189781021897, - "bpm_change": 13, - "scroll_change": 16, - "rhythm_complexity": 1036, - "color_complexity": 0.014011522543783014 - }, - { - "songno": "60", - "difficulty": "oni", - "note_count": 986, - "density_avg": 7.268738009882184, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 946, - "color_complexity": 0.01067869338748385 - }, - { - "songno": "60", - "difficulty": "ura", - "note_count": 942, - "density_avg": 6.944372419177503, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 897, - "color_complexity": 0.00877543837012501 - }, - { - "songno": "834", - "difficulty": "oni", - "note_count": 772, - "density_avg": 6.412097117997289, - "density_peak": 14, - "bpm_avg": 257.55440414507774, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 663, - "color_complexity": 0.006697433702415283 - }, - { - "songno": "834", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.99109048522911, - "density_peak": 19, - "bpm_avg": 256.5271191135734, - "bpm_change": 12, - "scroll_change": 3, - "rhythm_complexity": 951, - "color_complexity": 0.021677678208683868 - }, - { - "songno": "74", - "difficulty": "oni", - "note_count": 634, - "density_avg": 4.7401869158878505, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 603, - "color_complexity": 0.0029849498006061866 - }, - { - "songno": "74", - "difficulty": "ura", - "note_count": 1007, - "density_avg": 7.540717628705148, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 988, - "color_complexity": 0.010266711597571655 - }, - { - "songno": "1378", - "difficulty": "oni", - "note_count": 913, - "density_avg": 7.310155920775389, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.012625310860513137 - }, - { - "songno": "1436", - "difficulty": "oni", - "note_count": 885, - "density_avg": 5.844629822732013, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.008381398663016416 - }, - { - "songno": "1350", - "difficulty": "oni", - "note_count": 1405, - "density_avg": 10.253251445086708, - "density_peak": 21, - "bpm_avg": 303, - "bpm_change": 0, - "scroll_change": 83, - "rhythm_complexity": 1315, - "color_complexity": 0.033778714032070195 - }, - { - "songno": "808", - "difficulty": "oni", - "note_count": 429, - "density_avg": 5.720000000000001, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0037679802029042383 - }, - { - "songno": "48", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.679694862881422, - "density_peak": 8, - "bpm_avg": 114.94999999999894, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 426, - "color_complexity": 0.002589514654307961 - }, - { - "songno": "48", - "difficulty": "ura", - "note_count": 761, - "density_avg": 6.765425367362723, - "density_peak": 11, - "bpm_avg": 114.94999999999837, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.003362280746651282 - }, - { - "songno": "1344", - "difficulty": "oni", - "note_count": 505, - "density_avg": 4.141179078014185, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 442, - "color_complexity": 0.0006807840676662876 - }, - { - "songno": "1344", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.9379432624113475, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 914, - "color_complexity": 0.008693233077475998 - }, - { - "songno": "1422", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.442182573873539, - "density_peak": 11, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 431, - "color_complexity": 0.002190098349471223 - }, - { - "songno": "149", - "difficulty": "oni", - "note_count": 437, - "density_avg": 4.0205237084217975, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 311, - "color_complexity": 0.00209076333778264 - }, - { - "songno": "149", - "difficulty": "ura", - "note_count": 600, - "density_avg": 5.520169851380043, - "density_peak": 13, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 547, - "color_complexity": 0.0036102428261901593 - }, - { - "songno": "161", - "difficulty": "oni", - "note_count": 336, - "density_avg": 3.7333333333333334, - "density_peak": 7, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.0013565827628428653 - }, - { - "songno": "1393", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.971698113207547, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 436, - "color_complexity": 0.0021725238743622506 - }, - { - "songno": "1393", - "difficulty": "ura", - "note_count": 694, - "density_avg": 6.547169811320755, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.005922299786352035 - }, - { - "songno": "607", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.0960901259111995, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0012263374751473608 - }, - { - "songno": "613", - "difficulty": "oni", - "note_count": 489, - "density_avg": 3.5018855007411624, - "density_peak": 10, - "bpm_avg": 181.9869120654395, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 421, - "color_complexity": 0.0016627435161517931 - }, - { - "songno": "1387", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.325037707390649, - "density_peak": 9, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 506, - "color_complexity": 0.0019024655563664391 - }, - { - "songno": "1387", - "difficulty": "ura", - "note_count": 828, - "density_avg": 6.537952114111055, - "density_peak": 12, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 787, - "color_complexity": 0.006718393901497159 - }, - { - "songno": "388", - "difficulty": "oni", - "note_count": 797, - "density_avg": 7.966016991504248, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.00866014540466391 - }, - { - "songno": "1152", - "difficulty": "oni", - "note_count": 494, - "density_avg": 5.145833333333333, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.003386602261998105 - }, - { - "songno": "1146", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1146", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "405", - "difficulty": "oni", - "note_count": 488, - "density_avg": 4.880277556692487, - "density_peak": 9, - "bpm_avg": 149.98304303278687, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.0017754095399484093 - }, - { - "songno": "405", - "difficulty": "ura", - "note_count": 889, - "density_avg": 8.890505630941846, - "density_peak": 11, - "bpm_avg": 150.0380787401562, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 861, - "color_complexity": 0.011729459412475754 - }, - { - "songno": "1191", - "difficulty": "oni", - "note_count": 505, - "density_avg": 5.781144781144781, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 487, - "color_complexity": 0.003892441736116305 - }, - { - "songno": "363", - "difficulty": "oni", - "note_count": 737, - "density_avg": 6.38548876118563, - "density_peak": 11, - "bpm_avg": 158.00256445047518, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 646, - "color_complexity": 0.007416656936152684 - }, - { - "songno": "377", - "difficulty": "oni", - "note_count": 361, - "density_avg": 4.356490541422048, - "density_peak": 10, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0015329553410808733 - }, - { - "songno": "1185", - "difficulty": "oni", - "note_count": 613, - "density_avg": 4.515576778487833, - "density_peak": 20, - "bpm_avg": 196.06851549755302, - "bpm_change": 29, - "scroll_change": 29, - "rhythm_complexity": 509, - "color_complexity": 0 - }, - { - "songno": "411", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.243449362884388, - "density_peak": 10, - "bpm_avg": 137.98865013774105, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0015891950551217044 - }, - { - "songno": "361", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 12, - "bpm_avg": 224.0035555555554, - "bpm_change": 7, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.005429825589896879 - }, - { - "songno": "361", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.432425926584912, - "density_peak": 14, - "bpm_avg": 223.99585620915028, - "bpm_change": 5, - "scroll_change": 17, - "rhythm_complexity": 726, - "color_complexity": 0.006034966973018688 - }, - { - "songno": "1193", - "difficulty": "oni", - "note_count": 446, - "density_avg": 4.53677621283255, - "density_peak": 8, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.002100814133282944 - }, - { - "songno": "407", - "difficulty": "oni", - "note_count": 959, - "density_avg": 8.196581196581198, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 941, - "color_complexity": 0.010258440000000094 - }, - { - "songno": "413", - "difficulty": "oni", - "note_count": 544, - "density_avg": 4.887506092452432, - "density_peak": 10, - "bpm_avg": 138.01525735294103, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 474, - "color_complexity": 0.002721927968452235 - }, - { - "songno": "1187", - "difficulty": "oni", - "note_count": 192, - "density_avg": 3.4224598930481283, - "density_peak": 6, - "bpm_avg": 100, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 170, - "color_complexity": 0.0003872417725260037 - }, - { - "songno": "375", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.309688195991091, - "density_peak": 15, - "bpm_avg": 222.2000000000011, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 678, - "color_complexity": 0.009954832201709802 - }, - { - "songno": "349", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.582089552238805, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 703, - "color_complexity": 0.005015391229360386 - }, - { - "songno": "1150", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.166735966735967, - "density_peak": 8, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 417, - "color_complexity": 0.001922157761224489 - }, - { - "songno": "1144", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.329027091952489, - "density_peak": 7, - "bpm_avg": 203.18540433925048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 443, - "color_complexity": 0.0011230039449595922 - }, - { - "songno": "1144", - "difficulty": "ura", - "note_count": 1177, - "density_avg": 7.732047961118381, - "density_peak": 15, - "bpm_avg": 202.86108751062022, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 1052, - "color_complexity": 0.015143964260216507 - }, - { - "songno": "1178", - "difficulty": "oni", - "note_count": 357, - "density_avg": 3.82713567839196, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0017277822024307577 - }, - { - "songno": "605", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.069369978417022, - "density_peak": 11, - "bpm_avg": 204.01119196988705, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 747, - "color_complexity": 0.006775862050350308 - }, - { - "songno": "1391", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.342639712534403, - "density_peak": 13, - "bpm_avg": 206.492641261498, - "bpm_change": 26, - "scroll_change": 26, - "rhythm_complexity": 652, - "color_complexity": 0.006252435602047557 - }, - { - "songno": "1391", - "difficulty": "ura", - "note_count": 1015, - "density_avg": 8.459631154037345, - "density_peak": 19, - "bpm_avg": 211.71536945812818, - "bpm_change": 26, - "scroll_change": 28, - "rhythm_complexity": 904, - "color_complexity": 0.015520762037939024 - }, - { - "songno": "163", - "difficulty": "oni", - "note_count": 704, - "density_avg": 5.723577235772358, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 676, - "color_complexity": 0.004528000525338739 - }, - { - "songno": "163", - "difficulty": "ura", - "note_count": 754, - "density_avg": 6.130081300813008, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 718, - "color_complexity": 0.007651195696750384 - }, - { - "songno": "177", - "difficulty": "oni", - "note_count": 273, - "density_avg": 2.7215447154471546, - "density_peak": 6, - "bpm_avg": 143.6153846153846, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 238, - "color_complexity": 0.0009223871181621666 - }, - { - "songno": "1385", - "difficulty": "oni", - "note_count": 350, - "density_avg": 3.3966244725738393, - "density_peak": 7, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 322, - "color_complexity": 0.0008611307229117726 - }, - { - "songno": "611", - "difficulty": "oni", - "note_count": 365, - "density_avg": 3.85369532428356, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0018168242793145993 - }, - { - "songno": "89", - "difficulty": "oni", - "note_count": 630, - "density_avg": 6.9792864121685545, - "density_peak": 11, - "bpm_avg": 149.78647619047624, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 613, - "color_complexity": 0.008537524954666779 - }, - { - "songno": "639", - "difficulty": "oni", - "note_count": 701, - "density_avg": 5.1597578384888045, - "density_peak": 11, - "bpm_avg": 159.8883452211127, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 641, - "color_complexity": 0.0049019681003699056 - }, - { - "songno": "1352", - "difficulty": "oni", - "note_count": 976, - "density_avg": 6.432490203063769, - "density_peak": 19, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.009673730318733411 - }, - { - "songno": "1434", - "difficulty": "oni", - "note_count": 987, - "density_avg": 7.048901000297321, - "density_peak": 17, - "bpm_avg": 246.48276595745295, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 944, - "color_complexity": 0.013522636875938077 - }, - { - "songno": "1420", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.794391025641026, - "density_peak": 11, - "bpm_avg": 106, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 228, - "color_complexity": 0.0008096154319094754 - }, - { - "songno": "1346", - "difficulty": "oni", - "note_count": 731, - "density_avg": 5.2123478260869565, - "density_peak": 13, - "bpm_avg": 246, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 656, - "color_complexity": 0.005445417045367914 - }, - { - "songno": "62", - "difficulty": "oni", - "note_count": 484, - "density_avg": 4.870440251572328, - "density_peak": 13, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 405, - "color_complexity": 0.0024019322369124084 - }, - { - "songno": "822", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.7534246575342465, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.009264710511252189 - }, - { - "songno": "1408", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.885380116959064, - "density_peak": 10, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.004298713520987655 - }, - { - "songno": "76", - "difficulty": "oni", - "note_count": 414, - "density_avg": 4.241803278688524, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 335, - "color_complexity": 0.002280557039890196 - }, - { - "songno": "76", - "difficulty": "ura", - "note_count": 604, - "density_avg": 6.163265306122449, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 541, - "color_complexity": 0.00503402827380954 - }, - { - "songno": "771", - "difficulty": "oni", - "note_count": 509, - "density_avg": 3.728937728937729, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.002259716636599273 - }, - { - "songno": "771", - "difficulty": "ura", - "note_count": 892, - "density_avg": 6.534798534798535, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 833, - "color_complexity": 0.010346595173235348 - }, - { - "songno": "765", - "difficulty": "oni", - "note_count": 1396, - "density_avg": 10.449101796407186, - "density_peak": 21, - "bpm_avg": 297.8510028653295, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 1306, - "color_complexity": 0.02941860481229533 - }, - { - "songno": "765", - "difficulty": "ura", - "note_count": 1582, - "density_avg": 11.841317365269461, - "density_peak": 21, - "bpm_avg": 298.90960809102404, - "bpm_change": 4, - "scroll_change": 10, - "rhythm_complexity": 1485, - "color_complexity": 0.043387231100353994 - }, - { - "songno": "995", - "difficulty": "oni", - "note_count": 761, - "density_avg": 6.473100172711572, - "density_peak": 12, - "bpm_avg": 197, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.006521679596126006 - }, - { - "songno": "759", - "difficulty": "oni", - "note_count": 840, - "density_avg": 7.017543859649123, - "density_peak": 14, - "bpm_avg": 196.54761904761904, - "bpm_change": 1, - "scroll_change": 20, - "rhythm_complexity": 799, - "color_complexity": 0.010942669400665031 - }, - { - "songno": "981", - "difficulty": "oni", - "note_count": 511, - "density_avg": 4.228554778554779, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 462, - "color_complexity": 0.0014429745157498416 - }, - { - "songno": "981", - "difficulty": "ura", - "note_count": 715, - "density_avg": 5.916666666666666, - "density_peak": 11, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 681, - "color_complexity": 0.005236517407400119 - }, - { - "songno": "1226", - "difficulty": "oni", - "note_count": 443, - "density_avg": 3.719566010641685, - "density_peak": 9, - "bpm_avg": 131.99189616252826, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 341, - "color_complexity": 0.0014030523666070758 - }, - { - "songno": "1226", - "difficulty": "ura", - "note_count": 716, - "density_avg": 5.70659106816367, - "density_peak": 9, - "bpm_avg": 131.97696927374292, - "bpm_change": 3, - "scroll_change": 0, - "rhythm_complexity": 658, - "color_complexity": 0.004716799359479074 - }, - { - "songno": "1232", - "difficulty": "oni", - "note_count": 845, - "density_avg": 6.020356234096692, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.0068927280195447355 - }, - { - "songno": "956", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.708198489751888, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 244, - "color_complexity": 0.0007476113189939049 - }, - { - "songno": "956", - "difficulty": "ura", - "note_count": 444, - "density_avg": 5.948553054662379, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0029731722608024643 - }, - { - "songno": "942", - "difficulty": "oni", - "note_count": 649, - "density_avg": 5.065656565656566, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 622, - "color_complexity": 0.004019373659124446 - }, - { - "songno": "215", - "difficulty": "oni", - "note_count": 773, - "density_avg": 6.62382176520994, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.00825285185185184 - }, - { - "songno": "573", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.470668485675307, - "density_peak": 13, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 677, - "color_complexity": 0.01010908632546473 - }, - { - "songno": "567", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.112097353169378, - "density_peak": 10, - "bpm_avg": 142.4812673611111, - "bpm_change": 3, - "scroll_change": 36, - "rhythm_complexity": 505, - "color_complexity": 0.0038046491252858384 - }, - { - "songno": "1024", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.809575625680087, - "density_peak": 8, - "bpm_avg": 132.99485861182518, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 352, - "color_complexity": 0.001556605212139685 - }, - { - "songno": "1030", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.509643605870021, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 595, - "color_complexity": 0.004070292505316198 - }, - { - "songno": "1018", - "difficulty": "oni", - "note_count": 575, - "density_avg": 5.05787037037037, - "density_peak": 9, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.0034068980769235363 - }, - { - "songno": "1019", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.457646048109966, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 16, - "rhythm_complexity": 516, - "color_complexity": 0.0036476983035874555 - }, - { - "songno": "1031", - "difficulty": "oni", - "note_count": 494, - "density_avg": 3.9919191919191914, - "density_peak": 7, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0015457317692153724 - }, - { - "songno": "1031", - "difficulty": "ura", - "note_count": 954, - "density_avg": 7.709090909090909, - "density_peak": 18, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 795, - "color_complexity": 0.011710923280119577 - }, - { - "songno": "566", - "difficulty": "oni", - "note_count": 672, - "density_avg": 5.976081798974448, - "density_peak": 12, - "bpm_avg": 168.5343288690476, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 613, - "color_complexity": 0.007144373517678283 - }, - { - "songno": "200", - "difficulty": "oni", - "note_count": 346, - "density_avg": 4.017482061317677, - "density_peak": 7, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0009276976312232294 - }, - { - "songno": "200", - "difficulty": "ura", - "note_count": 530, - "density_avg": 6.153946510110893, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.005688751915759429 - }, - { - "songno": "214", - "difficulty": "oni", - "note_count": 836, - "density_avg": 7.497757847533633, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 820, - "color_complexity": 0.011018134776522194 - }, - { - "songno": "572", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.8618657098923626, - "density_peak": 12, - "bpm_avg": 202.66666666666666, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 678, - "color_complexity": 0.0096185216986233 - }, - { - "songno": "943", - "difficulty": "oni", - "note_count": 723, - "density_avg": 6.4257434564709035, - "density_peak": 16, - "bpm_avg": 140.7966804979253, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 593, - "color_complexity": 0.009071796814678519 - }, - { - "songno": "1233", - "difficulty": "oni", - "note_count": 423, - "density_avg": 4.648351648351649, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.001873767970042872 - }, - { - "songno": "1227", - "difficulty": "oni", - "note_count": 987, - "density_avg": 6.811594202898551, - "density_peak": 18, - "bpm_avg": 255.52178318135765, - "bpm_change": 4, - "scroll_change": 17, - "rhythm_complexity": 869, - "color_complexity": 0.00964452988735289 - }, - { - "songno": "1227", - "difficulty": "ura", - "note_count": 1423, - "density_avg": 9.834139599170697, - "density_peak": 22, - "bpm_avg": 258.9248067463106, - "bpm_change": 8, - "scroll_change": 15, - "rhythm_complexity": 1235, - "color_complexity": 0.043274336087493655 - }, - { - "songno": "980", - "difficulty": "oni", - "note_count": 668, - "density_avg": 6.879240277777777, - "density_peak": 12, - "bpm_avg": 177.95399999999867, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 548, - "color_complexity": 0.009504487694870448 - }, - { - "songno": "758", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 7.800658616904501, - "density_peak": 19, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 973, - "color_complexity": 0.014202202064665746 - }, - { - "songno": "994", - "difficulty": "oni", - "note_count": 707, - "density_avg": 6.721330956625074, - "density_peak": 13, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 652, - "color_complexity": 0.00756823602083857 - }, - { - "songno": "764", - "difficulty": "oni", - "note_count": 1022, - "density_avg": 8.871527777777779, - "density_peak": 18, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 21, - "rhythm_complexity": 915, - "color_complexity": 0.015127085085754683 - }, - { - "songno": "770", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.8833545577798025, - "density_peak": 12, - "bpm_avg": 190.0111415525114, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.008563301986770076 - }, - { - "songno": "823", - "difficulty": "oni", - "note_count": 656, - "density_avg": 5.473945849977807, - "density_peak": 12, - "bpm_avg": 186.0655487804878, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 606, - "color_complexity": 0.005156101571918044 - }, - { - "songno": "63", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.391256830601093, - "density_peak": 10, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 410, - "color_complexity": 0.0026968286473532726 - }, - { - "songno": "1409", - "difficulty": "oni", - "note_count": 323, - "density_avg": 3.0238297872340425, - "density_peak": 7, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 271, - "color_complexity": 0.0008282608111890808 - }, - { - "songno": "1421", - "difficulty": "oni", - "note_count": 884, - "density_avg": 7.3027674514663365, - "density_peak": 14, - "bpm_avg": 194.57013574660633, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 769, - "color_complexity": 0.008397186902165423 - }, - { - "songno": "1347", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.503192279138827, - "density_peak": 11, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.00510742870214163 - }, - { - "songno": "1353", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.76568848758465, - "density_peak": 10, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.001585119404761899 - }, - { - "songno": "1353", - "difficulty": "ura", - "note_count": 584, - "density_avg": 6.8550790067720095, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 505, - "color_complexity": 0.005471040528058314 - }, - { - "songno": "1435", - "difficulty": "oni", - "note_count": 422, - "density_avg": 5.223066104078763, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.002570878933333334 - }, - { - "songno": "88", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.96455876221774, - "density_peak": 12, - "bpm_avg": 166.00569892473132, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 509, - "color_complexity": 0.004537288316077771 - }, - { - "songno": "610", - "difficulty": "oni", - "note_count": 596, - "density_avg": 5.5700934579439245, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 550, - "color_complexity": 0.004806449094815463 - }, - { - "songno": "1384", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.827655536627049, - "density_peak": 14, - "bpm_avg": 246.40949324324822, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 849, - "color_complexity": 0.008786793400270556 - }, - { - "songno": "1390", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.50950179763739, - "density_peak": 11, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 591, - "color_complexity": 0.001396942964380191 - }, - { - "songno": "1390", - "difficulty": "ura", - "note_count": 763, - "density_avg": 6.6620441705187465, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 42, - "rhythm_complexity": 652, - "color_complexity": 0.008686661921369524 - }, - { - "songno": "604", - "difficulty": "oni", - "note_count": 229, - "density_avg": 2.5008964955175226, - "density_peak": 5, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00021520105898491113 - }, - { - "songno": "1179", - "difficulty": "oni", - "note_count": 479, - "density_avg": 5.803006392169991, - "density_peak": 10, - "bpm_avg": 151.90814196242172, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0026358404403124076 - }, - { - "songno": "1145", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.744084267255098, - "density_peak": 13, - "bpm_avg": 368.3345565749239, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 587, - "color_complexity": 0.0068985530022572595 - }, - { - "songno": "1145", - "difficulty": "ura", - "note_count": 1024, - "density_avg": 8.703570520889851, - "density_peak": 16, - "bpm_avg": 365.10408203124933, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 814, - "color_complexity": 0.016398410846007964 - }, - { - "songno": "1151", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.7010574346346052, - "density_peak": 8, - "bpm_avg": 164.10877192982457, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 274, - "color_complexity": 0.0007792538682939821 - }, - { - "songno": "348", - "difficulty": "oni", - "note_count": 577, - "density_avg": 4.695196078431372, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 573, - "color_complexity": 0.002620796728395067 - }, - { - "songno": "348", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.225, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 761, - "color_complexity": 0.0065780997556622095 - }, - { - "songno": "1186", - "difficulty": "oni", - "note_count": 321, - "density_avg": 2.3615234375000003, - "density_peak": 6, - "bpm_avg": 113, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 292, - "color_complexity": 0.00048239674822057226 - }, - { - "songno": "412", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.963358778625953, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 610, - "color_complexity": 0.004905915782312931 - }, - { - "songno": "374", - "difficulty": "oni", - "note_count": 510, - "density_avg": 5.872506970010821, - "density_peak": 11, - "bpm_avg": 180.7050921568633, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 443, - "color_complexity": 0.003949187453729018 - }, - { - "songno": "360", - "difficulty": "oni", - "note_count": 898, - "density_avg": 7.42532299741602, - "density_peak": 15, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 838, - "color_complexity": 0.01274466297242181 - }, - { - "songno": "406", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.748883928571429, - "density_peak": 10, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.003863672456314922 - }, - { - "songno": "1192", - "difficulty": "oni", - "note_count": 490, - "density_avg": 5.608187134502924, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 470, - "color_complexity": 0.003077949296741548 - }, - { - "songno": "423", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.930926642375808, - "density_peak": 11, - "bpm_avg": 163.00267080745343, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 600, - "color_complexity": 0.005188939088258996 - }, - { - "songno": "345", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.2950688073394496, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 343, - "color_complexity": 0.0010938347276067246 - }, - { - "songno": "351", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.345685547908947, - "density_peak": 14, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.005930428435866911 - }, - { - "songno": "437", - "difficulty": "oni", - "note_count": 594, - "density_avg": 4.1861482381530974, - "density_peak": 8, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 566, - "color_complexity": 0.0022255143667800547 - }, - { - "songno": "1148", - "difficulty": "oni", - "note_count": 384, - "density_avg": 3.4962962962962965, - "density_peak": 7, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0015761175381449103 - }, - { - "songno": "1148", - "difficulty": "ura", - "note_count": 656, - "density_avg": 5.972839506172839, - "density_peak": 8, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.005057351511111088 - }, - { - "songno": "1174", - "difficulty": "oni", - "note_count": 827, - "density_avg": 5.914183551847437, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 801, - "color_complexity": 0.008512418611880585 - }, - { - "songno": "386", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.6410256410256405, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 762, - "color_complexity": 0.00443600205268271 - }, - { - "songno": "392", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.74085335737041, - "density_peak": 15, - "bpm_avg": 200.4470588235294, - "bpm_change": 6, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.0087246400278549 - }, - { - "songno": "1160", - "difficulty": "oni", - "note_count": 615, - "density_avg": 5.321244477172312, - "density_peak": 13, - "bpm_avg": 187.51869918699188, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 560, - "color_complexity": 0.005178837992605135 - }, - { - "songno": "85", - "difficulty": "oni", - "note_count": 734, - "density_avg": 4.710644870671397, - "density_peak": 10, - "bpm_avg": 139.63044406023434, - "bpm_change": 39, - "scroll_change": 22, - "rhythm_complexity": 618, - "color_complexity": 0.004258318516839943 - }, - { - "songno": "1389", - "difficulty": "oni", - "note_count": 344, - "density_avg": 3.9564738292011024, - "density_peak": 7, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0011979116004535188 - }, - { - "songno": "91", - "difficulty": "oni", - "note_count": 375, - "density_avg": 2.9239914693398954, - "density_peak": 11, - "bpm_avg": 157.2945066666667, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 243, - "color_complexity": 0.0013348097276337466 - }, - { - "songno": "609", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.302164872578523, - "density_peak": 11, - "bpm_avg": 178.66739606126916, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 361, - "color_complexity": 0.004008381717026706 - }, - { - "songno": "621", - "difficulty": "oni", - "note_count": 1062, - "density_avg": 6.972727272727273, - "density_peak": 14, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1029, - "color_complexity": 0.012982303295915747 - }, - { - "songno": "635", - "difficulty": "oni", - "note_count": 686, - "density_avg": 5.954122752634842, - "density_peak": 13, - "bpm_avg": 146.3265306122449, - "bpm_change": 9, - "scroll_change": 7, - "rhythm_complexity": 653, - "color_complexity": 0.006937686603298827 - }, - { - "songno": "52", - "difficulty": "oni", - "note_count": 748, - "density_avg": 5.337868130259788, - "density_peak": 13, - "bpm_avg": 195.03200000000328, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.00411598638198618 - }, - { - "songno": "1438", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.586387434554974, - "density_peak": 13, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.007446743023849206 - }, - { - "songno": "1410", - "difficulty": "oni", - "note_count": 433, - "density_avg": 5.073697193956213, - "density_peak": 9, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 411, - "color_complexity": 0.0018708826151030533 - }, - { - "songno": "184", - "difficulty": "oni", - "note_count": 580, - "density_avg": 4.248062015503876, - "density_peak": 9, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0027366235950752205 - }, - { - "songno": "184", - "difficulty": "ura", - "note_count": 765, - "density_avg": 5.603047313552526, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.005842569301827004 - }, - { - "songno": "1376", - "difficulty": "oni", - "note_count": 275, - "density_avg": 2.328510182207931, - "density_peak": 5, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 241, - "color_complexity": 0.0005411215876251803 - }, - { - "songno": "1362", - "difficulty": "oni", - "note_count": 542, - "density_avg": 6.114162985219604, - "density_peak": 10, - "bpm_avg": 170.5369003690037, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 363, - "color_complexity": 0.0030069315794352927 - }, - { - "songno": "190", - "difficulty": "oni", - "note_count": 929, - "density_avg": 5.495909759732159, - "density_peak": 13, - "bpm_avg": 179.31754574811626, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 774, - "color_complexity": 0.006731735206776709 - }, - { - "songno": "1404", - "difficulty": "oni", - "note_count": 829, - "density_avg": 6.101776649746192, - "density_peak": 16, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.008343272416875415 - }, - { - "songno": "755", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.996951219512195, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 763, - "color_complexity": 0.007914424640934259 - }, - { - "songno": "741", - "difficulty": "oni", - "note_count": 386, - "density_avg": 3.8722280887011618, - "density_peak": 8, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 209, - "color_complexity": 0.0009244815196446407 - }, - { - "songno": "741", - "difficulty": "ura", - "note_count": 665, - "density_avg": 6.157407407407407, - "density_peak": 12, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.005117871718394963 - }, - { - "songno": "999", - "difficulty": "oni", - "note_count": 975, - "density_avg": 8.221883925457409, - "density_peak": 17, - "bpm_avg": 206.14871794871794, - "bpm_change": 1, - "scroll_change": 9, - "rhythm_complexity": 894, - "color_complexity": 0.01573210343942902 - }, - { - "songno": "972", - "difficulty": "oni", - "note_count": 689, - "density_avg": 6.062267343485617, - "density_peak": 12, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.005586088283537377 - }, - { - "songno": "972", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.984459459459459, - "density_peak": 16, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 785, - "color_complexity": 0.010702727817315079 - }, - { - "songno": "1202", - "difficulty": "oni", - "note_count": 540, - "density_avg": 4.81549815498155, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.003325408179445369 - }, - { - "songno": "782", - "difficulty": "oni", - "note_count": 522, - "density_avg": 4.2561151079136685, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 483, - "color_complexity": 0.001897606182601946 - }, - { - "songno": "1216", - "difficulty": "oni", - "note_count": 989, - "density_avg": 7.197360995990631, - "density_peak": 16, - "bpm_avg": 236.00444893832153, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 897, - "color_complexity": 0.009178932210318904 - }, - { - "songno": "1216", - "difficulty": "ura", - "note_count": 1338, - "density_avg": 9.73717797030886, - "density_peak": 20, - "bpm_avg": 236.00526158445444, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 1209, - "color_complexity": 0.02840435681803498 - }, - { - "songno": "219", - "difficulty": "oni", - "note_count": 588, - "density_avg": 4.763467492260062, - "density_peak": 11, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 545, - "color_complexity": 0.004141928778936775 - }, - { - "songno": "231", - "difficulty": "oni", - "note_count": 198, - "density_avg": 2.4360236220472444, - "density_peak": 6, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 143, - "color_complexity": 0.00028055962149037863 - }, - { - "songno": "231", - "difficulty": "ura", - "note_count": 523, - "density_avg": 6.434547244094488, - "density_peak": 11, - "bpm_avg": 187.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 510, - "color_complexity": 0.005725379774305551 - }, - { - "songno": "543", - "difficulty": "oni", - "note_count": 414, - "density_avg": 3.1892008639308855, - "density_peak": 9, - "bpm_avg": 107, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0014005432322070147 - }, - { - "songno": "1028", - "difficulty": "oni", - "note_count": 624, - "density_avg": 4.91768826619965, - "density_peak": 9, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 586, - "color_complexity": 0.0030533388817775746 - }, - { - "songno": "594", - "difficulty": "oni", - "note_count": 888, - "density_avg": 7.269026548672566, - "density_peak": 15, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 829, - "color_complexity": 0.01402671232786871 - }, - { - "songno": "1000", - "difficulty": "oni", - "note_count": 729, - "density_avg": 6.807782101167316, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.007338713203016261 - }, - { - "songno": "1014", - "difficulty": "oni", - "note_count": 547, - "density_avg": 5.253097893432466, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0042777064526913645 - }, - { - "songno": "580", - "difficulty": "oni", - "note_count": 436, - "density_avg": 2.856135046611237, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 261, - "color_complexity": 0.0011258812094705893 - }, - { - "songno": "580", - "difficulty": "ura", - "note_count": 733, - "density_avg": 4.801713277903754, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 550, - "color_complexity": 0.004340325903245934 - }, - { - "songno": "1015", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.933683878201988, - "density_peak": 13, - "bpm_avg": 120.80456026058631, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 434, - "color_complexity": 0.0041415570112380146 - }, - { - "songno": "1001", - "difficulty": "oni", - "note_count": 515, - "density_avg": 3.9832834331337326, - "density_peak": 9, - "bpm_avg": 153.79611650485438, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 489, - "color_complexity": 0.0032292721999377665 - }, - { - "songno": "595", - "difficulty": "oni", - "note_count": 765, - "density_avg": 7.318982387475538, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 726, - "color_complexity": 0.015172048943461684 - }, - { - "songno": "1029", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.6970443349753697, - "density_peak": 7, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 137, - "color_complexity": 0.00028928209589604265 - }, - { - "songno": "224", - "difficulty": "oni", - "note_count": 469, - "density_avg": 3.493064574195197, - "density_peak": 13, - "bpm_avg": 155.0160341151386, - "bpm_change": 6, - "scroll_change": 15, - "rhythm_complexity": 367, - "color_complexity": 0.0038494603983574714 - }, - { - "songno": "542", - "difficulty": "oni", - "note_count": 389, - "density_avg": 4.5084009550206545, - "density_peak": 11, - "bpm_avg": 176.2959640102828, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 352, - "color_complexity": 0.0027699698680541426 - }, - { - "songno": "556", - "difficulty": "oni", - "note_count": 344, - "density_avg": 4.494140249759846, - "density_peak": 9, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.0019195575173746586 - }, - { - "songno": "230", - "difficulty": "oni", - "note_count": 572, - "density_avg": 5.466360856269113, - "density_peak": 10, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 526, - "color_complexity": 0.002592183676218123 - }, - { - "songno": "218", - "difficulty": "oni", - "note_count": 721, - "density_avg": 6.052062105773896, - "density_peak": 12, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.006159150684553403 - }, - { - "songno": "218", - "difficulty": "ura", - "note_count": 873, - "density_avg": 7.327947598253275, - "density_peak": 13, - "bpm_avg": 346, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 803, - "color_complexity": 0.009222251215362675 - }, - { - "songno": "1217", - "difficulty": "oni", - "note_count": 468, - "density_avg": 5.339597315436242, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0026303931062499975 - }, - { - "songno": "783", - "difficulty": "oni", - "note_count": 641, - "density_avg": 5.853672716539031, - "density_peak": 13, - "bpm_avg": 184.76230889235575, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.005952612910542715 - }, - { - "songno": "797", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.629820051413882, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.004375354192442994 - }, - { - "songno": "1203", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.7831469979296064, - "density_peak": 8, - "bpm_avg": 105.5, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 353, - "color_complexity": 0.001620439267666786 - }, - { - "songno": "967", - "difficulty": "oni", - "note_count": 651, - "density_avg": 5.273966493055556, - "density_peak": 10, - "bpm_avg": 139.99099999999945, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 317, - "color_complexity": 0.00316696150767669 - }, - { - "songno": "973", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.998938428874735, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.0036980176505468825 - }, - { - "songno": "998", - "difficulty": "oni", - "note_count": 729, - "density_avg": 5.069100391134289, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 669, - "color_complexity": 0.0037032911514235274 - }, - { - "songno": "740", - "difficulty": "oni", - "note_count": 546, - "density_avg": 4.9167608942141126, - "density_peak": 13, - "bpm_avg": 227.51318681318511, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 413, - "color_complexity": 0.0038746520210597344 - }, - { - "songno": "754", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.3876096491228065, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 616, - "color_complexity": 0.0039568554825932176 - }, - { - "songno": "1363", - "difficulty": "oni", - "note_count": 603, - "density_avg": 5.298859315589354, - "density_peak": 9, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.002909629113272306 - }, - { - "songno": "1405", - "difficulty": "oni", - "note_count": 905, - "density_avg": 8.115489130434783, - "density_peak": 15, - "bpm_avg": 198, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 793, - "color_complexity": 0.01367789493391424 - }, - { - "songno": "191", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "1411", - "difficulty": "oni", - "note_count": 815, - "density_avg": 7.149122807017544, - "density_peak": 16, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 754, - "color_complexity": 0.010987100546798512 - }, - { - "songno": "1411", - "difficulty": "ura", - "note_count": 1030, - "density_avg": 9.035087719298245, - "density_peak": 21, - "bpm_avg": 225, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 871, - "color_complexity": 0.01751565204361806 - }, - { - "songno": "1377", - "difficulty": "oni", - "note_count": 557, - "density_avg": 4.2605177173432605, - "density_peak": 11, - "bpm_avg": 175.9732854578097, - "bpm_change": 12, - "scroll_change": 51, - "rhythm_complexity": 488, - "color_complexity": 0.0028268855546321916 - }, - { - "songno": "53", - "difficulty": "oni", - "note_count": 677, - "density_avg": 6.297674418604651, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 668, - "color_complexity": 0.005633050564261022 - }, - { - "songno": "1", - "difficulty": "oni", - "note_count": 831, - "density_avg": 6.492187500000001, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 673, - "color_complexity": 0.009891807575505564 - }, - { - "songno": "1439", - "difficulty": "oni", - "note_count": 515, - "density_avg": 4.366434378629501, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 485, - "color_complexity": 0.003186931904927284 - }, - { - "songno": "47", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.537210756722952, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 444, - "color_complexity": 0.0036966843633750917 - }, - { - "songno": "152", - "difficulty": "oni", - "note_count": 790, - "density_avg": 6.786941580756014, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 772, - "color_complexity": 0.007224909302394338 - }, - { - "songno": "146", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.326530612244897, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0027306366559499227 - }, - { - "songno": "608", - "difficulty": "oni", - "note_count": 340, - "density_avg": 4.077437987658843, - "density_peak": 8, - "bpm_avg": 123.01835294117646, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 315, - "color_complexity": 0.0014977887112729207 - }, - { - "songno": "90", - "difficulty": "oni", - "note_count": 697, - "density_avg": 5.396129032258065, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 671, - "color_complexity": 0.006354437659333248 - }, - { - "songno": "1388", - "difficulty": "oni", - "note_count": 529, - "density_avg": 6.134893184130213, - "density_peak": 11, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 481, - "color_complexity": 0.004569550340306123 - }, - { - "songno": "1388", - "difficulty": "ura", - "note_count": 586, - "density_avg": 6.6937875751503, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 546, - "color_complexity": 0.005590770347448972 - }, - { - "songno": "1161", - "difficulty": "oni", - "note_count": 428, - "density_avg": 4.330952380952381, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 375, - "color_complexity": 0.001530776101022984 - }, - { - "songno": "1175", - "difficulty": "oni", - "note_count": 591, - "density_avg": 4.607796610169491, - "density_peak": 9, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 512, - "color_complexity": 0.0028313233753878906 - }, - { - "songno": "387", - "difficulty": "oni", - "note_count": 492, - "density_avg": 4.121170395869191, - "density_peak": 8, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 414, - "color_complexity": 0.0028687784003459354 - }, - { - "songno": "1149", - "difficulty": "oni", - "note_count": 574, - "density_avg": 4.279824561403508, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.002973089013621057 - }, - { - "songno": "1149", - "difficulty": "ura", - "note_count": 921, - "density_avg": 6.867105263157895, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 866, - "color_complexity": 0.008701597588183433 - }, - { - "songno": "350", - "difficulty": "oni", - "note_count": 593, - "density_avg": 4.764846202134337, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 552, - "color_complexity": 0.0031287421234234766 - }, - { - "songno": "436", - "difficulty": "oni", - "note_count": 521, - "density_avg": 4.100462962962963, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 453, - "color_complexity": 0.002085368284081056 - }, - { - "songno": "422", - "difficulty": "oni", - "note_count": 642, - "density_avg": 4.787588388192328, - "density_peak": 9, - "bpm_avg": 168.40109034267914, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 626, - "color_complexity": 0.0025335209773418403 - }, - { - "songno": "422", - "difficulty": "ura", - "note_count": 776, - "density_avg": 5.733735468466125, - "density_peak": 12, - "bpm_avg": 168.39948453608247, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 751, - "color_complexity": 0.0068508851411107465 - }, - { - "songno": "344", - "difficulty": "oni", - "note_count": 589, - "density_avg": 5.06171875, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 571, - "color_complexity": 0.0035770335315490403 - }, - { - "songno": "408", - "difficulty": "oni", - "note_count": 387, - "density_avg": 4.15936183760187, - "density_peak": 8, - "bpm_avg": 138.00010335917312, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 354, - "color_complexity": 0.0019142434638521426 - }, - { - "songno": "1188", - "difficulty": "oni", - "note_count": 337, - "density_avg": 4.109756097560976, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0014355189115646276 - }, - { - "songno": "434", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.526062062100932, - "density_peak": 10, - "bpm_avg": 134.15181623931622, - "bpm_change": 6, - "scroll_change": 9, - "rhythm_complexity": 407, - "color_complexity": 0.0019305950588551313 - }, - { - "songno": "352", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.275996112730807, - "density_peak": 8, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.00175747217315632 - }, - { - "songno": "346", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.5215517241379315, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006534743216641864 - }, - { - "songno": "420", - "difficulty": "oni", - "note_count": 382, - "density_avg": 4.05105090072067, - "density_peak": 10, - "bpm_avg": 160.0165445026178, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 330, - "color_complexity": 0.002331989717786926 - }, - { - "songno": "1163", - "difficulty": "oni", - "note_count": 690, - "density_avg": 5.5089820359281445, - "density_peak": 12, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 601, - "color_complexity": 0.005152595473704029 - }, - { - "songno": "391", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.139559543230016, - "density_peak": 12, - "bpm_avg": 169.00195195195195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 585, - "color_complexity": 0.005039326552726177 - }, - { - "songno": "385", - "difficulty": "oni", - "note_count": 386, - "density_avg": 5.911711711711712, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 371, - "color_complexity": 0.004340141742112481 - }, - { - "songno": "1177", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.056490384615385, - "density_peak": 8, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0015148063329031769 - }, - { - "songno": "92", - "difficulty": "oni", - "note_count": 383, - "density_avg": 2.9730593607305935, - "density_peak": 7, - "bpm_avg": 135.9947780678851, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 294, - "color_complexity": 0.0015399932555156637 - }, - { - "songno": "92", - "difficulty": "ura", - "note_count": 612, - "density_avg": 4.6103635462669414, - "density_peak": 9, - "bpm_avg": 135.98039215686273, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0024325994798297043 - }, - { - "songno": "86", - "difficulty": "oni", - "note_count": 651, - "density_avg": 4.6310975609756095, - "density_peak": 12, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0034271167824048198 - }, - { - "songno": "178", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.776917236142749, - "density_peak": 11, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 659, - "color_complexity": 0.005100928970205306 - }, - { - "songno": "178", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.894229309035688, - "density_peak": 12, - "bpm_avg": 218, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 788, - "color_complexity": 0.008269205784819907 - }, - { - "songno": "150", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.965373383395912, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 460, - "color_complexity": 0.003179342186923859 - }, - { - "songno": "150", - "difficulty": "ura", - "note_count": 687, - "density_avg": 6.305381727158949, - "density_peak": 17, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 624, - "color_complexity": 0.005278990123456753 - }, - { - "songno": "144", - "difficulty": "oni", - "note_count": 353, - "density_avg": 4.211799906690268, - "density_peak": 7, - "bpm_avg": 141.95524079320157, - "bpm_change": 16, - "scroll_change": 5, - "rhythm_complexity": 301, - "color_complexity": 0.0015918048010694027 - }, - { - "songno": "3", - "difficulty": "oni", - "note_count": 507, - "density_avg": 3.9115044247787614, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0019120605323766514 - }, - { - "songno": "51", - "difficulty": "oni", - "note_count": 454, - "density_avg": 4.906795077581594, - "density_peak": 10, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.0017135882151237951 - }, - { - "songno": "811", - "difficulty": "oni", - "note_count": 145, - "density_avg": 1.6571428571428573, - "density_peak": 5, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 105, - "color_complexity": 0.00003496439156897107 - }, - { - "songno": "811", - "difficulty": "ura", - "note_count": 468, - "density_avg": 5.348571428571428, - "density_peak": 25, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.000843309872415438 - }, - { - "songno": "45", - "difficulty": "oni", - "note_count": 933, - "density_avg": 7.326442307692307, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 904, - "color_complexity": 0.008993991861728386 - }, - { - "songno": "45", - "difficulty": "ura", - "note_count": 976, - "density_avg": 7.664102564102564, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 947, - "color_complexity": 0.013850611872702267 - }, - { - "songno": "1349", - "difficulty": "oni", - "note_count": 536, - "density_avg": 4.602848738635937, - "density_peak": 9, - "bpm_avg": 133.2667910447761, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 459, - "color_complexity": 0.0024383565456923134 - }, - { - "songno": "805", - "difficulty": "oni", - "note_count": 740, - "density_avg": 5.263554571576617, - "density_peak": 11, - "bpm_avg": 300.0189189189189, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 648, - "color_complexity": 0.006582447664600062 - }, - { - "songno": "193", - "difficulty": "oni", - "note_count": 765, - "density_avg": 4.74135687732342, - "density_peak": 11, - "bpm_avg": 150.05000000000192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.004252055304796902 - }, - { - "songno": "1407", - "difficulty": "oni", - "note_count": 346, - "density_avg": 3.9456140350877194, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 310, - "color_complexity": 0.0012789427836762696 - }, - { - "songno": "1361", - "difficulty": "oni", - "note_count": 387, - "density_avg": 3.3793257423532035, - "density_peak": 6, - "bpm_avg": 127.72093023255815, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 340, - "color_complexity": 0.000699219979472848 - }, - { - "songno": "79", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.00538131288279, - "density_peak": 11, - "bpm_avg": 159.94520426287735, - "bpm_change": 14, - "scroll_change": 8, - "rhythm_complexity": 485, - "color_complexity": 0.003747675989800532 - }, - { - "songno": "1375", - "difficulty": "oni", - "note_count": 190, - "density_avg": 1.8766400710394626, - "density_peak": 4, - "bpm_avg": 70.73902631578949, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 164, - "color_complexity": 0.0001944750770985111 - }, - { - "songno": "839", - "difficulty": "oni", - "note_count": 285, - "density_avg": 3.9583333333333335, - "density_peak": 7, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 272, - "color_complexity": 0.0008918354565697317 - }, - { - "songno": "1413", - "difficulty": "oni", - "note_count": 622, - "density_avg": 5.219462873673885, - "density_peak": 10, - "bpm_avg": 181.32475884244374, - "bpm_change": 29, - "scroll_change": 28, - "rhythm_complexity": 535, - "color_complexity": 0.003154895573120465 - }, - { - "songno": "1413", - "difficulty": "ura", - "note_count": 866, - "density_avg": 7.222925509249093, - "density_peak": 15, - "bpm_avg": 183.27367205542726, - "bpm_change": 34, - "scroll_change": 38, - "rhythm_complexity": 699, - "color_complexity": 0.01078114234258459 - }, - { - "songno": "187", - "difficulty": "oni", - "note_count": 846, - "density_avg": 6.666619337683021, - "density_peak": 13, - "bpm_avg": 185.46099290780143, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 797, - "color_complexity": 0.010330007279750442 - }, - { - "songno": "187", - "difficulty": "ura", - "note_count": 753, - "density_avg": 5.948886020948067, - "density_peak": 13, - "bpm_avg": 185.39442231075697, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 696, - "color_complexity": 0.009033002101284568 - }, - { - "songno": "742", - "difficulty": "oni", - "note_count": 631, - "density_avg": 5.149540229885058, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 567, - "color_complexity": 0.00387217110199955 - }, - { - "songno": "756", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.991386217948718, - "density_peak": 16, - "bpm_avg": 205, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 870, - "color_complexity": 0.014804465446167496 - }, - { - "songno": "1229", - "difficulty": "oni", - "note_count": 969, - "density_avg": 6.884600938967137, - "density_peak": 16, - "bpm_avg": 216.10681114551085, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 898, - "color_complexity": 0.01320371907889871 - }, - { - "songno": "971", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.225974025974026, - "density_peak": 17, - "bpm_avg": 214, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 765, - "color_complexity": 0.012594515438637684 - }, - { - "songno": "959", - "difficulty": "oni", - "note_count": 671, - "density_avg": 5.168538106861948, - "density_peak": 10, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.004870882559130469 - }, - { - "songno": "959", - "difficulty": "ura", - "note_count": 969, - "density_avg": 7.433711507293355, - "density_peak": 15, - "bpm_avg": 284, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 826, - "color_complexity": 0.012659436123553755 - }, - { - "songno": "781", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.080459770114942, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 895, - "color_complexity": 0.014007261227643465 - }, - { - "songno": "1215", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.0917941585535464, - "density_peak": 14, - "bpm_avg": 268.32191780821915, - "bpm_change": 62, - "scroll_change": 0, - "rhythm_complexity": 812, - "color_complexity": 0.010456238520281644 - }, - { - "songno": "1215", - "difficulty": "ura", - "note_count": 1353, - "density_avg": 9.408901251738525, - "density_peak": 18, - "bpm_avg": 276.57058388765705, - "bpm_change": 69, - "scroll_change": 0, - "rhythm_complexity": 1278, - "color_complexity": 0.024616621667793968 - }, - { - "songno": "1201", - "difficulty": "oni", - "note_count": 329, - "density_avg": 2.9520568284212696, - "density_peak": 11, - "bpm_avg": 199.97635258358673, - "bpm_change": 12, - "scroll_change": 12, - "rhythm_complexity": 226, - "color_complexity": 0.000788095675923605 - }, - { - "songno": "1201", - "difficulty": "ura", - "note_count": 889, - "density_avg": 7.976402349674755, - "density_peak": 14, - "bpm_avg": 200.0003329583802, - "bpm_change": 18, - "scroll_change": 17, - "rhythm_complexity": 790, - "color_complexity": 0.013375321772669582 - }, - { - "songno": "795", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.025, - "density_peak": 7, - "bpm_avg": 183.42028985507247, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 246, - "color_complexity": 0.0009213481405473305 - }, - { - "songno": "795", - "difficulty": "ura", - "note_count": 532, - "density_avg": 6.084967320261438, - "density_peak": 11, - "bpm_avg": 182.6315789473684, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 413, - "color_complexity": 0.004021757654829363 - }, - { - "songno": "568", - "difficulty": "oni", - "note_count": 829, - "density_avg": 5.9989222478829864, - "density_peak": 12, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 740, - "color_complexity": 0.007838384394011081 - }, - { - "songno": "540", - "difficulty": "oni", - "note_count": 560, - "density_avg": 5.379717986410894, - "density_peak": 12, - "bpm_avg": 168.00325000000015, - "bpm_change": 42, - "scroll_change": 4, - "rhythm_complexity": 453, - "color_complexity": 0.004948341856870142 - }, - { - "songno": "226", - "difficulty": "oni", - "note_count": 691, - "density_avg": 5.991329479768786, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 671, - "color_complexity": 0.006179420370120491 - }, - { - "songno": "226", - "difficulty": "ura", - "note_count": 691, - "density_avg": 5.726519337016574, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.0048015509750566855 - }, - { - "songno": "554", - "difficulty": "oni", - "note_count": 661, - "density_avg": 5.8185113268608415, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 632, - "color_complexity": 0.0046141551464559385 - }, - { - "songno": "583", - "difficulty": "oni", - "note_count": 339, - "density_avg": 2.998027892944747, - "density_peak": 10, - "bpm_avg": 159.98834808259585, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 302, - "color_complexity": 0.0014730143572736357 - }, - { - "songno": "1003", - "difficulty": "oni", - "note_count": 312, - "density_avg": 3.5433628318584067, - "density_peak": 7, - "bpm_avg": 77, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 208, - "color_complexity": 0.0007564534779320977 - }, - { - "songno": "1002", - "difficulty": "oni", - "note_count": 420, - "density_avg": 5.71559633027523, - "density_peak": 10, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 384, - "color_complexity": 0.002528679663731411 - }, - { - "songno": "596", - "difficulty": "oni", - "note_count": 622, - "density_avg": 4.990678466076695, - "density_peak": 10, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 524, - "color_complexity": 0.004067071640300878 - }, - { - "songno": "233", - "difficulty": "oni", - "note_count": 386, - "density_avg": 4.155502392344498, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 345, - "color_complexity": 0.0012268098724489778 - }, - { - "songno": "555", - "difficulty": "oni", - "note_count": 1290, - "density_avg": 8.231221088733648, - "density_peak": 17, - "bpm_avg": 231.4418604651163, - "bpm_change": 7, - "scroll_change": 4, - "rhythm_complexity": 1220, - "color_complexity": 0.020162583684220053 - }, - { - "songno": "541", - "difficulty": "oni", - "note_count": 473, - "density_avg": 5.149255848799893, - "density_peak": 10, - "bpm_avg": 216.4387315010569, - "bpm_change": 35, - "scroll_change": 9, - "rhythm_complexity": 400, - "color_complexity": 0.002421928650842573 - }, - { - "songno": "569", - "difficulty": "oni", - "note_count": 834, - "density_avg": 6.133682527524497, - "density_peak": 15, - "bpm_avg": 190.77937649880096, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 780, - "color_complexity": 0.009285071302363085 - }, - { - "songno": "794", - "difficulty": "oni", - "note_count": 520, - "density_avg": 6.4465528146742574, - "density_peak": 14, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 494, - "color_complexity": 0.0039931374796231545 - }, - { - "songno": "1200", - "difficulty": "oni", - "note_count": 305, - "density_avg": 4.166666666666667, - "density_peak": 8, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 281, - "color_complexity": 0.0011883900799521609 - }, - { - "songno": "1214", - "difficulty": "oni", - "note_count": 606, - "density_avg": 4.523876791657335, - "density_peak": 13, - "bpm_avg": 234.74257425742573, - "bpm_change": 14, - "scroll_change": 16, - "rhythm_complexity": 513, - "color_complexity": 0.0031818917706805806 - }, - { - "songno": "1214", - "difficulty": "ura", - "note_count": 1054, - "density_avg": 7.4336970014910815, - "density_peak": 17, - "bpm_avg": 240.8349146110057, - "bpm_change": 14, - "scroll_change": 18, - "rhythm_complexity": 893, - "color_complexity": 0.011510096546646231 - }, - { - "songno": "780", - "difficulty": "oni", - "note_count": 726, - "density_avg": 4.843509789702684, - "density_peak": 14, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00468491088123424 - }, - { - "songno": "958", - "difficulty": "oni", - "note_count": 740, - "density_avg": 6.312261995430313, - "density_peak": 12, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 612, - "color_complexity": 0.007320138014814796 - }, - { - "songno": "958", - "difficulty": "ura", - "note_count": 914, - "density_avg": 7.796496572734197, - "density_peak": 16, - "bpm_avg": 224, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 814, - "color_complexity": 0.014845986752224365 - }, - { - "songno": "970", - "difficulty": "oni", - "note_count": 862, - "density_avg": 5.902920443101713, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 742, - "color_complexity": 0.006692307181676403 - }, - { - "songno": "1228", - "difficulty": "oni", - "note_count": 571, - "density_avg": 4.355084745762712, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 503, - "color_complexity": 0.0020265120471938797 - }, - { - "songno": "964", - "difficulty": "oni", - "note_count": 316, - "density_avg": 4.704976997072355, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0011802832414593977 - }, - { - "songno": "757", - "difficulty": "oni", - "note_count": 1129, - "density_avg": 8.906391432863304, - "density_peak": 17, - "bpm_avg": 184.92825509300266, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 1078, - "color_complexity": 0.02022480349227142 - }, - { - "songno": "1374", - "difficulty": "oni", - "note_count": 322, - "density_avg": 2.4859218891916437, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 297, - "color_complexity": 0.00039185137463781906 - }, - { - "songno": "186", - "difficulty": "oni", - "note_count": 903, - "density_avg": 8.343283582089551, - "density_peak": 19, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 815, - "color_complexity": 0.013033689978820212 - }, - { - "songno": "1412", - "difficulty": "oni", - "note_count": 629, - "density_avg": 5.3760683760683765, - "density_peak": 10, - "bpm_avg": 249.60254372019077, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 585, - "color_complexity": 0.003501775762286951 - }, - { - "songno": "1412", - "difficulty": "ura", - "note_count": 987, - "density_avg": 8.330519918973666, - "density_peak": 17, - "bpm_avg": 247.72036474164133, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 959, - "color_complexity": 0.011959811434796245 - }, - { - "songno": "1406", - "difficulty": "oni", - "note_count": 997, - "density_avg": 7.357430816535702, - "density_peak": 22, - "bpm_avg": 255.6198595787362, - "bpm_change": 5, - "scroll_change": 3, - "rhythm_complexity": 836, - "color_complexity": 0.012847516641651149 - }, - { - "songno": "1360", - "difficulty": "oni", - "note_count": 676, - "density_avg": 4.968256450351837, - "density_peak": 8, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.002824719977946671 - }, - { - "songno": "804", - "difficulty": "oni", - "note_count": 540, - "density_avg": 3.8654852596562095, - "density_peak": 10, - "bpm_avg": 149.13314814814802, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 437, - "color_complexity": 0.002834029395221408 - }, - { - "songno": "804", - "difficulty": "ura", - "note_count": 820, - "density_avg": 5.8698109498483175, - "density_peak": 16, - "bpm_avg": 157.5876829268292, - "bpm_change": 9, - "scroll_change": 6, - "rhythm_complexity": 734, - "color_complexity": 0.010603336900242089 - }, - { - "songno": "1348", - "difficulty": "oni", - "note_count": 474, - "density_avg": 5.2397959183673475, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 415, - "color_complexity": 0.003102418990299837 - }, - { - "songno": "44", - "difficulty": "oni", - "note_count": 455, - "density_avg": 4.257309941520467, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 328, - "color_complexity": 0.0014371882674396018 - }, - { - "songno": "2", - "difficulty": "oni", - "note_count": 406, - "density_avg": 4.858883994126285, - "density_peak": 8, - "bpm_avg": 163, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.001304997117283953 - }, - { - "songno": "623", - "difficulty": "oni", - "note_count": 364, - "density_avg": 5.037001762558617, - "density_peak": 10, - "bpm_avg": 154.23802197802206, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 305, - "color_complexity": 0.0023195794747126134 - }, - { - "songno": "151", - "difficulty": "oni", - "note_count": 537, - "density_avg": 4.638321167883212, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 407, - "color_complexity": 0.002730370960155398 - }, - { - "songno": "637", - "difficulty": "oni", - "note_count": 736, - "density_avg": 5.5599622285174695, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.004763446263798519 - }, - { - "songno": "87", - "difficulty": "oni", - "note_count": 529, - "density_avg": 5.288145669400578, - "density_peak": 11, - "bpm_avg": 152.0453686200378, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 511, - "color_complexity": 0.003837428390011117 - }, - { - "songno": "179", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.9591618693132125, - "density_peak": 15, - "bpm_avg": 213.36365296803686, - "bpm_change": 11, - "scroll_change": 15, - "rhythm_complexity": 808, - "color_complexity": 0.008317609077654609 - }, - { - "songno": "93", - "difficulty": "oni", - "note_count": 659, - "density_avg": 4.8877979977756105, - "density_peak": 13, - "bpm_avg": 162.99015174506792, - "bpm_change": 18, - "scroll_change": 6, - "rhythm_complexity": 573, - "color_complexity": 0.005791591039194993 - }, - { - "songno": "384", - "difficulty": "oni", - "note_count": 345, - "density_avg": 3.6104651162790695, - "density_peak": 8, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.001053859936224488 - }, - { - "songno": "1176", - "difficulty": "oni", - "note_count": 502, - "density_avg": 4.248697916666666, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 464, - "color_complexity": 0.0018802655487143488 - }, - { - "songno": "1162", - "difficulty": "oni", - "note_count": 451, - "density_avg": 4.78589263420724, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 404, - "color_complexity": 0.0017825193420230704 - }, - { - "songno": "390", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.758041958041957, - "density_peak": 8, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 527, - "color_complexity": 0.0022402315836734694 - }, - { - "songno": "347", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.666666666666667, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 723, - "color_complexity": 0.005925731765801294 - }, - { - "songno": "421", - "difficulty": "oni", - "note_count": 1160, - "density_avg": 7.239944521497919, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1133, - "color_complexity": 0.009281254241263113 - }, - { - "songno": "435", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.653513209668354, - "density_peak": 10, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 479, - "color_complexity": 0.0014969167478685944 - }, - { - "songno": "431", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.95820895522388, - "density_peak": 12, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 734, - "color_complexity": 0.010140632783933592 - }, - { - "songno": "425", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.898988800751897, - "density_peak": 11, - "bpm_avg": 170.0056862745098, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 665, - "color_complexity": 0.006579899651231696 - }, - { - "songno": "425", - "difficulty": "ura", - "note_count": 876, - "density_avg": 6.755576491539141, - "density_peak": 12, - "bpm_avg": 170.02246575342468, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 819, - "color_complexity": 0.008822365948660765 - }, - { - "songno": "343", - "difficulty": "oni", - "note_count": 375, - "density_avg": 3.817919416506573, - "density_peak": 10, - "bpm_avg": 144.02287999999993, - "bpm_change": 8, - "scroll_change": 7, - "rhythm_complexity": 328, - "color_complexity": 0.0023856146920736144 - }, - { - "songno": "1199", - "difficulty": "oni", - "note_count": 279, - "density_avg": 2.651315789473684, - "density_peak": 7, - "bpm_avg": 65, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 207, - "color_complexity": 0.00039626902284807894 - }, - { - "songno": "419", - "difficulty": "oni", - "note_count": 769, - "density_avg": 6.580497512437812, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 686, - "color_complexity": 0.00952969950011453 - }, - { - "songno": "394", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.871710526315789, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.00545371061728395 - }, - { - "songno": "1166", - "difficulty": "oni", - "note_count": 768, - "density_avg": 6.785100286532952, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 750, - "color_complexity": 0.00822286029332596 - }, - { - "songno": "1172", - "difficulty": "oni", - "note_count": 995, - "density_avg": 8.040585676037484, - "density_peak": 22, - "bpm_avg": 241.3386623115556, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 729, - "color_complexity": 0.011765713239051826 - }, - { - "songno": "380", - "difficulty": "oni", - "note_count": 299, - "density_avg": 3.698567708333333, - "density_peak": 10, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 246, - "color_complexity": 0.000826477353899929 - }, - { - "songno": "155", - "difficulty": "oni", - "note_count": 614, - "density_avg": 4.582669196710942, - "density_peak": 11, - "bpm_avg": 236, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 521, - "color_complexity": 0.0029702074307249595 - }, - { - "songno": "141", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "627", - "difficulty": "oni", - "note_count": 999, - "density_avg": 8.32128514056225, - "density_peak": 18, - "bpm_avg": 280, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 844, - "color_complexity": 0.013643740370567333 - }, - { - "songno": "97", - "difficulty": "oni", - "note_count": 804, - "density_avg": 5.502368987796122, - "density_peak": 13, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.005160073315990605 - }, - { - "songno": "169", - "difficulty": "oni", - "note_count": 473, - "density_avg": 4.556042031523643, - "density_peak": 11, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 437, - "color_complexity": 0.002719541472348197 - }, - { - "songno": "83", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.751104565537555, - "density_peak": 12, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 698, - "color_complexity": 0.003500847777647112 - }, - { - "songno": "1364", - "difficulty": "oni", - "note_count": 683, - "density_avg": 5.382336956521739, - "density_peak": 12, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 614, - "color_complexity": 0.005573890630681125 - }, - { - "songno": "1364", - "difficulty": "ura", - "note_count": 968, - "density_avg": 7.628260869565218, - "density_peak": 14, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 856, - "color_complexity": 0.013824094595296977 - }, - { - "songno": "68", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.1951404916509984, - "density_peak": 20, - "bpm_avg": 193.25997425997426, - "bpm_change": 9, - "scroll_change": 18, - "rhythm_complexity": 684, - "color_complexity": 0.007131557028309479 - }, - { - "songno": "828", - "difficulty": "oni", - "note_count": 576, - "density_avg": 4.472049689440993, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 519, - "color_complexity": 0.002757052519935577 - }, - { - "songno": "196", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.12019286230545, - "density_peak": 11, - "bpm_avg": 159.7987637362637, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 699, - "color_complexity": 0.005276624785479498 - }, - { - "songno": "1402", - "difficulty": "oni", - "note_count": 484, - "density_avg": 5.041865353037767, - "density_peak": 9, - "bpm_avg": 129.53140495867768, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 439, - "color_complexity": 0.0029445082519504533 - }, - { - "songno": "182", - "difficulty": "oni", - "note_count": 576, - "density_avg": 5.1155314865499, - "density_peak": 10, - "bpm_avg": 135.90625, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 561, - "color_complexity": 0.0037731412126623337 - }, - { - "songno": "1370", - "difficulty": "oni", - "note_count": 786, - "density_avg": 6.605042016806723, - "density_peak": 12, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.0065039530563881995 - }, - { - "songno": "1370", - "difficulty": "ura", - "note_count": 1123, - "density_avg": 9.07108239095315, - "density_peak": 20, - "bpm_avg": 300, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 1059, - "color_complexity": 0.023218155344590735 - }, - { - "songno": "1358", - "difficulty": "oni", - "note_count": 565, - "density_avg": 3.6808981657179003, - "density_peak": 7, - "bpm_avg": 103, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.0012289794200269165 - }, - { - "songno": "814", - "difficulty": "oni", - "note_count": 996, - "density_avg": 8.645833333333334, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 901, - "color_complexity": 0.016097228731845468 - }, - { - "songno": "40", - "difficulty": "oni", - "note_count": 444, - "density_avg": 5.061313225689626, - "density_peak": 10, - "bpm_avg": 145.01000000000002, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 423, - "color_complexity": 0.003436544388238737 - }, - { - "songno": "800", - "difficulty": "oni", - "note_count": 657, - "density_avg": 6.3230075187969925, - "density_peak": 12, - "bpm_avg": 192, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 625, - "color_complexity": 0.005861746590915558 - }, - { - "songno": "747", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.87431693989071, - "density_peak": 14, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 615, - "color_complexity": 0.0068247013233811915 - }, - { - "songno": "753", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.454812707444287, - "density_peak": 10, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 563, - "color_complexity": 0.00474949881619812 - }, - { - "songno": "784", - "difficulty": "oni", - "note_count": 881, - "density_avg": 7.654279569892473, - "density_peak": 15, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 807, - "color_complexity": 0.013132196554557145 - }, - { - "songno": "1210", - "difficulty": "oni", - "note_count": 457, - "density_avg": 5.409149072296865, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0024505255433668826 - }, - { - "songno": "1210", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.527831094049904, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 609, - "color_complexity": 0.007820728104686347 - }, - { - "songno": "948", - "difficulty": "oni", - "note_count": 915, - "density_avg": 7.336138518806753, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.010411021576164171 - }, - { - "songno": "1204", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.7977566314625832, - "density_peak": 7, - "bpm_avg": 105.01687272727271, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 253, - "color_complexity": 0.0009566038523754819 - }, - { - "songno": "790", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.3398564905414223, - "density_peak": 6, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 285, - "color_complexity": 0.0011190129123896512 - }, - { - "songno": "960", - "difficulty": "oni", - "note_count": 912, - "density_avg": 6.923336457357076, - "density_peak": 17, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 824, - "color_complexity": 0.010948788171929317 - }, - { - "songno": "960", - "difficulty": "ura", - "note_count": 1240, - "density_avg": 9.413308341143392, - "density_peak": 21, - "bpm_avg": 243, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1100, - "color_complexity": 0.02757118652366326 - }, - { - "songno": "974", - "difficulty": "oni", - "note_count": 216, - "density_avg": 2.049438202247191, - "density_peak": 5, - "bpm_avg": 76, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 189, - "color_complexity": 0 - }, - { - "songno": "223", - "difficulty": "oni", - "note_count": 502, - "density_avg": 5.265597261500406, - "density_peak": 10, - "bpm_avg": 219.91035856573706, - "bpm_change": 9, - "scroll_change": 9, - "rhythm_complexity": 420, - "color_complexity": 0.0035746818287955393 - }, - { - "songno": "545", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.558155740961462, - "density_peak": 8, - "bpm_avg": 232.39000000000038, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 582, - "color_complexity": 0.0033004309608055194 - }, - { - "songno": "551", - "difficulty": "oni", - "note_count": 445, - "density_avg": 4.486744893524555, - "density_peak": 8, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 389, - "color_complexity": 0.0016074770172839485 - }, - { - "songno": "551", - "difficulty": "ura", - "note_count": 553, - "density_avg": 5.575662755323772, - "density_peak": 10, - "bpm_avg": 116, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 457, - "color_complexity": 0.0033299986814814757 - }, - { - "songno": "237", - "difficulty": "oni", - "note_count": 665, - "density_avg": 4.705188679245282, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.003544677151816613 - }, - { - "songno": "579", - "difficulty": "oni", - "note_count": 588, - "density_avg": 5.402990229789272, - "density_peak": 11, - "bpm_avg": 128.26971088435374, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 520, - "color_complexity": 0.003964036631514234 - }, - { - "songno": "579", - "difficulty": "ura", - "note_count": 566, - "density_avg": 5.200837534116884, - "density_peak": 11, - "bpm_avg": 127.67909893992928, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 528, - "color_complexity": 0.0035817216406916637 - }, - { - "songno": "1012", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.424503882657462, - "density_peak": 16, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.01011744099631783 - }, - { - "songno": "1012", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.341242450388266, - "density_peak": 20, - "bpm_avg": 255, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 889, - "color_complexity": 0.014029091892053891 - }, - { - "songno": "586", - "difficulty": "oni", - "note_count": 397, - "density_avg": 4.5567610062893085, - "density_peak": 10, - "bpm_avg": 146, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 373, - "color_complexity": 0.002075338630209768 - }, - { - "songno": "592", - "difficulty": "oni", - "note_count": 583, - "density_avg": 5.730928104575163, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 536, - "color_complexity": 0.006021851365487564 - }, - { - "songno": "1006", - "difficulty": "oni", - "note_count": 781, - "density_avg": 5.9443374598807885, - "density_peak": 11, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 767, - "color_complexity": 0.0055697224802468935 - }, - { - "songno": "1007", - "difficulty": "oni", - "note_count": 187, - "density_avg": 2.1062404870624047, - "density_peak": 5, - "bpm_avg": 74, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 139, - "color_complexity": 0.00019671832027643094 - }, - { - "songno": "593", - "difficulty": "oni", - "note_count": 787, - "density_avg": 8.943181818181818, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 736, - "color_complexity": 0.011659247594643603 - }, - { - "songno": "587", - "difficulty": "oni", - "note_count": 406, - "density_avg": 5.278, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 392, - "color_complexity": 0.0031014543347437254 - }, - { - "songno": "1013", - "difficulty": "oni", - "note_count": 634, - "density_avg": 5.473381294964029, - "density_peak": 12, - "bpm_avg": 252, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0032918294702747454 - }, - { - "songno": "578", - "difficulty": "oni", - "note_count": 543, - "density_avg": 4.608849490699526, - "density_peak": 10, - "bpm_avg": 195.6503130755065, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 376, - "color_complexity": 0.0024798459154622577 - }, - { - "songno": "550", - "difficulty": "oni", - "note_count": 745, - "density_avg": 6.349431818181818, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 666, - "color_complexity": 0.007397296575500027 - }, - { - "songno": "236", - "difficulty": "oni", - "note_count": 371, - "density_avg": 4.235159817351598, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 351, - "color_complexity": 0.0007795086805555548 - }, - { - "songno": "222", - "difficulty": "oni", - "note_count": 655, - "density_avg": 4.395323919400793, - "density_peak": 10, - "bpm_avg": 175.5353282442743, - "bpm_change": 16, - "scroll_change": 8, - "rhythm_complexity": 519, - "color_complexity": 0.0028397254514889556 - }, - { - "songno": "222", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 6.710418197558462, - "density_peak": 17, - "bpm_avg": 176.33152999999916, - "bpm_change": 23, - "scroll_change": 8, - "rhythm_complexity": 910, - "color_complexity": 0.01085106024672434 - }, - { - "songno": "544", - "difficulty": "oni", - "note_count": 609, - "density_avg": 5.933744722312439, - "density_peak": 11, - "bpm_avg": 178.6576354679803, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 584, - "color_complexity": 0.004578889320477496 - }, - { - "songno": "975", - "difficulty": "oni", - "note_count": 839, - "density_avg": 6.337274220032842, - "density_peak": 11, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 742, - "color_complexity": 0.0076307409603680425 - }, - { - "songno": "961", - "difficulty": "oni", - "note_count": 918, - "density_avg": 8.033080424886192, - "density_peak": 15, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 856, - "color_complexity": 0.011603203928179734 - }, - { - "songno": "1205", - "difficulty": "oni", - "note_count": 447, - "density_avg": 5.43354943273906, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 407, - "color_complexity": 0.0027253798759862146 - }, - { - "songno": "949", - "difficulty": "oni", - "note_count": 503, - "density_avg": 4.584635416666667, - "density_peak": 9, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.002234156158771279 - }, - { - "songno": "1211", - "difficulty": "oni", - "note_count": 483, - "density_avg": 4.132812499999999, - "density_peak": 8, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 321, - "color_complexity": 0.0018306425635870687 - }, - { - "songno": "785", - "difficulty": "oni", - "note_count": 724, - "density_avg": 6.447837150127226, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 663, - "color_complexity": 0.007753697556988684 - }, - { - "songno": "746", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.910623427961922, - "density_peak": 15, - "bpm_avg": 139.28680981595093, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 588, - "color_complexity": 0.005363917713302166 - }, - { - "songno": "801", - "difficulty": "oni", - "note_count": 351, - "density_avg": 3.4278450363196127, - "density_peak": 6, - "bpm_avg": 121, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0007325713087555813 - }, - { - "songno": "41", - "difficulty": "oni", - "note_count": 676, - "density_avg": 6.364094143404489, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 653, - "color_complexity": 0.0074799023930460905 - }, - { - "songno": "815", - "difficulty": "oni", - "note_count": 934, - "density_avg": 7.861952861952862, - "density_peak": 15, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 882, - "color_complexity": 0.0106341135190762 - }, - { - "songno": "55", - "difficulty": "oni", - "note_count": 850, - "density_avg": 5.846264113892979, - "density_peak": 12, - "bpm_avg": 140.10400000000269, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 719, - "color_complexity": 0.008034533456349005 - }, - { - "songno": "1359", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.0253004427577475, - "density_peak": 9, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 339, - "color_complexity": 0.0010969438400292904 - }, - { - "songno": "183", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.594776931447225, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 963, - "color_complexity": 0.011046133392594271 - }, - { - "songno": "1417", - "difficulty": "oni", - "note_count": 416, - "density_avg": 4.481622306717364, - "density_peak": 9, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 387, - "color_complexity": 0.00197118978587963 - }, - { - "songno": "1371", - "difficulty": "oni", - "note_count": 597, - "density_avg": 4.846032992930087, - "density_peak": 11, - "bpm_avg": 207.70519262981574, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 505, - "color_complexity": 0.0033778797897327587 - }, - { - "songno": "1371", - "difficulty": "ura", - "note_count": 819, - "density_avg": 6.640251078854452, - "density_peak": 13, - "bpm_avg": 214.42612942612942, - "bpm_change": 3, - "scroll_change": 51, - "rhythm_complexity": 721, - "color_complexity": 0.009180812697600552 - }, - { - "songno": "1365", - "difficulty": "oni", - "note_count": 636, - "density_avg": 5.235418359057677, - "density_peak": 12, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 540, - "color_complexity": 0.004342289394910552 - }, - { - "songno": "1403", - "difficulty": "oni", - "note_count": 578, - "density_avg": 4.846960167714885, - "density_peak": 10, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 502, - "color_complexity": 0.0027071726989258238 - }, - { - "songno": "197", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.200582829185416, - "density_peak": 9, - "bpm_avg": 167.0040606060606, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 477, - "color_complexity": 0.0017859149852279255 - }, - { - "songno": "197", - "difficulty": "ura", - "note_count": 765, - "density_avg": 6.491809826922916, - "density_peak": 12, - "bpm_avg": 167.0055294117647, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 735, - "color_complexity": 0.005326583001696681 - }, - { - "songno": "82", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.775363793859752, - "density_peak": 8, - "bpm_avg": 111.05051835853128, - "bpm_change": 5, - "scroll_change": 6, - "rhythm_complexity": 424, - "color_complexity": 0.001945637675925473 - }, - { - "songno": "96", - "difficulty": "oni", - "note_count": 776, - "density_avg": 5.951510388308949, - "density_peak": 13, - "bpm_avg": 136.28221649484536, - "bpm_change": 1, - "scroll_change": 4, - "rhythm_complexity": 693, - "color_complexity": 0.0064522079293448395 - }, - { - "songno": "168", - "difficulty": "oni", - "note_count": 926, - "density_avg": 7.593528368794326, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 884, - "color_complexity": 0.009431230001141383 - }, - { - "songno": "140", - "difficulty": "oni", - "note_count": 583, - "density_avg": 4.383458646616542, - "density_peak": 9, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 525, - "color_complexity": 0.002023183832199547 - }, - { - "songno": "140", - "difficulty": "ura", - "note_count": 900, - "density_avg": 6.7669172932330826, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 837, - "color_complexity": 0.008599765361353855 - }, - { - "songno": "626", - "difficulty": "oni", - "note_count": 682, - "density_avg": 4.895284115829499, - "density_peak": 11, - "bpm_avg": 207.99706744868035, - "bpm_change": 24, - "scroll_change": 2, - "rhythm_complexity": 562, - "color_complexity": 0.004039241809345363 - }, - { - "songno": "626", - "difficulty": "ura", - "note_count": 1038, - "density_avg": 7.450593712948709, - "density_peak": 15, - "bpm_avg": 208.53082851637765, - "bpm_change": 25, - "scroll_change": 4, - "rhythm_complexity": 903, - "color_complexity": 0.017847570993143443 - }, - { - "songno": "154", - "difficulty": "oni", - "note_count": 750, - "density_avg": 6.42570281124498, - "density_peak": 12, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 713, - "color_complexity": 0.004604810736362368 - }, - { - "songno": "154", - "difficulty": "ura", - "note_count": 715, - "density_avg": 6.125836680053547, - "density_peak": 17, - "bpm_avg": 256, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 667, - "color_complexity": 0.004752308184206484 - }, - { - "songno": "1173", - "difficulty": "oni", - "note_count": 819, - "density_avg": 7.508840864440079, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 28, - "rhythm_complexity": 763, - "color_complexity": 0.009592316471023363 - }, - { - "songno": "381", - "difficulty": "oni", - "note_count": 419, - "density_avg": 3.955742312204971, - "density_peak": 9, - "bpm_avg": 179.26491646778044, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 401, - "color_complexity": 0.001423618560845573 - }, - { - "songno": "395", - "difficulty": "oni", - "note_count": 604, - "density_avg": 5.716088328075709, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.004769519402131342 - }, - { - "songno": "1167", - "difficulty": "oni", - "note_count": 539, - "density_avg": 4.776421090204933, - "density_peak": 12, - "bpm_avg": 166.64849721706867, - "bpm_change": 3, - "scroll_change": 2, - "rhythm_complexity": 486, - "color_complexity": 0.002126566604359518 - }, - { - "songno": "418", - "difficulty": "oni", - "note_count": 611, - "density_avg": 5.251494768310911, - "density_peak": 12, - "bpm_avg": 230, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 537, - "color_complexity": 0.005891019249115084 - }, - { - "songno": "1198", - "difficulty": "oni", - "note_count": 708, - "density_avg": 6.7420152690763615, - "density_peak": 12, - "bpm_avg": 171.34139830508477, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 649, - "color_complexity": 0.005377823739366038 - }, - { - "songno": "424", - "difficulty": "oni", - "note_count": 745, - "density_avg": 5.748614021903536, - "density_peak": 12, - "bpm_avg": 175.00762416107392, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 696, - "color_complexity": 0.00652014459445998 - }, - { - "songno": "342", - "difficulty": "oni", - "note_count": 581, - "density_avg": 5.507109004739336, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 571, - "color_complexity": 0.0032503275206611573 - }, - { - "songno": "356", - "difficulty": "oni", - "note_count": 570, - "density_avg": 6.824712643678161, - "density_peak": 12, - "bpm_avg": 250, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.004513945578231293 - }, - { - "songno": "430", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.0641087130295768, - "density_peak": 7, - "bpm_avg": 129.5, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 286, - "color_complexity": 0.0004704779765432086 - }, - { - "songno": "340", - "difficulty": "oni", - "note_count": 538, - "density_avg": 5.512441783100465, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.004311606674063811 - }, - { - "songno": "432", - "difficulty": "oni", - "note_count": 794, - "density_avg": 6.116246498599439, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 753, - "color_complexity": 0.00808079305414643 - }, - { - "songno": "354", - "difficulty": "oni", - "note_count": 570, - "density_avg": 5.3977272727272725, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 564, - "color_complexity": 0.002888912925905895 - }, - { - "songno": "368", - "difficulty": "oni", - "note_count": 371, - "density_avg": 3.104602510460251, - "density_peak": 6, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 314, - "color_complexity": 0.0006784779177676553 - }, - { - "songno": "368", - "difficulty": "ura", - "note_count": 816, - "density_avg": 6.828451882845188, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 792, - "color_complexity": 0.0035706481632653024 - }, - { - "songno": "383", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.607514805076435, - "density_peak": 13, - "bpm_avg": 124.02398130841125, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 460, - "color_complexity": 0.002628668752946948 - }, - { - "songno": "1171", - "difficulty": "oni", - "note_count": 647, - "density_avg": 5.283593170007424, - "density_peak": 9, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0036800716326530897 - }, - { - "songno": "1171", - "difficulty": "ura", - "note_count": 870, - "density_avg": 7.096774193548388, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 782, - "color_complexity": 0.010293913885739461 - }, - { - "songno": "1165", - "difficulty": "oni", - "note_count": 558, - "density_avg": 5.764462809917355, - "density_peak": 11, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 488, - "color_complexity": 0.005490928601838688 - }, - { - "songno": "397", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.792592592592592, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004892909413672529 - }, - { - "songno": "1159", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.665311653116531, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 623, - "color_complexity": 0.0063370985099839156 - }, - { - "songno": "624", - "difficulty": "oni", - "note_count": 476, - "density_avg": 5.086846152415104, - "density_peak": 11, - "bpm_avg": 158.9903844537815, - "bpm_change": 1, - "scroll_change": 2, - "rhythm_complexity": 387, - "color_complexity": 0.0035114897220843784 - }, - { - "songno": "142", - "difficulty": "oni", - "note_count": 374, - "density_avg": 3.850873679269398, - "density_peak": 8, - "bpm_avg": 160.04160427807486, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 324, - "color_complexity": 0.0010417564725212153 - }, - { - "songno": "156", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.245303225722078, - "density_peak": 9, - "bpm_avg": 129.97355555555555, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 674, - "color_complexity": 0.004324273473088193 - }, - { - "songno": "156", - "difficulty": "ura", - "note_count": 999, - "density_avg": 6.84974891829589, - "density_peak": 11, - "bpm_avg": 129.95784784784786, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 877, - "color_complexity": 0.00870851332771651 - }, - { - "songno": "630", - "difficulty": "oni", - "note_count": 858, - "density_avg": 7.127625186769604, - "density_peak": 14, - "bpm_avg": 197.98951048951048, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 793, - "color_complexity": 0.00996794114110347 - }, - { - "songno": "618", - "difficulty": "oni", - "note_count": 450, - "density_avg": 2.959557859413143, - "density_peak": 7, - "bpm_avg": 104.98897777777778, - "bpm_change": 6, - "scroll_change": 3, - "rhythm_complexity": 342, - "color_complexity": 0.0011989808990196733 - }, - { - "songno": "80", - "difficulty": "oni", - "note_count": 852, - "density_avg": 7.150596370938169, - "density_peak": 12, - "bpm_avg": 164.99647887323943, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 797, - "color_complexity": 0.009185321955568263 - }, - { - "songno": "80", - "difficulty": "ura", - "note_count": 948, - "density_avg": 7.956297370480498, - "density_peak": 13, - "bpm_avg": 164.41244725738397, - "bpm_change": 29, - "scroll_change": 0, - "rhythm_complexity": 859, - "color_complexity": 0.012215325438206293 - }, - { - "songno": "94", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 8.136403720205955, - "density_peak": 15, - "bpm_avg": 190.85495, - "bpm_change": 9, - "scroll_change": 2, - "rhythm_complexity": 951, - "color_complexity": 0.01409292164827618 - }, - { - "songno": "1373", - "difficulty": "oni", - "note_count": 389, - "density_avg": 3.383277456224622, - "density_peak": 9, - "bpm_avg": 144.39680719794342, - "bpm_change": 6, - "scroll_change": 1, - "rhythm_complexity": 361, - "color_complexity": 0.0013883730557553342 - }, - { - "songno": "1415", - "difficulty": "oni", - "note_count": 370, - "density_avg": 4.285714285714286, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 330, - "color_complexity": 0.0013117731039504706 - }, - { - "songno": "181", - "difficulty": "oni", - "note_count": 958, - "density_avg": 7.24543879472693, - "density_peak": 15, - "bpm_avg": 200.79999999999768, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 869, - "color_complexity": 0.013764598164013467 - }, - { - "songno": "181", - "difficulty": "ura", - "note_count": 1001, - "density_avg": 7.562106847253574, - "density_peak": 21, - "bpm_avg": 200.79999999999728, - "bpm_change": 0, - "scroll_change": 97, - "rhythm_complexity": 919, - "color_complexity": 0.015268327419339723 - }, - { - "songno": "1401", - "difficulty": "oni", - "note_count": 919, - "density_avg": 6.608714043993231, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.009734468185586955 - }, - { - "songno": "1367", - "difficulty": "oni", - "note_count": 872, - "density_avg": 7.767708779443255, - "density_peak": 21, - "bpm_avg": 218.9724770642202, - "bpm_change": 14, - "scroll_change": 63, - "rhythm_complexity": 665, - "color_complexity": 0.011174130110903025 - }, - { - "songno": "43", - "difficulty": "oni", - "note_count": 546, - "density_avg": 5.379310344827586, - "density_peak": 12, - "bpm_avg": 198.24175824175825, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 483, - "color_complexity": 0.003468089974759997 - }, - { - "songno": "43", - "difficulty": "ura", - "note_count": 765, - "density_avg": 7.536945812807882, - "density_peak": 17, - "bpm_avg": 201.09803921568627, - "bpm_change": 5, - "scroll_change": 5, - "rhythm_complexity": 687, - "color_complexity": 0.009081133132484391 - }, - { - "songno": "803", - "difficulty": "oni", - "note_count": 1024, - "density_avg": 7.528644499586435, - "density_peak": 13, - "bpm_avg": 222.22000000000105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 974, - "color_complexity": 0.013885935984222594 - }, - { - "songno": "5", - "difficulty": "oni", - "note_count": 848, - "density_avg": 6.189554119655987, - "density_peak": 14, - "bpm_avg": 172.70386792452828, - "bpm_change": 16, - "scroll_change": 15, - "rhythm_complexity": 729, - "color_complexity": 0.0062142659194311944 - }, - { - "songno": "817", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.2587846317066695, - "density_peak": 15, - "bpm_avg": 200.01450980392158, - "bpm_change": 2, - "scroll_change": 4, - "rhythm_complexity": 687, - "color_complexity": 0.008140177011060406 - }, - { - "songno": "750", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "988", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.1264667535853965, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 746, - "color_complexity": 0.006123601198822141 - }, - { - "songno": "778", - "difficulty": "oni", - "note_count": 788, - "density_avg": 7.6928243116510995, - "density_peak": 17, - "bpm_avg": 226.3365989847717, - "bpm_change": 18, - "scroll_change": 66, - "rhythm_complexity": 624, - "color_complexity": 0.008934335726636976 - }, - { - "songno": "1207", - "difficulty": "oni", - "note_count": 759, - "density_avg": 6.469717362045761, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 744, - "color_complexity": 0.005742742061520157 - }, - { - "songno": "793", - "difficulty": "oni", - "note_count": 464, - "density_avg": 4.625766871165644, - "density_peak": 8, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 443, - "color_complexity": 0.0024683435457593067 - }, - { - "songno": "793", - "difficulty": "ura", - "note_count": 591, - "density_avg": 5.891871165644172, - "density_peak": 12, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 556, - "color_complexity": 0.0043461886976781695 - }, - { - "songno": "1213", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.464236760124611, - "density_peak": 10, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 420, - "color_complexity": 0.0032040001926913735 - }, - { - "songno": "1213", - "difficulty": "ura", - "note_count": 768, - "density_avg": 6.555514018691588, - "density_peak": 11, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 684, - "color_complexity": 0.008329307549597185 - }, - { - "songno": "977", - "difficulty": "oni", - "note_count": 892, - "density_avg": 7.692403932082216, - "density_peak": 13, - "bpm_avg": 193, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 841, - "color_complexity": 0.010780358781325997 - }, - { - "songno": "963", - "difficulty": "oni", - "note_count": 677, - "density_avg": 5.6890756302521, - "density_peak": 10, - "bpm_avg": 270, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 631, - "color_complexity": 0.00395600312500001 - }, - { - "songno": "552", - "difficulty": "oni", - "note_count": 602, - "density_avg": 5.3936928971411735, - "density_peak": 10, - "bpm_avg": 152, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 489, - "color_complexity": 0.003873716591605892 - }, - { - "songno": "546", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.668952785064181, - "density_peak": 13, - "bpm_avg": 189.66839215686267, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 733, - "color_complexity": 0.007380945314223218 - }, - { - "songno": "220", - "difficulty": "oni", - "note_count": 774, - "density_avg": 6.923662737987307, - "density_peak": 14, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 705, - "color_complexity": 0.007850868394418726 - }, - { - "songno": "208", - "difficulty": "oni", - "note_count": 328, - "density_avg": 3.975757575757576, - "density_peak": 7, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 318, - "color_complexity": 0.0010996217679012325 - }, - { - "songno": "591", - "difficulty": "oni", - "note_count": 550, - "density_avg": 6.497445721583653, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.006230203253456314 - }, - { - "songno": "1011", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.038678835289004, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.00509121393193868 - }, - { - "songno": "585", - "difficulty": "oni", - "note_count": 876, - "density_avg": 5.694927188900561, - "density_peak": 12, - "bpm_avg": 171.13227168949766, - "bpm_change": 4, - "scroll_change": 2, - "rhythm_complexity": 816, - "color_complexity": 0.006166390185178144 - }, - { - "songno": "1039", - "difficulty": "oni", - "note_count": 979, - "density_avg": 7.178130511463845, - "density_peak": 17, - "bpm_avg": 185.6435137895812, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 910, - "color_complexity": 0.010419887219519058 - }, - { - "songno": "1038", - "difficulty": "oni", - "note_count": 480, - "density_avg": 5.156794425087108, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 472, - "color_complexity": 0.0030464437414256286 - }, - { - "songno": "1010", - "difficulty": "oni", - "note_count": 472, - "density_avg": 4.495238095238095, - "density_peak": 9, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 421, - "color_complexity": 0.003210095557433995 - }, - { - "songno": "1004", - "difficulty": "oni", - "note_count": 482, - "density_avg": 5.816699282452707, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 435, - "color_complexity": 0.004243220327186805 - }, - { - "songno": "209", - "difficulty": "oni", - "note_count": 580, - "density_avg": 5.109935043617381, - "density_peak": 10, - "bpm_avg": 179.98424137931033, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 551, - "color_complexity": 0.002004213840175491 - }, - { - "songno": "547", - "difficulty": "oni", - "note_count": 549, - "density_avg": 4.129386206614364, - "density_peak": 8, - "bpm_avg": 174.987650273224, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.00258447784042387 - }, - { - "songno": "221", - "difficulty": "oni", - "note_count": 673, - "density_avg": 4.823610013175231, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 588, - "color_complexity": 0.003594547763971267 - }, - { - "songno": "221", - "difficulty": "ura", - "note_count": 800, - "density_avg": 5.6978266561927216, - "density_peak": 11, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 600, - "color_complexity": 0.0055468972917958265 - }, - { - "songno": "553", - "difficulty": "oni", - "note_count": 797, - "density_avg": 5.524078525641025, - "density_peak": 12, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 741, - "color_complexity": 0.002769547858070646 - }, - { - "songno": "553", - "difficulty": "ura", - "note_count": 1208, - "density_avg": 8.37275641025641, - "density_peak": 17, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1152, - "color_complexity": 0.017505897085976867 - }, - { - "songno": "962", - "difficulty": "oni", - "note_count": 335, - "density_avg": 3.7120799273387832, - "density_peak": 7, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0008922093844860172 - }, - { - "songno": "976", - "difficulty": "oni", - "note_count": 524, - "density_avg": 4.435978835978836, - "density_peak": 11, - "bpm_avg": 112, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 358, - "color_complexity": 0.003019821877315528 - }, - { - "songno": "1212", - "difficulty": "oni", - "note_count": 251, - "density_avg": 2.894414414414414, - "density_peak": 8, - "bpm_avg": 191.23505976095618, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 219, - "color_complexity": 0.0006565829361958133 - }, - { - "songno": "1212", - "difficulty": "ura", - "note_count": 567, - "density_avg": 6.538378378378378, - "density_peak": 13, - "bpm_avg": 190.64550264550263, - "bpm_change": 2, - "scroll_change": 1, - "rhythm_complexity": 549, - "color_complexity": 0.005807141929427852 - }, - { - "songno": "786", - "difficulty": "oni", - "note_count": 988, - "density_avg": 7.388888888888889, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 943, - "color_complexity": 0.013753718828957654 - }, - { - "songno": "792", - "difficulty": "oni", - "note_count": 429, - "density_avg": 4.927469879518072, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 397, - "color_complexity": 0.002623869131572016 - }, - { - "songno": "1206", - "difficulty": "oni", - "note_count": 817, - "density_avg": 5.805305542396968, - "density_peak": 13, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 13, - "rhythm_complexity": 747, - "color_complexity": 0.006040146188259872 - }, - { - "songno": "779", - "difficulty": "oni", - "note_count": 983, - "density_avg": 8.610558712121211, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 967, - "color_complexity": 0.01307278424703783 - }, - { - "songno": "745", - "difficulty": "oni", - "note_count": 877, - "density_avg": 8.949047686620432, - "density_peak": 16, - "bpm_avg": 147.37856328392246, - "bpm_change": 8, - "scroll_change": 5, - "rhythm_complexity": 764, - "color_complexity": 0.013001368247462165 - }, - { - "songno": "989", - "difficulty": "oni", - "note_count": 702, - "density_avg": 6.253164556962026, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 651, - "color_complexity": 0.006953269428008632 - }, - { - "songno": "751", - "difficulty": "oni", - "note_count": 666, - "density_avg": 6.920083682008368, - "density_peak": 11, - "bpm_avg": 149, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 630, - "color_complexity": 0.005570093432646433 - }, - { - "songno": "816", - "difficulty": "oni", - "note_count": 711, - "density_avg": 5.925, - "density_peak": 13, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 629, - "color_complexity": 0.0071276549487336045 - }, - { - "songno": "816", - "difficulty": "ura", - "note_count": 1044, - "density_avg": 8.660633484162897, - "density_peak": 18, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 911, - "color_complexity": 0.01703051006851917 - }, - { - "songno": "56", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.710526315789474, - "density_peak": 12, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 756, - "color_complexity": 0.006675279915123506 - }, - { - "songno": "42", - "difficulty": "oni", - "note_count": 400, - "density_avg": 3.7340382630016777, - "density_peak": 6, - "bpm_avg": 96.05787499999998, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.0007873908348305684 - }, - { - "songno": "1428", - "difficulty": "oni", - "note_count": 642, - "density_avg": 5.209947643979057, - "density_peak": 10, - "bpm_avg": 186, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 622, - "color_complexity": 0.004437146804600891 - }, - { - "songno": "1400", - "difficulty": "oni", - "note_count": 275, - "density_avg": 3.088499550763702, - "density_peak": 7, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 245, - "color_complexity": 0.0006296764500277547 - }, - { - "songno": "194", - "difficulty": "oni", - "note_count": 818, - "density_avg": 6.905559368565545, - "density_peak": 13, - "bpm_avg": 245.759413202934, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 677, - "color_complexity": 0.00810657808974594 - }, - { - "songno": "1366", - "difficulty": "oni", - "note_count": 463, - "density_avg": 3.9596284023631747, - "density_peak": 7, - "bpm_avg": 206.02371490280777, - "bpm_change": 2, - "scroll_change": 5, - "rhythm_complexity": 412, - "color_complexity": 0.0016158759196483428 - }, - { - "songno": "1366", - "difficulty": "ura", - "note_count": 752, - "density_avg": 6.431189111397639, - "density_peak": 14, - "bpm_avg": 206.02291223404254, - "bpm_change": 2, - "scroll_change": 6, - "rhythm_complexity": 724, - "color_complexity": 0.005002507144932206 - }, - { - "songno": "180", - "difficulty": "oni", - "note_count": 786, - "density_avg": 5.620981988502224, - "density_peak": 13, - "bpm_avg": 185.98715012722644, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 701, - "color_complexity": 0.004677427540990335 - }, - { - "songno": "1414", - "difficulty": "oni", - "note_count": 421, - "density_avg": 3.869485294117647, - "density_peak": 11, - "bpm_avg": 145.90261282660333, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 398, - "color_complexity": 0.0035130826419481854 - }, - { - "songno": "1414", - "difficulty": "ura", - "note_count": 524, - "density_avg": 4.8161764705882355, - "density_peak": 12, - "bpm_avg": 148.7476145038168, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 479, - "color_complexity": 0.004992614716281524 - }, - { - "songno": "95", - "difficulty": "oni", - "note_count": 610, - "density_avg": 5.58260602083915, - "density_peak": 11, - "bpm_avg": 240.00159016393457, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 565, - "color_complexity": 0.0037189892920778535 - }, - { - "songno": "95", - "difficulty": "ura", - "note_count": 861, - "density_avg": 7.879711121217227, - "density_peak": 15, - "bpm_avg": 239.9980371660861, - "bpm_change": 6, - "scroll_change": 8, - "rhythm_complexity": 838, - "color_complexity": 0.009163695198045368 - }, - { - "songno": "81", - "difficulty": "oni", - "note_count": 541, - "density_avg": 4.669449701998124, - "density_peak": 12, - "bpm_avg": 150.1746025877999, - "bpm_change": 15, - "scroll_change": 4, - "rhythm_complexity": 416, - "color_complexity": 0.003117697003649981 - }, - { - "songno": "157", - "difficulty": "oni", - "note_count": 329, - "density_avg": 4.061728395061729, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0010233865435518624 - }, - { - "songno": "625", - "difficulty": "oni", - "note_count": 710, - "density_avg": 5.0643356643356645, - "density_peak": 11, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 23, - "rhythm_complexity": 544, - "color_complexity": 0.004051370988278961 - }, - { - "songno": "1158", - "difficulty": "oni", - "note_count": 680, - "density_avg": 5.405405405405405, - "density_peak": 11, - "bpm_avg": 149.83455882352942, - "bpm_change": 2, - "scroll_change": 152, - "rhythm_complexity": 555, - "color_complexity": 0.005146425544873622 - }, - { - "songno": "1164", - "difficulty": "oni", - "note_count": 725, - "density_avg": 5.320785984848484, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.005186734133242906 - }, - { - "songno": "396", - "difficulty": "oni", - "note_count": 654, - "density_avg": 5.939102564102564, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.005629562145887713 - }, - { - "songno": "1170", - "difficulty": "oni", - "note_count": 765, - "density_avg": 5.102138879561543, - "density_peak": 12, - "bpm_avg": 175.9030065359477, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 719, - "color_complexity": 0.006791863812185975 - }, - { - "songno": "355", - "difficulty": "oni", - "note_count": 835, - "density_avg": 6.893704850361197, - "density_peak": 15, - "bpm_avg": 234.4431137724551, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 804, - "color_complexity": 0.007280447263794931 - }, - { - "songno": "341", - "difficulty": "oni", - "note_count": 481, - "density_avg": 4.598470363288719, - "density_peak": 9, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 451, - "color_complexity": 0.0030258919556248364 - }, - { - "songno": "427", - "difficulty": "oni", - "note_count": 777, - "density_avg": 7.54169888586397, - "density_peak": 14, - "bpm_avg": 171.74774774774775, - "bpm_change": 1, - "scroll_change": 3, - "rhythm_complexity": 712, - "color_complexity": 0.01151430760134732 - }, - { - "songno": "468", - "difficulty": "oni", - "note_count": 292, - "density_avg": 3.8334358974358973, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0011207831735573044 - }, - { - "songno": "440", - "difficulty": "oni", - "note_count": 657, - "density_avg": 5.612581128307539, - "density_peak": 11, - "bpm_avg": 159.9543378995434, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 580, - "color_complexity": 0.005339377185140268 - }, - { - "songno": "454", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.716612868898978, - "density_peak": 13, - "bpm_avg": 185.44401544401543, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 722, - "color_complexity": 0.0080543376503791 - }, - { - "songno": "332", - "difficulty": "oni", - "note_count": 407, - "density_avg": 3.893865243432331, - "density_peak": 7, - "bpm_avg": 128.00653562653562, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 336, - "color_complexity": 0.0008580983056978052 - }, - { - "songno": "483", - "difficulty": "oni", - "note_count": 600, - "density_avg": 4.939965694682676, - "density_peak": 11, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 22, - "rhythm_complexity": 546, - "color_complexity": 0.0042729495382928 - }, - { - "songno": "1117", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.05748884639898, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 412, - "color_complexity": 0.0017342894868998518 - }, - { - "songno": "1103", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.794805194805194, - "density_peak": 9, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 406, - "color_complexity": 0.0017068116335411908 - }, - { - "songno": "1103", - "difficulty": "ura", - "note_count": 699, - "density_avg": 7.2557017543859645, - "density_peak": 15, - "bpm_avg": 142, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.006939321632125484 - }, - { - "songno": "497", - "difficulty": "oni", - "note_count": 666, - "density_avg": 4.994999999999999, - "density_peak": 9, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 522, - "color_complexity": 0.003669970311111108 - }, - { - "songno": "118", - "difficulty": "oni", - "note_count": 366, - "density_avg": 3.8199608610567513, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0015429870175956057 - }, - { - "songno": "118", - "difficulty": "ura", - "note_count": 743, - "density_avg": 7.744625407166123, - "density_peak": 14, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 725, - "color_complexity": 0.00658672465723715 - }, - { - "songno": "642", - "difficulty": "oni", - "note_count": 432, - "density_avg": 5.330386740331492, - "density_peak": 12, - "bpm_avg": 201, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.003803308079232605 - }, - { - "songno": "124", - "difficulty": "oni", - "note_count": 563, - "density_avg": 5.973137697516931, - "density_peak": 10, - "bpm_avg": 141, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 559, - "color_complexity": 0.0038597305257116778 - }, - { - "songno": "25", - "difficulty": "oni", - "note_count": 306, - "density_avg": 3.151415094339623, - "density_peak": 7, - "bpm_avg": 131, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 200, - "color_complexity": 0.0002712413709014524 - }, - { - "songno": "1329", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.863192182410423, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 663, - "color_complexity": 0.006160795551172387 - }, - { - "songno": "1329", - "difficulty": "ura", - "note_count": 999, - "density_avg": 7.645408163265306, - "density_peak": 19, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 18, - "rhythm_complexity": 829, - "color_complexity": 0.016536003856181765 - }, - { - "songno": "865", - "difficulty": "oni", - "note_count": 495, - "density_avg": 4.591022727272727, - "density_peak": 10, - "bpm_avg": 134.6699999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.002745650613135159 - }, - { - "songno": "31", - "difficulty": "oni", - "note_count": 777, - "density_avg": 5.74304347826087, - "density_peak": 13, - "bpm_avg": 153, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.006213240279046773 - }, - { - "songno": "19", - "difficulty": "oni", - "note_count": 698, - "density_avg": 5.577897974853846, - "density_peak": 10, - "bpm_avg": 140.006446991404, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 642, - "color_complexity": 0.0046518737926312306 - }, - { - "songno": "1315", - "difficulty": "oni", - "note_count": 569, - "density_avg": 6.446630888491353, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 554, - "color_complexity": 0.003647510369425553 - }, - { - "songno": "681", - "difficulty": "oni", - "note_count": 751, - "density_avg": 6.2405033238366565, - "density_peak": 11, - "bpm_avg": 349.53657789613845, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 708, - "color_complexity": 0.006770403176708602 - }, - { - "songno": "681", - "difficulty": "ura", - "note_count": 909, - "density_avg": 7.553418803418803, - "density_peak": 13, - "bpm_avg": 349.61712871287125, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 874, - "color_complexity": 0.013146867034298846 - }, - { - "songno": "859", - "difficulty": "oni", - "note_count": 821, - "density_avg": 7.278368794326242, - "density_peak": 16, - "bpm_avg": 174.78684531059685, - "bpm_change": 3, - "scroll_change": 12, - "rhythm_complexity": 680, - "color_complexity": 0.012195921288757045 - }, - { - "songno": "695", - "difficulty": "oni", - "note_count": 901, - "density_avg": 8.029591334318068, - "density_peak": 13, - "bpm_avg": 181, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 852, - "color_complexity": 0.010235725579828603 - }, - { - "songno": "1301", - "difficulty": "oni", - "note_count": 270, - "density_avg": 3.205128205128205, - "density_peak": 6, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 232, - "color_complexity": 0.0007651638374485593 - }, - { - "songno": "736", - "difficulty": "oni", - "note_count": 498, - "density_avg": 3.924600638977636, - "density_peak": 8, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 433, - "color_complexity": 0.002857194018570982 - }, - { - "songno": "736", - "difficulty": "ura", - "note_count": 829, - "density_avg": 6.533120340788072, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 687, - "color_complexity": 0.009636496234714059 - }, - { - "songno": "722", - "difficulty": "oni", - "note_count": 832, - "density_avg": 6.7697589141275545, - "density_peak": 15, - "bpm_avg": 210.98557692307693, - "bpm_change": 17, - "scroll_change": 7, - "rhythm_complexity": 771, - "color_complexity": 0.008627312496384442 - }, - { - "songno": "911", - "difficulty": "oni", - "note_count": 550, - "density_avg": 4.521674140508221, - "density_peak": 9, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.00304304982072175 - }, - { - "songno": "911", - "difficulty": "ura", - "note_count": 833, - "density_avg": 6.848281016442452, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 728, - "color_complexity": 0.007040081648242609 - }, - { - "songno": "905", - "difficulty": "oni", - "note_count": 747, - "density_avg": 6.766304347826087, - "density_peak": 17, - "bpm_avg": 243.80856760374832, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 684, - "color_complexity": 0.013035318604540649 - }, - { - "songno": "1249", - "difficulty": "oni", - "note_count": 809, - "density_avg": 6.241366642174872, - "density_peak": 13, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 743, - "color_complexity": 0.008287972475140527 - }, - { - "songno": "1249", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 8.921368765926465, - "density_peak": 19, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1001, - "color_complexity": 0.019728057499140254 - }, - { - "songno": "1261", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "939", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1275", - "difficulty": "oni", - "note_count": 512, - "density_avg": 4.447339847991314, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 476, - "color_complexity": 0.0029049006846869076 - }, - { - "songno": "1088", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.4275303643724695, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 299, - "color_complexity": 0.0009625791821487533 - }, - { - "songno": "1088", - "difficulty": "ura", - "note_count": 669, - "density_avg": 7.181435487265839, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 661, - "color_complexity": 0.004905382530864201 - }, - { - "songno": "252", - "difficulty": "oni", - "note_count": 802, - "density_avg": 5.370859728506788, - "density_peak": 12, - "bpm_avg": 177.60000000000267, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 785, - "color_complexity": 0.005244939571555594 - }, - { - "songno": "534", - "difficulty": "oni", - "note_count": 554, - "density_avg": 4.682173228182733, - "density_peak": 9, - "bpm_avg": 160.12050541516214, - "bpm_change": 33, - "scroll_change": 2, - "rhythm_complexity": 476, - "color_complexity": 0.0026761583506185365 - }, - { - "songno": "520", - "difficulty": "oni", - "note_count": 1071, - "density_avg": 6.69375, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1024, - "color_complexity": 0.005957452838151928 - }, - { - "songno": "520", - "difficulty": "ura", - "note_count": 1408, - "density_avg": 8.8, - "density_peak": 13, - "bpm_avg": 183, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1339, - "color_complexity": 0.014006391813888871 - }, - { - "songno": "246", - "difficulty": "oni", - "note_count": 397, - "density_avg": 3.19240790655885, - "density_peak": 7, - "bpm_avg": 179, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 365, - "color_complexity": 0.0009459781568985699 - }, - { - "songno": "291", - "difficulty": "oni", - "note_count": 722, - "density_avg": 4.458657335161869, - "density_peak": 10, - "bpm_avg": 138.49015235457057, - "bpm_change": 65, - "scroll_change": 5, - "rhythm_complexity": 570, - "color_complexity": 0.003939506226192449 - }, - { - "songno": "1063", - "difficulty": "oni", - "note_count": 233, - "density_avg": 3.126412429378531, - "density_peak": 7, - "bpm_avg": 95, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 213, - "color_complexity": 0.0005572428665910098 - }, - { - "songno": "1077", - "difficulty": "oni", - "note_count": 661, - "density_avg": 4.362489557226399, - "density_peak": 8, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 615, - "color_complexity": 0.0021825557321554574 - }, - { - "songno": "1077", - "difficulty": "ura", - "note_count": 978, - "density_avg": 6.454636591478696, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 933, - "color_complexity": 0.008111015328558846 - }, - { - "songno": "285", - "difficulty": "oni", - "note_count": 831, - "density_avg": 4.739777777777777, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 780, - "color_complexity": 0.003950487947050744 - }, - { - "songno": "285", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 5.703703703703703, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 930, - "color_complexity": 0.007952864150925951 - }, - { - "songno": "1076", - "difficulty": "oni", - "note_count": 268, - "density_avg": 3.172149695387293, - "density_peak": 7, - "bpm_avg": 136, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 252, - "color_complexity": 0.0007572133486028209 - }, - { - "songno": "284", - "difficulty": "oni", - "note_count": 480, - "density_avg": 4.188481675392671, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0020017827356111403 - }, - { - "songno": "284", - "difficulty": "ura", - "note_count": 688, - "density_avg": 6.083112290008842, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 656, - "color_complexity": 0.007194786523731172 - }, - { - "songno": "1062", - "difficulty": "oni", - "note_count": 411, - "density_avg": 4.765217391304348, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 386, - "color_complexity": 0.0023948800302751533 - }, - { - "songno": "247", - "difficulty": "oni", - "note_count": 463, - "density_avg": 5.401666666666666, - "density_peak": 12, - "bpm_avg": 196, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 425, - "color_complexity": 0.003573478522824629 - }, - { - "songno": "253", - "difficulty": "oni", - "note_count": 485, - "density_avg": 5.574712643678161, - "density_peak": 11, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.003843793398841019 - }, - { - "songno": "253", - "difficulty": "ura", - "note_count": 636, - "density_avg": 7.341991341991342, - "density_peak": 12, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 11, - "rhythm_complexity": 604, - "color_complexity": 0.006129374814814834 - }, - { - "songno": "535", - "difficulty": "oni", - "note_count": 410, - "density_avg": 4.874341610233258, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 378, - "color_complexity": 0.0018738400167455378 - }, - { - "songno": "1089", - "difficulty": "oni", - "note_count": 461, - "density_avg": 5.274367436743675, - "density_peak": 8, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 396, - "color_complexity": 0.002109912667673027 - }, - { - "songno": "1274", - "difficulty": "oni", - "note_count": 644, - "density_avg": 4.409819121447028, - "density_peak": 11, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 15, - "rhythm_complexity": 571, - "color_complexity": 0.00229482111491551 - }, - { - "songno": "1274", - "difficulty": "ura", - "note_count": 906, - "density_avg": 6.203875968992248, - "density_peak": 13, - "bpm_avg": 212, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 855, - "color_complexity": 0.006991300047894472 - }, - { - "songno": "938", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.30130548302872, - "density_peak": 11, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.004930845866851957 - }, - { - "songno": "938", - "difficulty": "ura", - "note_count": 893, - "density_avg": 7.305657093124455, - "density_peak": 13, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 850, - "color_complexity": 0.011765853918948962 - }, - { - "songno": "1260", - "difficulty": "oni", - "note_count": 645, - "density_avg": 7.002640845070423, - "density_peak": 16, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.00848659151846375 - }, - { - "songno": "1248", - "difficulty": "oni", - "note_count": 487, - "density_avg": 3.7716588986949344, - "density_peak": 11, - "bpm_avg": 128.1006160164271, - "bpm_change": 9, - "scroll_change": 26, - "rhythm_complexity": 365, - "color_complexity": 0.0023718757897255582 - }, - { - "songno": "910", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.592857142857143, - "density_peak": 14, - "bpm_avg": 195, - "bpm_change": 0, - "scroll_change": 10, - "rhythm_complexity": 607, - "color_complexity": 0.0070297102040816455 - }, - { - "songno": "723", - "difficulty": "oni", - "note_count": 818, - "density_avg": 7.316013628620102, - "density_peak": 17, - "bpm_avg": 208.86308068459658, - "bpm_change": 1, - "scroll_change": 16, - "rhythm_complexity": 766, - "color_complexity": 0.01543448357574908 - }, - { - "songno": "737", - "difficulty": "oni", - "note_count": 851, - "density_avg": 7.058681780924423, - "density_peak": 14, - "bpm_avg": 255.14688601645125, - "bpm_change": 6, - "scroll_change": 14, - "rhythm_complexity": 812, - "color_complexity": 0.009798307375454942 - }, - { - "songno": "1300", - "difficulty": "oni", - "note_count": 277, - "density_avg": 3.3390985324947593, - "density_peak": 6, - "bpm_avg": 115, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 247, - "color_complexity": 0.0007231685106202011 - }, - { - "songno": "694", - "difficulty": "oni", - "note_count": 304, - "density_avg": 2.4184271476732855, - "density_peak": 5, - "bpm_avg": 86.27661842105262, - "bpm_change": 11, - "scroll_change": 1, - "rhythm_complexity": 134, - "color_complexity": 0.0005287222518615498 - }, - { - "songno": "858", - "difficulty": "oni", - "note_count": 756, - "density_avg": 8.116055889434469, - "density_peak": 19, - "bpm_avg": 258.07473544973544, - "bpm_change": 5, - "scroll_change": 4, - "rhythm_complexity": 606, - "color_complexity": 0.01259380808891444 - }, - { - "songno": "680", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.306436781609195, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 776, - "color_complexity": 0.01018153529428208 - }, - { - "songno": "1314", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.5234415249871205, - "density_peak": 9, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 385, - "color_complexity": 0.0015259255319242464 - }, - { - "songno": "18", - "difficulty": "oni", - "note_count": 233, - "density_avg": 2.3241161616161614, - "density_peak": 6, - "bpm_avg": 79, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 195, - "color_complexity": 0.00044659974301822084 - }, - { - "songno": "864", - "difficulty": "oni", - "note_count": 882, - "density_avg": 5.9638297297297305, - "density_peak": 12, - "bpm_avg": 150.11000000000038, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 773, - "color_complexity": 0.0071132767572012635 - }, - { - "songno": "1328", - "difficulty": "oni", - "note_count": 1020, - "density_avg": 7.639776181874257, - "density_peak": 15, - "bpm_avg": 167.97058823529412, - "bpm_change": 9, - "scroll_change": 1, - "rhythm_complexity": 866, - "color_complexity": 0.012699294447011882 - }, - { - "songno": "131", - "difficulty": "oni", - "note_count": 876, - "density_avg": 7.1615676359039195, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 840, - "color_complexity": 0.009776475112071855 - }, - { - "songno": "496", - "difficulty": "oni", - "note_count": 666, - "density_avg": 5.5812236286919825, - "density_peak": 12, - "bpm_avg": 142.92192192192192, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 613, - "color_complexity": 0.004533200876904673 - }, - { - "songno": "1102", - "difficulty": "oni", - "note_count": 263, - "density_avg": 3.8770077007700774, - "density_peak": 6, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 229, - "color_complexity": 0.0004279434841514448 - }, - { - "songno": "1116", - "difficulty": "oni", - "note_count": 412, - "density_avg": 4.790697674418604, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 383, - "color_complexity": 0.0024907495874056927 - }, - { - "songno": "1116", - "difficulty": "ura", - "note_count": 600, - "density_avg": 6.976744186046512, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 569, - "color_complexity": 0.00560416025449816 - }, - { - "songno": "482", - "difficulty": "oni", - "note_count": 346, - "density_avg": 2.9666666666666663, - "density_peak": 8, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 313, - "color_complexity": 0.0006757930263849239 - }, - { - "songno": "482", - "difficulty": "ura", - "note_count": 513, - "density_avg": 4.398554913294797, - "density_peak": 12, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 480, - "color_complexity": 0.0035907131067730576 - }, - { - "songno": "455", - "difficulty": "oni", - "note_count": 441, - "density_avg": 4.1903055443863675, - "density_peak": 13, - "bpm_avg": 126.00394557823128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 381, - "color_complexity": 0.001977270342343761 - }, - { - "songno": "333", - "difficulty": "oni", - "note_count": 225, - "density_avg": 2.486187845303867, - "density_peak": 7, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 193, - "color_complexity": 0.00022257125724363814 - }, - { - "songno": "441", - "difficulty": "oni", - "note_count": 951, - "density_avg": 7.644336795390784, - "density_peak": 19, - "bpm_avg": 241.40495268138804, - "bpm_change": 9, - "scroll_change": 29, - "rhythm_complexity": 831, - "color_complexity": 0.01139316057942693 - }, - { - "songno": "469", - "difficulty": "oni", - "note_count": 468, - "density_avg": 4.18925831202046, - "density_peak": 8, - "bpm_avg": 105, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 442, - "color_complexity": 0.001774896406877779 - }, - { - "songno": "319", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.28423676012461, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0027857307485154507 - }, - { - "songno": "331", - "difficulty": "oni", - "note_count": 794, - "density_avg": 7.565777217437103, - "density_peak": 25, - "bpm_avg": 234.34867758186388, - "bpm_change": 5, - "scroll_change": 0, - "rhythm_complexity": 748, - "color_complexity": 0.011788821284054146 - }, - { - "songno": "457", - "difficulty": "oni", - "note_count": 683, - "density_avg": 4.904137947063638, - "density_peak": 10, - "bpm_avg": 165.31679355783308, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 634, - "color_complexity": 0.005521762476981634 - }, - { - "songno": "457", - "difficulty": "ura", - "note_count": 1142, - "density_avg": 8.036951747666846, - "density_peak": 18, - "bpm_avg": 166.5690455341506, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 913, - "color_complexity": 0.011444538633832872 - }, - { - "songno": "443", - "difficulty": "oni", - "note_count": 480, - "density_avg": 3.9844357976653693, - "density_peak": 8, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 3, - "rhythm_complexity": 441, - "color_complexity": 0.0021895043268307965 - }, - { - "songno": "1100", - "difficulty": "oni", - "note_count": 627, - "density_avg": 4.823076923076922, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 579, - "color_complexity": 0.0021371049502445848 - }, - { - "songno": "1100", - "difficulty": "ura", - "note_count": 1107, - "density_avg": 8.179802955665025, - "density_peak": 17, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 999, - "color_complexity": 0.013102841020408195 - }, - { - "songno": "480", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.398998330550919, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.0018797628022121156 - }, - { - "songno": "1114", - "difficulty": "oni", - "note_count": 369, - "density_avg": 4.786699507389163, - "density_peak": 9, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 363, - "color_complexity": 0.0010793154580246889 - }, - { - "songno": "133", - "difficulty": "oni", - "note_count": 544, - "density_avg": 5.0057545623698445, - "density_peak": 10, - "bpm_avg": 144.92279411764707, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0032187253988867075 - }, - { - "songno": "127", - "difficulty": "oni", - "note_count": 682, - "density_avg": 5.927693018955154, - "density_peak": 10, - "bpm_avg": 188, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 639, - "color_complexity": 0.005087802207716049 - }, - { - "songno": "641", - "difficulty": "oni", - "note_count": 858, - "density_avg": 6.359351596313936, - "density_peak": 13, - "bpm_avg": 183.46736596736596, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 754, - "color_complexity": 0.007526604336568293 - }, - { - "songno": "32", - "difficulty": "oni", - "note_count": 644, - "density_avg": 5.0825386386057225, - "density_peak": 11, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.002612798357609391 - }, - { - "songno": "26", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.028589263420724, - "density_peak": 9, - "bpm_avg": 122, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 497, - "color_complexity": 0.002527332777864558 - }, - { - "songno": "866", - "difficulty": "oni", - "note_count": 734, - "density_avg": 5.45085665999179, - "density_peak": 13, - "bpm_avg": 217.26135013623974, - "bpm_change": 43, - "scroll_change": 48, - "rhythm_complexity": 613, - "color_complexity": 0.009144396327225066 - }, - { - "songno": "866", - "difficulty": "ura", - "note_count": 1059, - "density_avg": 7.81759859835489, - "density_peak": 19, - "bpm_avg": 219.09038054768666, - "bpm_change": 45, - "scroll_change": 50, - "rhythm_complexity": 951, - "color_complexity": 0.01660116475855062 - }, - { - "songno": "1302", - "difficulty": "oni", - "note_count": 224, - "density_avg": 3.0713947990543735, - "density_peak": 6, - "bpm_avg": 174, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 198, - "color_complexity": 0.0005196148454731401 - }, - { - "songno": "1316", - "difficulty": "oni", - "note_count": 365, - "density_avg": 4.258333333333334, - "density_peak": 9, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 337, - "color_complexity": 0.0013286353470143718 - }, - { - "songno": "709", - "difficulty": "oni", - "note_count": 405, - "density_avg": 4.732472324723247, - "density_peak": 11, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 387, - "color_complexity": 0.0016200186091317227 - }, - { - "songno": "721", - "difficulty": "oni", - "note_count": 923, - "density_avg": 7.917892156862746, - "density_peak": 15, - "bpm_avg": 204.88082340195015, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 825, - "color_complexity": 0.012838028494088861 - }, - { - "songno": "721", - "difficulty": "ura", - "note_count": 1167, - "density_avg": 9.548801870251314, - "density_peak": 26, - "bpm_avg": 204.24164524421593, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1051, - "color_complexity": 0.022632751140664233 - }, - { - "songno": "735", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.531003382187148, - "density_peak": 10, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 629, - "color_complexity": 0.003388610484622033 - }, - { - "songno": "735", - "difficulty": "ura", - "note_count": 1000, - "density_avg": 8.267568583239383, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 48, - "rhythm_complexity": 952, - "color_complexity": 0.01657038160020572 - }, - { - "songno": "906", - "difficulty": "oni", - "note_count": 696, - "density_avg": 7.472659176029962, - "density_peak": 15, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 624, - "color_complexity": 0.00839009090689488 - }, - { - "songno": "1276", - "difficulty": "oni", - "note_count": 788, - "density_avg": 6.493214019388516, - "density_peak": 13, - "bpm_avg": 216.7317972715736, - "bpm_change": 5, - "scroll_change": 8, - "rhythm_complexity": 688, - "color_complexity": 0.007771442995791033 - }, - { - "songno": "1276", - "difficulty": "ura", - "note_count": 982, - "density_avg": 8.089534992079024, - "density_peak": 17, - "bpm_avg": 217.068641802444, - "bpm_change": 5, - "scroll_change": 10, - "rhythm_complexity": 796, - "color_complexity": 0.015560678058738977 - }, - { - "songno": "1262", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "279", - "difficulty": "oni", - "note_count": 708, - "density_avg": 5.401634877384196, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 681, - "color_complexity": 0.0056647583111110985 - }, - { - "songno": "523", - "difficulty": "oni", - "note_count": 441, - "density_avg": 3.7142857142857144, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.001784775393817142 - }, - { - "songno": "537", - "difficulty": "oni", - "note_count": 889, - "density_avg": 6.808141878274888, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 875, - "color_complexity": 0.0073329498418997115 - }, - { - "songno": "537", - "difficulty": "ura", - "note_count": 1083, - "density_avg": 8.313939393939394, - "density_peak": 16, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 1024, - "color_complexity": 0.013760207343649366 - }, - { - "songno": "251", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.363757416230901, - "density_peak": 13, - "bpm_avg": 186.34351949420443, - "bpm_change": 3, - "scroll_change": 8, - "rhythm_complexity": 902, - "color_complexity": 0.00947505778911815 - }, - { - "songno": "1048", - "difficulty": "oni", - "note_count": 833, - "density_avg": 6.0745706892495885, - "density_peak": 16, - "bpm_avg": 303.39435774309726, - "bpm_change": 10, - "scroll_change": 2, - "rhythm_complexity": 731, - "color_complexity": 0.0073422698513376265 - }, - { - "songno": "1048", - "difficulty": "ura", - "note_count": 1210, - "density_avg": 8.823806163255703, - "density_peak": 20, - "bpm_avg": 306.797520661157, - "bpm_change": 6, - "scroll_change": 2, - "rhythm_complexity": 1104, - "color_complexity": 0.02650355526827244 - }, - { - "songno": "286", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.269201444823582, - "density_peak": 15, - "bpm_avg": 208.30490236382323, - "bpm_change": 10, - "scroll_change": 10, - "rhythm_complexity": 907, - "color_complexity": 0.014135846372470484 - }, - { - "songno": "1074", - "difficulty": "oni", - "note_count": 275, - "density_avg": 1.7748151589665229, - "density_peak": 5, - "bpm_avg": 130.66709090909075, - "bpm_change": 11, - "scroll_change": 7, - "rhythm_complexity": 207, - "color_complexity": 0.00027986797386202303 - }, - { - "songno": "1060", - "difficulty": "oni", - "note_count": 500, - "density_avg": 5.930470347648262, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.002777855949231541 - }, - { - "songno": "1061", - "difficulty": "oni", - "note_count": 436, - "density_avg": 5.065082508250826, - "density_peak": 9, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 420, - "color_complexity": 0.0025310427215227017 - }, - { - "songno": "1061", - "difficulty": "ura", - "note_count": 641, - "density_avg": 7.439235080778107, - "density_peak": 16, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.006176335937067828 - }, - { - "songno": "293", - "difficulty": "oni", - "note_count": 567, - "density_avg": 4.9115131578947375, - "density_peak": 10, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 528, - "color_complexity": 0.003279314286055951 - }, - { - "songno": "287", - "difficulty": "oni", - "note_count": 603, - "density_avg": 4.9213917525773185, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 599, - "color_complexity": 0.002723945555555559 - }, - { - "songno": "1075", - "difficulty": "oni", - "note_count": 412, - "density_avg": 3.9806763285024154, - "density_peak": 8, - "bpm_avg": 120, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 393, - "color_complexity": 0.001552322414077725 - }, - { - "songno": "1049", - "difficulty": "oni", - "note_count": 904, - "density_avg": 7.082621082621083, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 778, - "color_complexity": 0.011640283195851569 - }, - { - "songno": "536", - "difficulty": "oni", - "note_count": 799, - "density_avg": 6.234971098265896, - "density_peak": 11, - "bpm_avg": 162, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.006309692173469361 - }, - { - "songno": "250", - "difficulty": "oni", - "note_count": 431, - "density_avg": 4.221134020618557, - "density_peak": 7, - "bpm_avg": 114, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 419, - "color_complexity": 0.001356092488888879 - }, - { - "songno": "278", - "difficulty": "oni", - "note_count": 453, - "density_avg": 4.724022346368715, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 427, - "color_complexity": 0.00194132242501966 - }, - { - "songno": "278", - "difficulty": "ura", - "note_count": 541, - "density_avg": 5.648023862788963, - "density_peak": 11, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 496, - "color_complexity": 0.003116365466390776 - }, - { - "songno": "1263", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.251612903225807, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 692, - "color_complexity": 0.007549012601546125 - }, - { - "songno": "1277", - "difficulty": "oni", - "note_count": 491, - "density_avg": 5.385740402193784, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 428, - "color_complexity": 0.002492755502040824 - }, - { - "songno": "913", - "difficulty": "oni", - "note_count": 363, - "density_avg": 4.1119047619047615, - "density_peak": 8, - "bpm_avg": 157, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 323, - "color_complexity": 0.0012284065765495128 - }, - { - "songno": "907", - "difficulty": "oni", - "note_count": 782, - "density_avg": 6.61590524534687, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 766, - "color_complexity": 0.0077117502362762935 - }, - { - "songno": "734", - "difficulty": "oni", - "note_count": 1000, - "density_avg": 7.751937984496124, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 970, - "color_complexity": 0.012236749636918528 - }, - { - "songno": "720", - "difficulty": "oni", - "note_count": 949, - "density_avg": 6.019466316710411, - "density_peak": 16, - "bpm_avg": 163.7781875658588, - "bpm_change": 13, - "scroll_change": 6, - "rhythm_complexity": 715, - "color_complexity": 0.01109974827783315 - }, - { - "songno": "1317", - "difficulty": "oni", - "note_count": 1234, - "density_avg": 9.02537216828479, - "density_peak": 23, - "bpm_avg": 226, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1091, - "color_complexity": 0.017659061497894216 - }, - { - "songno": "1303", - "difficulty": "oni", - "note_count": 331, - "density_avg": 3.787117117117117, - "density_peak": 7, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 262, - "color_complexity": 0.000637195013216569 - }, - { - "songno": "1303", - "difficulty": "ura", - "note_count": 548, - "density_avg": 6.26990990990991, - "density_peak": 10, - "bpm_avg": 127, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 535, - "color_complexity": 0.0038538314767354843 - }, - { - "songno": "697", - "difficulty": "oni", - "note_count": 944, - "density_avg": 8.292297899427117, - "density_peak": 15, - "bpm_avg": 207, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 885, - "color_complexity": 0.01912440595191157 - }, - { - "songno": "1465", - "difficulty": "oni", - "note_count": 779, - "density_avg": 5.435659246575343, - "density_peak": 10, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 688, - "color_complexity": 0.004299677582128451 - }, - { - "songno": "1465", - "difficulty": "ura", - "note_count": 1226, - "density_avg": 8.51098807495741, - "density_peak": 15, - "bpm_avg": 326, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 1153, - "color_complexity": 0.020153963714935035 - }, - { - "songno": "867", - "difficulty": "oni", - "note_count": 797, - "density_avg": 6.747089947089947, - "density_peak": 13, - "bpm_avg": 208, - "bpm_change": 0, - "scroll_change": 128, - "rhythm_complexity": 711, - "color_complexity": 0.010588617046977307 - }, - { - "songno": "27", - "difficulty": "oni", - "note_count": 507, - "density_avg": 4.489850746268657, - "density_peak": 9, - "bpm_avg": 178, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 463, - "color_complexity": 0.0021718089383166426 - }, - { - "songno": "33", - "difficulty": "oni", - "note_count": 1134, - "density_avg": 8.508038585209004, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 1084, - "color_complexity": 0.02041182051630919 - }, - { - "songno": "126", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.4937901482506324, - "density_peak": 9, - "bpm_avg": 131.52388333333312, - "bpm_change": 48, - "scroll_change": 5, - "rhythm_complexity": 286, - "color_complexity": 0.0013998820823004033 - }, - { - "songno": "640", - "difficulty": "oni", - "note_count": 614, - "density_avg": 5.6095332671300895, - "density_peak": 11, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 519, - "color_complexity": 0.004641319526988624 - }, - { - "songno": "898", - "difficulty": "oni", - "note_count": 580, - "density_avg": 3.877495908984278, - "density_peak": 9, - "bpm_avg": 150.02112068965528, - "bpm_change": 19, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.001957649136187011 - }, - { - "songno": "898", - "difficulty": "ura", - "note_count": 938, - "density_avg": 6.368815541641498, - "density_peak": 15, - "bpm_avg": 149.99675906183387, - "bpm_change": 17, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.00939578637419635 - }, - { - "songno": "654", - "difficulty": "oni", - "note_count": 616, - "density_avg": 3.92536183938386, - "density_peak": 10, - "bpm_avg": 186.79998376623294, - "bpm_change": 41, - "scroll_change": 6, - "rhythm_complexity": 470, - "color_complexity": 0.0028585566705724417 - }, - { - "songno": "132", - "difficulty": "oni", - "note_count": 563, - "density_avg": 4.691666666666667, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 511, - "color_complexity": 0.002632860677335451 - }, - { - "songno": "668", - "difficulty": "oni", - "note_count": 156, - "density_avg": 3.177829262914469, - "density_peak": 7, - "bpm_avg": 135.98147435897434, - "bpm_change": 11, - "scroll_change": 13, - "rhythm_complexity": 127, - "color_complexity": 0.0008434745846855931 - }, - { - "songno": "1115", - "difficulty": "oni", - "note_count": 542, - "density_avg": 4.168462926836902, - "density_peak": 9, - "bpm_avg": 174.25453874538744, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 508, - "color_complexity": 0.00322141847576798 - }, - { - "songno": "481", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.73644578313253, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 517, - "color_complexity": 0.0047526776359383405 - }, - { - "songno": "481", - "difficulty": "ura", - "note_count": 475, - "density_avg": 4.053714859437751, - "density_peak": 8, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.0018344381725787617 - }, - { - "songno": "495", - "difficulty": "oni", - "note_count": 993, - "density_avg": 7.860899067005938, - "density_peak": 13, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 791, - "color_complexity": 0.012232142048901003 - }, - { - "songno": "1101", - "difficulty": "oni", - "note_count": 495, - "density_avg": 5.7894736842105265, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 465, - "color_complexity": 0.0032142460871756066 - }, - { - "songno": "1129", - "difficulty": "oni", - "note_count": 973, - "density_avg": 7.159734126855776, - "density_peak": 15, - "bpm_avg": 296.9753340184995, - "bpm_change": 2, - "scroll_change": 7, - "rhythm_complexity": 923, - "color_complexity": 0.009354891517815087 - }, - { - "songno": "1129", - "difficulty": "ura", - "note_count": 1365, - "density_avg": 10.044231329042274, - "density_peak": 20, - "bpm_avg": 296.7956043956044, - "bpm_change": 2, - "scroll_change": 15, - "rhythm_complexity": 1282, - "color_complexity": 0.02926541851588723 - }, - { - "songno": "442", - "difficulty": "oni", - "note_count": 806, - "density_avg": 7.122371364653243, - "density_peak": 12, - "bpm_avg": 237, - "bpm_change": 0, - "scroll_change": 20, - "rhythm_complexity": 734, - "color_complexity": 0.009553534772088045 - }, - { - "songno": "324", - "difficulty": "oni", - "note_count": 697, - "density_avg": 4.525265259199076, - "density_peak": 10, - "bpm_avg": 268.00206599713056, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 620, - "color_complexity": 0.003041911468725504 - }, - { - "songno": "324", - "difficulty": "ura", - "note_count": 765, - "density_avg": 4.966754552779474, - "density_peak": 12, - "bpm_avg": 268.00470588235294, - "bpm_change": 1, - "scroll_change": 22, - "rhythm_complexity": 692, - "color_complexity": 0.006480207457907696 - }, - { - "songno": "456", - "difficulty": "oni", - "note_count": 1052, - "density_avg": 6.975627240143369, - "density_peak": 15, - "bpm_avg": 296, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 1020, - "color_complexity": 0.0104755202393025 - }, - { - "songno": "452", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.981268011527377, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 729, - "color_complexity": 0.009637653491878782 - }, - { - "songno": "446", - "difficulty": "oni", - "note_count": 700, - "density_avg": 6.244131455399061, - "density_peak": 12, - "bpm_avg": 171, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 623, - "color_complexity": 0.006658715071534216 - }, - { - "songno": "308", - "difficulty": "oni", - "note_count": 529, - "density_avg": 4.795676429567643, - "density_peak": 7, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 507, - "color_complexity": 0.00253320567901235 - }, - { - "songno": "1105", - "difficulty": "oni", - "note_count": 463, - "density_avg": 4.185310734463277, - "density_peak": 9, - "bpm_avg": 160, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 424, - "color_complexity": 0.002284756822053213 - }, - { - "songno": "491", - "difficulty": "oni", - "note_count": 932, - "density_avg": 6.502331793527954, - "density_peak": 14, - "bpm_avg": 161.98175965665223, - "bpm_change": 3, - "scroll_change": 1, - "rhythm_complexity": 856, - "color_complexity": 0.00782917512138684 - }, - { - "songno": "1111", - "difficulty": "oni", - "note_count": 466, - "density_avg": 5.501388888888889, - "density_peak": 10, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 446, - "color_complexity": 0.002801646771296996 - }, - { - "songno": "1139", - "difficulty": "oni", - "note_count": 728, - "density_avg": 5.968747990482927, - "density_peak": 11, - "bpm_avg": 152.99175824175825, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 604, - "color_complexity": 0.0052596733884919394 - }, - { - "songno": "136", - "difficulty": "oni", - "note_count": 814, - "density_avg": 7.643192488262911, - "density_peak": 16, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 764, - "color_complexity": 0.010545037209956436 - }, - { - "songno": "888", - "difficulty": "oni", - "note_count": 606, - "density_avg": 5.460512681214576, - "density_peak": 11, - "bpm_avg": 144.99224422442217, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 514, - "color_complexity": 0.0030275976389252494 - }, - { - "songno": "650", - "difficulty": "oni", - "note_count": 639, - "density_avg": 6.469626168224299, - "density_peak": 10, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 608, - "color_complexity": 0.0041490764891975365 - }, - { - "songno": "644", - "difficulty": "oni", - "note_count": 526, - "density_avg": 3.742728343561653, - "density_peak": 10, - "bpm_avg": 195.00511406844106, - "bpm_change": 3, - "scroll_change": 3, - "rhythm_complexity": 490, - "color_complexity": 0.00343634256456614 - }, - { - "songno": "122", - "difficulty": "oni", - "note_count": 321, - "density_avg": 3.6626159554730977, - "density_peak": 8, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 243, - "color_complexity": 0.001234696834722224 - }, - { - "songno": "678", - "difficulty": "oni", - "note_count": 332, - "density_avg": 3.8727205610926547, - "density_peak": 11, - "bpm_avg": 158, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 298, - "color_complexity": 0.0009340853032533977 - }, - { - "songno": "693", - "difficulty": "oni", - "note_count": 569, - "density_avg": 5.2436549692893575, - "density_peak": 10, - "bpm_avg": 181.52077328646715, - "bpm_change": 30, - "scroll_change": 1, - "rhythm_complexity": 494, - "color_complexity": 0.003001491882724897 - }, - { - "songno": "1307", - "difficulty": "oni", - "note_count": 616, - "density_avg": 5.09201318555651, - "density_peak": 10, - "bpm_avg": 146.6896103896104, - "bpm_change": 12, - "scroll_change": 5, - "rhythm_complexity": 584, - "color_complexity": 0.0037493678072959163 - }, - { - "songno": "1313", - "difficulty": "oni", - "note_count": 528, - "density_avg": 6.195515695067265, - "density_peak": 11, - "bpm_avg": 178.7064393939394, - "bpm_change": 4, - "scroll_change": 0, - "rhythm_complexity": 478, - "color_complexity": 0.004343619469181911 - }, - { - "songno": "687", - "difficulty": "oni", - "note_count": 567, - "density_avg": 3.9722033898305087, - "density_peak": 9, - "bpm_avg": 124, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 423, - "color_complexity": 0.00212110526565366 - }, - { - "songno": "37", - "difficulty": "oni", - "note_count": 701, - "density_avg": 4.963402298850575, - "density_peak": 11, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 667, - "color_complexity": 0.004542184760286857 - }, - { - "songno": "877", - "difficulty": "oni", - "note_count": 399, - "density_avg": 2.915068493150685, - "density_peak": 6, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 372, - "color_complexity": 0.0006517097687074822 - }, - { - "songno": "1449", - "difficulty": "oni", - "note_count": 648, - "density_avg": 5.530859832068721, - "density_peak": 15, - "bpm_avg": 136.7059413580248, - "bpm_change": 16, - "scroll_change": 14, - "rhythm_complexity": 584, - "color_complexity": 0.005670735901267075 - }, - { - "songno": "724", - "difficulty": "oni", - "note_count": 777, - "density_avg": 6.593963254593176, - "density_peak": 13, - "bpm_avg": 193.7581241956242, - "bpm_change": 2, - "scroll_change": 0, - "rhythm_complexity": 716, - "color_complexity": 0.007963062210979383 - }, - { - "songno": "730", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.04524886877828, - "density_peak": 11, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 638, - "color_complexity": 0.0032692740965143156 - }, - { - "songno": "730", - "difficulty": "ura", - "note_count": 1037, - "density_avg": 7.681481481481482, - "density_peak": 14, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 1024, - "color_complexity": 0.011726198575945777 - }, - { - "songno": "1298", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.149059334298119, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.004107696043726675 - }, - { - "songno": "1273", - "difficulty": "oni", - "note_count": 559, - "density_avg": 4.3843137254901965, - "density_peak": 9, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 449, - "color_complexity": 0.00328769555464253 - }, - { - "songno": "1267", - "difficulty": "oni", - "note_count": 460, - "density_avg": 4.924574209245741, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0025164288827408967 - }, - { - "songno": "917", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.838535080038504, - "density_peak": 10, - "bpm_avg": 145.02262365591397, - "bpm_change": 6, - "scroll_change": 0, - "rhythm_complexity": 309, - "color_complexity": 0.0033781766485795534 - }, - { - "songno": "526", - "difficulty": "oni", - "note_count": 714, - "density_avg": 5.871710526315789, - "density_peak": 14, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.006141511181211432 - }, - { - "songno": "268", - "difficulty": "oni", - "note_count": 378, - "density_avg": 4.1902325581395345, - "density_peak": 9, - "bpm_avg": 143, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 340, - "color_complexity": 0.0021932849596014987 - }, - { - "songno": "1071", - "difficulty": "oni", - "note_count": 888, - "density_avg": 6.9375, - "density_peak": 15, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 702, - "color_complexity": 0.008914481841283513 - }, - { - "songno": "283", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.639147061016703, - "density_peak": 14, - "bpm_avg": 205.49019607843138, - "bpm_change": 4, - "scroll_change": 6, - "rhythm_complexity": 653, - "color_complexity": 0.007625387708608697 - }, - { - "songno": "283", - "difficulty": "ura", - "note_count": 999, - "density_avg": 8.669944985562987, - "density_peak": 18, - "bpm_avg": 205.3053053053053, - "bpm_change": 4, - "scroll_change": 13, - "rhythm_complexity": 872, - "color_complexity": 0.01671678965963029 - }, - { - "songno": "297", - "difficulty": "oni", - "note_count": 624, - "density_avg": 5.595547309833024, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 568, - "color_complexity": 0.003784621852709177 - }, - { - "songno": "1065", - "difficulty": "oni", - "note_count": 336, - "density_avg": 4.592, - "density_peak": 8, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 290, - "color_complexity": 0.0009060710100874766 - }, - { - "songno": "1059", - "difficulty": "oni", - "note_count": 439, - "density_avg": 4.345862335653519, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 378, - "color_complexity": 0.0019647515162428087 - }, - { - "songno": "1058", - "difficulty": "oni", - "note_count": 795, - "density_avg": 6.5645371577574965, - "density_peak": 11, - "bpm_avg": 189.76815094339622, - "bpm_change": 1, - "scroll_change": 0, - "rhythm_complexity": 783, - "color_complexity": 0.00496280243878555 - }, - { - "songno": "1058", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.233376792698826, - "density_peak": 13, - "bpm_avg": 189.7895890410959, - "bpm_change": 1, - "scroll_change": 7, - "rhythm_complexity": 820, - "color_complexity": 0.00983635725238653 - }, - { - "songno": "296", - "difficulty": "oni", - "note_count": 587, - "density_avg": 6.103056269637246, - "density_peak": 13, - "bpm_avg": 182, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 565, - "color_complexity": 0.003780445755006863 - }, - { - "songno": "1064", - "difficulty": "oni", - "note_count": 296, - "density_avg": 3.6298761904761907, - "density_peak": 9, - "bpm_avg": 164.81599999999935, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 267, - "color_complexity": 0.0009446727030675987 - }, - { - "songno": "1070", - "difficulty": "oni", - "note_count": 573, - "density_avg": 4.2308186195826645, - "density_peak": 8, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 513, - "color_complexity": 0.0023749551743585374 - }, - { - "songno": "269", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.350411700975081, - "density_peak": 16, - "bpm_avg": 153.24000000000194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 704, - "color_complexity": 0.00800766673684429 - }, - { - "songno": "255", - "difficulty": "oni", - "note_count": 535, - "density_avg": 4.924686192468619, - "density_peak": 8, - "bpm_avg": 132, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 434, - "color_complexity": 0.0028616076480792695 - }, - { - "songno": "527", - "difficulty": "oni", - "note_count": 619, - "density_avg": 6.581186071361302, - "density_peak": 11, - "bpm_avg": 131.27350565428105, - "bpm_change": 4, - "scroll_change": 4, - "rhythm_complexity": 591, - "color_complexity": 0.004720027816346509 - }, - { - "songno": "241", - "difficulty": "oni", - "note_count": 433, - "density_avg": 3.6587995337995336, - "density_peak": 10, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 368, - "color_complexity": 0.0012068473393913384 - }, - { - "songno": "1266", - "difficulty": "oni", - "note_count": 612, - "density_avg": 4.014311270125224, - "density_peak": 12, - "bpm_avg": 110, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 320, - "color_complexity": 0.0019405865570672634 - }, - { - "songno": "719", - "difficulty": "oni", - "note_count": 839, - "density_avg": 5.97153024911032, - "density_peak": 14, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 747, - "color_complexity": 0.006764592762703618 - }, - { - "songno": "725", - "difficulty": "oni", - "note_count": 498, - "density_avg": 4.2872689814712395, - "density_peak": 8, - "bpm_avg": 167.41385542168666, - "bpm_change": 15, - "scroll_change": 10, - "rhythm_complexity": 443, - "color_complexity": 0.0017903915766308703 - }, - { - "songno": "22", - "difficulty": "oni", - "note_count": 600, - "density_avg": 5.3395061728395055, - "density_peak": 10, - "bpm_avg": 173, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 544, - "color_complexity": 0.004619385588120113 - }, - { - "songno": "36", - "difficulty": "oni", - "note_count": 368, - "density_avg": 2.5309236947791165, - "density_peak": 8, - "bpm_avg": 137, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 308, - "color_complexity": 0.0006423521938571453 - }, - { - "songno": "686", - "difficulty": "oni", - "note_count": 925, - "density_avg": 7.2146962233169125, - "density_peak": 13, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 876, - "color_complexity": 0.011704902266348089 - }, - { - "songno": "1312", - "difficulty": "oni", - "note_count": 360, - "density_avg": 4.335078534031414, - "density_peak": 7, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 333, - "color_complexity": 0.0013944065741496629 - }, - { - "songno": "1312", - "difficulty": "ura", - "note_count": 526, - "density_avg": 6.056570713391739, - "density_peak": 12, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 495, - "color_complexity": 0.002340517933844544 - }, - { - "songno": "1306", - "difficulty": "oni", - "note_count": 493, - "density_avg": 4.591201027617212, - "density_peak": 9, - "bpm_avg": 145, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 475, - "color_complexity": 0.0030538636486317824 - }, - { - "songno": "645", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.683760683760684, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 738, - "color_complexity": 0.006414190609269058 - }, - { - "songno": "645", - "difficulty": "ura", - "note_count": 832, - "density_avg": 7.300333810205055, - "density_peak": 13, - "bpm_avg": 184, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 816, - "color_complexity": 0.009342611821617549 - }, - { - "songno": "123", - "difficulty": "oni", - "note_count": 528, - "density_avg": 5.995604395604396, - "density_peak": 11, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 518, - "color_complexity": 0.0045457546914036626 - }, - { - "songno": "137", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "651", - "difficulty": "oni", - "note_count": 673, - "density_avg": 5.9873396065012825, - "density_peak": 11, - "bpm_avg": 156, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 649, - "color_complexity": 0.00553034806308897 - }, - { - "songno": "889", - "difficulty": "oni", - "note_count": 593, - "density_avg": 5.066865375062096, - "density_peak": 12, - "bpm_avg": 172, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 558, - "color_complexity": 0.002981817735605234 - }, - { - "songno": "1138", - "difficulty": "oni", - "note_count": 448, - "density_avg": 5.3096296296296295, - "density_peak": 9, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 432, - "color_complexity": 0.003017227591582135 - }, - { - "songno": "1110", - "difficulty": "oni", - "note_count": 251, - "density_avg": 3.164316239316239, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 217, - "color_complexity": 0.0004965848950098353 - }, - { - "songno": "484", - "difficulty": "oni", - "note_count": 520, - "density_avg": 4.227642276422764, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 40, - "rhythm_complexity": 455, - "color_complexity": 0.0028291318569163963 - }, - { - "songno": "1104", - "difficulty": "oni", - "note_count": 839, - "density_avg": 7.403447789220843, - "density_peak": 16, - "bpm_avg": 193.87020262216922, - "bpm_change": 8, - "scroll_change": 6, - "rhythm_complexity": 780, - "color_complexity": 0.014285011267083994 - }, - { - "songno": "309", - "difficulty": "oni", - "note_count": 618, - "density_avg": 5.3794604812109235, - "density_peak": 11, - "bpm_avg": 154.40082524271844, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 519, - "color_complexity": 0.003937963855438437 - }, - { - "songno": "309", - "difficulty": "ura", - "note_count": 876, - "density_avg": 7.625254662687328, - "density_peak": 15, - "bpm_avg": 154.5685388127854, - "bpm_change": 4, - "scroll_change": 1, - "rhythm_complexity": 757, - "color_complexity": 0.01123083437064483 - }, - { - "songno": "321", - "difficulty": "oni", - "note_count": 639, - "density_avg": 5.020324508966695, - "density_peak": 10, - "bpm_avg": 138, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 557, - "color_complexity": 0.003100579766717255 - }, - { - "songno": "447", - "difficulty": "oni", - "note_count": 494, - "density_avg": 4.526693227091633, - "density_peak": 9, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 2, - "rhythm_complexity": 448, - "color_complexity": 0.0021139227356413745 - }, - { - "songno": "447", - "difficulty": "ura", - "note_count": 666, - "density_avg": 6.066534653465347, - "density_peak": 10, - "bpm_avg": 276, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 638, - "color_complexity": 0.004969979980555542 - }, - { - "songno": "453", - "difficulty": "oni", - "note_count": 999, - "density_avg": 6.92126329787234, - "density_peak": 11, - "bpm_avg": 156.29999999999987, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 968, - "color_complexity": 0.009461813131184854 - }, - { - "songno": "335", - "difficulty": "oni", - "note_count": 876, - "density_avg": 6.878111511478374, - "density_peak": 16, - "bpm_avg": 205.3310502283105, - "bpm_change": 1, - "scroll_change": 8, - "rhythm_complexity": 863, - "color_complexity": 0.011918825632733525 - }, - { - "songno": "445", - "difficulty": "oni", - "note_count": 663, - "density_avg": 5.738245614035087, - "density_peak": 11, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 592, - "color_complexity": 0.002741165773605207 - }, - { - "songno": "323", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.856249999999999, - "density_peak": 9, - "bpm_avg": 167.9966126126126, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 537, - "color_complexity": 0.0032963509026630007 - }, - { - "songno": "337", - "difficulty": "oni", - "note_count": 652, - "density_avg": 5.954337899543379, - "density_peak": 10, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 530, - "color_complexity": 0.00540433278911567 - }, - { - "songno": "451", - "difficulty": "oni", - "note_count": 675, - "density_avg": 6.030499075785582, - "density_peak": 12, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 636, - "color_complexity": 0.006355690813494686 - }, - { - "songno": "451", - "difficulty": "ura", - "note_count": 904, - "density_avg": 8.076401725200245, - "density_peak": 20, - "bpm_avg": 290, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 865, - "color_complexity": 0.016481866291770234 - }, - { - "songno": "479", - "difficulty": "oni", - "note_count": 500, - "density_avg": 4.143258426966293, - "density_peak": 10, - "bpm_avg": 177, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 452, - "color_complexity": 0.002890690486212669 - }, - { - "songno": "1112", - "difficulty": "oni", - "note_count": 297, - "density_avg": 3.234262948207171, - "density_peak": 7, - "bpm_avg": 82, - "bpm_change": 0, - "scroll_change": 4, - "rhythm_complexity": 180, - "color_complexity": 0.0006824491879567726 - }, - { - "songno": "1106", - "difficulty": "oni", - "note_count": 860, - "density_avg": 6.653993663498415, - "density_peak": 16, - "bpm_avg": 229.84186046511627, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 775, - "color_complexity": 0.01017047065329758 - }, - { - "songno": "492", - "difficulty": "oni", - "note_count": 145, - "density_avg": 2.1286701208981, - "density_peak": 5, - "bpm_avg": 85, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 85, - "color_complexity": 0.0001495424017940449 - }, - { - "songno": "121", - "difficulty": "oni", - "note_count": 961, - "density_avg": 6.779719459795932, - "density_peak": 12, - "bpm_avg": 160.00915712799167, - "bpm_change": 0, - "scroll_change": 9, - "rhythm_complexity": 892, - "color_complexity": 0.009872271932460493 - }, - { - "songno": "647", - "difficulty": "oni", - "note_count": 687, - "density_avg": 6.119283746556475, - "density_peak": 11, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 607, - "color_complexity": 0.0075567133961082205 - }, - { - "songno": "653", - "difficulty": "oni", - "note_count": 678, - "density_avg": 5.74982332155477, - "density_peak": 10, - "bpm_avg": 144, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 641, - "color_complexity": 0.006002838991383211 - }, - { - "songno": "135", - "difficulty": "oni", - "note_count": 345, - "density_avg": 4.124043176566487, - "density_peak": 7, - "bpm_avg": 127.82057971014493, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 307, - "color_complexity": 0.0014613397656190884 - }, - { - "songno": "135", - "difficulty": "ura", - "note_count": 423, - "density_avg": 5.056435546920649, - "density_peak": 9, - "bpm_avg": 128.03806146572103, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 405, - "color_complexity": 0.002892080706412024 - }, - { - "songno": "109", - "difficulty": "oni", - "note_count": 478, - "density_avg": 4.8141300263059, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 403, - "color_complexity": 0.002880150077937775 - }, - { - "songno": "109", - "difficulty": "ura", - "note_count": 497, - "density_avg": 5.192826510721248, - "density_peak": 9, - "bpm_avg": 134, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 430, - "color_complexity": 0.0032293518594411477 - }, - { - "songno": "1310", - "difficulty": "oni", - "note_count": 598, - "density_avg": 5.3257986064533664, - "density_peak": 9, - "bpm_avg": 261.52732441471574, - "bpm_change": 8, - "scroll_change": 3, - "rhythm_complexity": 575, - "color_complexity": 0.004213323953528848 - }, - { - "songno": "1310", - "difficulty": "ura", - "note_count": 985, - "density_avg": 7.9181984335657365, - "density_peak": 19, - "bpm_avg": 254.14044670050765, - "bpm_change": 9, - "scroll_change": 5, - "rhythm_complexity": 956, - "color_complexity": 0.019816319412825162 - }, - { - "songno": "684", - "difficulty": "oni", - "note_count": 810, - "density_avg": 6.283624493743577, - "density_peak": 11, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 720, - "color_complexity": 0.008447770747929774 - }, - { - "songno": "1304", - "difficulty": "oni", - "note_count": 575, - "density_avg": 4.523519870235199, - "density_peak": 9, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 538, - "color_complexity": 0.0023624683895295574 - }, - { - "songno": "1304", - "difficulty": "ura", - "note_count": 949, - "density_avg": 7.38047704950892, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 818, - "color_complexity": 0.009710451252269789 - }, - { - "songno": "848", - "difficulty": "oni", - "note_count": 348, - "density_avg": 3.65424076832215, - "density_peak": 7, - "bpm_avg": 180.95689655172413, - "bpm_change": 7, - "scroll_change": 0, - "rhythm_complexity": 331, - "color_complexity": 0.001347099303615295 - }, - { - "songno": "20", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.491734221728307, - "density_peak": 15, - "bpm_avg": 172.07752941176471, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 699, - "color_complexity": 0.007847222396499294 - }, - { - "songno": "860", - "difficulty": "oni", - "note_count": 859, - "density_avg": 7.362857142857142, - "density_peak": 19, - "bpm_avg": 222, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 736, - "color_complexity": 0.011084398681655753 - }, - { - "songno": "1338", - "difficulty": "oni", - "note_count": 944, - "density_avg": 6.865454545454545, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 902, - "color_complexity": 0.010048223995663687 - }, - { - "songno": "34", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.754545454545455, - "density_peak": 11, - "bpm_avg": 123, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 422, - "color_complexity": 0.0020538075597567305 - }, - { - "songno": "874", - "difficulty": "oni", - "note_count": 647, - "density_avg": 4.785740160601408, - "density_peak": 11, - "bpm_avg": 133.0293663060278, - "bpm_change": 8, - "scroll_change": 8, - "rhythm_complexity": 560, - "color_complexity": 0.003804069931307931 - }, - { - "songno": "733", - "difficulty": "oni", - "note_count": 420, - "density_avg": 3.9326823271883042, - "density_peak": 9, - "bpm_avg": 132.03435714285703, - "bpm_change": 9, - "scroll_change": 0, - "rhythm_complexity": 344, - "color_complexity": 0.0014474566408557068 - }, - { - "songno": "727", - "difficulty": "oni", - "note_count": 719, - "density_avg": 6.166666666666667, - "density_peak": 11, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 711, - "color_complexity": 0.007623319369613549 - }, - { - "songno": "928", - "difficulty": "oni", - "note_count": 787, - "density_avg": 6.369061652818427, - "density_peak": 16, - "bpm_avg": 156.3456162642948, - "bpm_change": 7, - "scroll_change": 9, - "rhythm_complexity": 670, - "color_complexity": 0.008903162415004665 - }, - { - "songno": "1264", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.534904805077063, - "density_peak": 12, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 508, - "color_complexity": 0.0030552760269266415 - }, - { - "songno": "1264", - "difficulty": "ura", - "note_count": 819, - "density_avg": 8.167724388032639, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 755, - "color_complexity": 0.011635779725665298 - }, - { - "songno": "914", - "difficulty": "oni", - "note_count": 759, - "density_avg": 5.440860215053763, - "density_peak": 15, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 6, - "rhythm_complexity": 629, - "color_complexity": 0.00678543800602485 - }, - { - "songno": "1258", - "difficulty": "oni", - "note_count": 579, - "density_avg": 5.174262734584451, - "density_peak": 10, - "bpm_avg": 200, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 560, - "color_complexity": 0.0031254182226303434 - }, - { - "songno": "257", - "difficulty": "oni", - "note_count": 574, - "density_avg": 5.18734793187348, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 480, - "color_complexity": 0.003024306608009598 - }, - { - "songno": "243", - "difficulty": "oni", - "note_count": 999, - "density_avg": 7.826923076923077, - "density_peak": 17, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 920, - "color_complexity": 0.0158010503577592 - }, - { - "songno": "525", - "difficulty": "oni", - "note_count": 669, - "density_avg": 5.87701317715959, - "density_peak": 13, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 594, - "color_complexity": 0.005645533537414956 - }, - { - "songno": "1099", - "difficulty": "oni", - "note_count": 753, - "density_avg": 6.486905582356996, - "density_peak": 17, - "bpm_avg": 245.84993359893758, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 610, - "color_complexity": 0.011756473364341697 - }, - { - "songno": "519", - "difficulty": "oni", - "note_count": 750, - "density_avg": 5.8282548229615285, - "density_peak": 13, - "bpm_avg": 193.53182666666666, - "bpm_change": 8, - "scroll_change": 4, - "rhythm_complexity": 695, - "color_complexity": 0.007047309575744179 - }, - { - "songno": "519", - "difficulty": "ura", - "note_count": 1045, - "density_avg": 8.120701719993063, - "density_peak": 16, - "bpm_avg": 193.6839043062201, - "bpm_change": 8, - "scroll_change": 0, - "rhythm_complexity": 957, - "color_complexity": 0.014275378863811972 - }, - { - "songno": "1066", - "difficulty": "oni", - "note_count": 1008, - "density_avg": 8.023880597014927, - "density_peak": 17, - "bpm_avg": 223.83333333333334, - "bpm_change": 2, - "scroll_change": 60, - "rhythm_complexity": 921, - "color_complexity": 0.013031484161489732 - }, - { - "songno": "294", - "difficulty": "oni", - "note_count": 456, - "density_avg": 5.076683607331519, - "density_peak": 10, - "bpm_avg": 169.01565789473682, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 448, - "color_complexity": 0.0034697152173827597 - }, - { - "songno": "280", - "difficulty": "oni", - "note_count": 487, - "density_avg": 4.439428885227897, - "density_peak": 9, - "bpm_avg": 166, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 467, - "color_complexity": 0.002407244655127435 - }, - { - "songno": "1072", - "difficulty": "oni", - "note_count": 974, - "density_avg": 6.608182247274705, - "density_peak": 12, - "bpm_avg": 265.2977412731006, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 884, - "color_complexity": 0.0070010094576651374 - }, - { - "songno": "1072", - "difficulty": "ura", - "note_count": 1400, - "density_avg": 9.495571695489103, - "density_peak": 23, - "bpm_avg": 269.7139285714286, - "bpm_change": 18, - "scroll_change": 32, - "rhythm_complexity": 1277, - "color_complexity": 0.0335805889531643 - }, - { - "songno": "281", - "difficulty": "oni", - "note_count": 555, - "density_avg": 4.730113636363637, - "density_peak": 11, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 511, - "color_complexity": 0.0042082094969739334 - }, - { - "songno": "281", - "difficulty": "ura", - "note_count": 568, - "density_avg": 4.8, - "density_peak": 10, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 533, - "color_complexity": 0.004120663794395485 - }, - { - "songno": "1073", - "difficulty": "oni", - "note_count": 398, - "density_avg": 3.7932121829710144, - "density_peak": 9, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 361, - "color_complexity": 0.0012424587810011976 - }, - { - "songno": "1067", - "difficulty": "oni", - "note_count": 693, - "density_avg": 5.974137931034483, - "density_peak": 17, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 598, - "color_complexity": 0.006562313074548445 - }, - { - "songno": "1067", - "difficulty": "ura", - "note_count": 518, - "density_avg": 4.441586280814576, - "density_peak": 12, - "bpm_avg": 240, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 359, - "color_complexity": 0.00247671069063878 - }, - { - "songno": "518", - "difficulty": "oni", - "note_count": 987, - "density_avg": 8.803048502151556, - "density_peak": 20, - "bpm_avg": 242.59473150962512, - "bpm_change": 23, - "scroll_change": 201, - "rhythm_complexity": 899, - "color_complexity": 0.018626343258294577 - }, - { - "songno": "1098", - "difficulty": "oni", - "note_count": 354, - "density_avg": 3.4555314533622563, - "density_peak": 10, - "bpm_avg": 135, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 117, - "color_complexity": 0.0015401502067561236 - }, - { - "songno": "242", - "difficulty": "oni", - "note_count": 377, - "density_avg": 3.3248131539611356, - "density_peak": 6, - "bpm_avg": 118, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 364, - "color_complexity": 0.0009504215126543182 - }, - { - "songno": "524", - "difficulty": "oni", - "note_count": 725, - "density_avg": 6.220714018022406, - "density_peak": 13, - "bpm_avg": 177.29444137930983, - "bpm_change": 66, - "scroll_change": 0, - "rhythm_complexity": 584, - "color_complexity": 0.00586770711563485 - }, - { - "songno": "530", - "difficulty": "oni", - "note_count": 465, - "density_avg": 4.465020576131686, - "density_peak": 10, - "bpm_avg": 140, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 440, - "color_complexity": 0.0020684337247432526 - }, - { - "songno": "256", - "difficulty": "oni", - "note_count": 302, - "density_avg": 3.751552795031056, - "density_peak": 9, - "bpm_avg": 147.41721854304635, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 262, - "color_complexity": 0.0016181926166362723 - }, - { - "songno": "256", - "difficulty": "ura", - "note_count": 416, - "density_avg": 5.143740340030912, - "density_peak": 10, - "bpm_avg": 150.8653846153846, - "bpm_change": 2, - "scroll_change": 2, - "rhythm_complexity": 354, - "color_complexity": 0.0024673533825034562 - }, - { - "songno": "1259", - "difficulty": "oni", - "note_count": 723, - "density_avg": 5.503605769230769, - "density_peak": 10, - "bpm_avg": 190, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 617, - "color_complexity": 0.00663277520754722 - }, - { - "songno": "915", - "difficulty": "oni", - "note_count": 319, - "density_avg": 3.3522033898305086, - "density_peak": 7, - "bpm_avg": 93, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 185, - "color_complexity": 0.0008326252898563732 - }, - { - "songno": "1271", - "difficulty": "oni", - "note_count": 395, - "density_avg": 3.6056453883996116, - "density_peak": 7, - "bpm_avg": 104.6088101265824, - "bpm_change": 19, - "scroll_change": 2, - "rhythm_complexity": 342, - "color_complexity": 0.0016478852131883524 - }, - { - "songno": "1271", - "difficulty": "ura", - "note_count": 705, - "density_avg": 6.42036702121103, - "density_peak": 12, - "bpm_avg": 103.91668085106386, - "bpm_change": 25, - "scroll_change": 2, - "rhythm_complexity": 621, - "color_complexity": 0.003912253740360649 - }, - { - "songno": "929", - "difficulty": "oni", - "note_count": 762, - "density_avg": 6.489709013484741, - "density_peak": 15, - "bpm_avg": 180, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 717, - "color_complexity": 0.008077239489795926 - }, - { - "songno": "726", - "difficulty": "oni", - "note_count": 496, - "density_avg": 4.781094527363184, - "density_peak": 10, - "bpm_avg": 155, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 454, - "color_complexity": 0.0026125022149435817 - }, - { - "songno": "732", - "difficulty": "oni", - "note_count": 327, - "density_avg": 3.4112489803198, - "density_peak": 6, - "bpm_avg": 128.002874617737, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 312, - "color_complexity": 0.0008848248717018 - }, - { - "songno": "875", - "difficulty": "oni", - "note_count": 650, - "density_avg": 5.645539906103287, - "density_peak": 13, - "bpm_avg": 185, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 634, - "color_complexity": 0.004144921585630589 - }, - { - "songno": "35", - "difficulty": "oni", - "note_count": 315, - "density_avg": 3.23855421686747, - "density_peak": 7, - "bpm_avg": 128, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 240, - "color_complexity": 0.0006133637138780425 - }, - { - "songno": "1339", - "difficulty": "oni", - "note_count": 433, - "density_avg": 4.926052332195677, - "density_peak": 10, - "bpm_avg": 150, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 375, - "color_complexity": 0.002240042845895285 - }, - { - "songno": "861", - "difficulty": "oni", - "note_count": 416, - "density_avg": 5.10063694267516, - "density_peak": 9, - "bpm_avg": 154, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 352, - "color_complexity": 0.001895326770581583 - }, - { - "songno": "21", - "difficulty": "oni", - "note_count": 835, - "density_avg": 7.665267282395746, - "density_peak": 12, - "bpm_avg": 164, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 791, - "color_complexity": 0.010350692863008938 - }, - { - "songno": "849", - "difficulty": "oni", - "note_count": 1210, - "density_avg": 8.016327577363652, - "density_peak": 21, - "bpm_avg": 293.9834710743802, - "bpm_change": 9, - "scroll_change": 15, - "rhythm_complexity": 1082, - "color_complexity": 0.032368213694464 - }, - { - "songno": "1305", - "difficulty": "oni", - "note_count": 643, - "density_avg": 4.909838472834068, - "density_peak": 11, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 530, - "color_complexity": 0.003986833247174614 - }, - { - "songno": "685", - "difficulty": "oni", - "note_count": 885, - "density_avg": 7.6991813655950425, - "density_peak": 19, - "bpm_avg": 217.13902372881356, - "bpm_change": 18, - "scroll_change": 2, - "rhythm_complexity": 821, - "color_complexity": 0.011592309992935527 - }, - { - "songno": "1311", - "difficulty": "oni", - "note_count": 523, - "density_avg": 4.347980997624703, - "density_peak": 15, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 7, - "rhythm_complexity": 380, - "color_complexity": 0.0023727944962687662 - }, - { - "songno": "1311", - "difficulty": "ura", - "note_count": 897, - "density_avg": 7.463153724247228, - "density_peak": 27, - "bpm_avg": 210, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 763, - "color_complexity": 0.0067704685133135835 - }, - { - "songno": "108", - "difficulty": "oni", - "note_count": 882, - "density_avg": 6.468000000000001, - "density_peak": 12, - "bpm_avg": 176, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 838, - "color_complexity": 0.009115015090832046 - }, - { - "songno": "652", - "difficulty": "oni", - "note_count": 527, - "density_avg": 4.469015003261578, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 515, - "color_complexity": 0.002473152164784899 - }, - { - "songno": "652", - "difficulty": "ura", - "note_count": 614, - "density_avg": 5.206784083496412, - "density_peak": 9, - "bpm_avg": 130, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 531, - "color_complexity": 0.002866896583522302 - }, - { - "songno": "134", - "difficulty": "oni", - "note_count": 635, - "density_avg": 6.1092246745897, - "density_peak": 12, - "bpm_avg": 170, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 577, - "color_complexity": 0.005163154842975053 - }, - { - "songno": "120", - "difficulty": "oni", - "note_count": 765, - "density_avg": 6.216357950447204, - "density_peak": 20, - "bpm_avg": 206.61401307189553, - "bpm_change": 15, - "scroll_change": 224, - "rhythm_complexity": 543, - "color_complexity": 0.004980770586693651 - }, - { - "songno": "646", - "difficulty": "oni", - "note_count": 456, - "density_avg": 3.5800807537012114, - "density_peak": 8, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 408, - "color_complexity": 0.0015286650613049817 - }, - { - "songno": "646", - "difficulty": "ura", - "note_count": 756, - "density_avg": 5.935397039030955, - "density_peak": 12, - "bpm_avg": 175, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 717, - "color_complexity": 0.008138518238598654 - }, - { - "songno": "493", - "difficulty": "oni", - "note_count": 552, - "density_avg": 3.9239193083573487, - "density_peak": 10, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 1, - "rhythm_complexity": 450, - "color_complexity": 0.0017604967403042494 - }, - { - "songno": "493", - "difficulty": "ura", - "note_count": 1035, - "density_avg": 7.357348703170029, - "density_peak": 15, - "bpm_avg": 148, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 953, - "color_complexity": 0.012013295995585432 - }, - { - "songno": "1107", - "difficulty": "oni", - "note_count": 850, - "density_avg": 6.535869996036465, - "density_peak": 13, - "bpm_avg": 194, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 814, - "color_complexity": 0.007554047567047632 - }, - { - "songno": "1113", - "difficulty": "oni", - "note_count": 561, - "density_avg": 4.46087786259542, - "density_peak": 9, - "bpm_avg": 125, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 553, - "color_complexity": 0.0028368573020750966 - }, - { - "songno": "487", - "difficulty": "oni", - "note_count": 556, - "density_avg": 4.5315763787213275, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 522, - "color_complexity": 0.0027883777378602532 - }, - { - "songno": "487", - "difficulty": "ura", - "note_count": 806, - "density_avg": 6.569155685700342, - "density_peak": 12, - "bpm_avg": 167, - "bpm_change": 0, - "scroll_change": 12, - "rhythm_complexity": 784, - "color_complexity": 0.007836578406899344 - }, - { - "songno": "478", - "difficulty": "oni", - "note_count": 555, - "density_avg": 5.020559210526316, - "density_peak": 12, - "bpm_avg": 165, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 532, - "color_complexity": 0.0026770483889597546 - }, - { - "songno": "336", - "difficulty": "oni", - "note_count": 1304, - "density_avg": 11.808920081503283, - "density_peak": 21, - "bpm_avg": 291.5184049079755, - "bpm_change": 1, - "scroll_change": 1, - "rhythm_complexity": 1255, - "color_complexity": 0.03172641728093539 - }, - { - "songno": "450", - "difficulty": "oni", - "note_count": 950, - "density_avg": 6.918238993710691, - "density_peak": 15, - "bpm_avg": 220, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 910, - "color_complexity": 0.01523599996929097 - }, - { - "songno": "322", - "difficulty": "oni", - "note_count": 607, - "density_avg": 4.979395030714651, - "density_peak": 13, - "bpm_avg": 149.54920922570017, - "bpm_change": 15, - "scroll_change": 15, - "rhythm_complexity": 560, - "color_complexity": 0.005248271768336951 - } -] \ No newline at end of file diff --git a/output/xgboost_copy/features.json b/output/xgboost_copy/features.json deleted file mode 100644 index 81cbf0f..0000000 --- a/output/xgboost_copy/features.json +++ /dev/null @@ -1,74 +0,0 @@ -[ - { - "songno": "XODUS", - "difficulty": "oni", - "note_count": 1007, - "density_avg": 8.14959935897436, - "density_peak": 17, - "bpm_avg": 202, - "bpm_change": 0, - "scroll_change": 14, - "rhythm_complexity": 868, - "color_complexity": 0.012565274045963932 - }, - { - "songno": "Destructive Little Sister", - "difficulty": "oni", - "note_count": 1119, - "density_avg": 7.917452830188679, - "density_peak": 21, - "bpm_avg": 247.5, - "bpm_change": 0, - "scroll_change": 17, - "rhythm_complexity": 1079, - "color_complexity": 0.016291673920775917 - }, - { - "songno": "7 Wonders", - "difficulty": "oni", - "note_count": 794, - "density_avg": 5.571929824561403, - "density_peak": 12, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 726, - "color_complexity": 0.006656416024691356 - }, - { - "songno": "7 Wonders", - "difficulty": "ura", - "note_count": 1207, - "density_avg": 8.47017543859649, - "density_peak": 15, - "bpm_avg": 168, - "bpm_change": 0, - "scroll_change": 0, - "rhythm_complexity": 965, - "color_complexity": 0.01463965596985236 - }, - { - "songno": "Destruction 3 2 1", - "difficulty": "oni", - "note_count": 1160, - "density_avg": 7.46659375, - "density_peak": 15, - "bpm_avg": 321.3209999999973, - "bpm_change": 0, - "scroll_change": 5, - "rhythm_complexity": 1101, - "color_complexity": 0.012682773678672012 - }, - { - "songno": "Destruction 3 2 1", - "difficulty": "ura", - "note_count": 1491, - "density_avg": 9.59714765625, - "density_peak": 20, - "bpm_avg": 321.32099999999707, - "bpm_change": 0, - "scroll_change": 8, - "rhythm_complexity": 1417, - "color_complexity": 0.028926671611070473 - } -] \ No newline at end of file diff --git a/script/train.ts b/script/train_feature.ts similarity index 94% rename from script/train.ts rename to script/train_feature.ts index 9d01125..2e9ed8d 100644 --- a/script/train.ts +++ b/script/train_feature.ts @@ -15,7 +15,7 @@ const { values } = parseArgs({ dataDir: { type: "string" }, - trainScript: { + script: { type: "string" }, trainSize: { @@ -28,13 +28,13 @@ const { values } = parseArgs({ allowPositionals: true, }); -if (!values.dataDir || !values.workingDir || !values.trainScript) { +if (!values.dataDir || !values.workingDir || !values.script) { console.error("--workingDir --dataDir --trainDir"); process.exit(1); } generateFeatures(); -const child = spawn("python3", [values.trainScript, +const child = spawn("python3", [values.script, "--workingDir", values.workingDir, "--dataDir", values.dataDir, "--trainSize", (Number(values.trainSize) || 500).toString(), diff --git a/script/visualize_abs_errors.py b/script/visualize_abs_errors.py new file mode 100644 index 0000000..abea4d3 --- /dev/null +++ b/script/visualize_abs_errors.py @@ -0,0 +1,50 @@ +import os +import json +import matplotlib.pyplot as plt +import pandas as pd +import seaborn as sns + +output_dir = 'output' +model_dirs = [d for d in os.listdir(output_dir) if os.path.isdir(os.path.join(output_dir, d)) and os.path.exists(os.path.join(output_dir, d, 'compare.json'))] +model_dirs.sort() + +if not model_dirs: + print("데이터를 찾을 수 없습니다.") + exit() + +fig, axes = plt.subplots(len(model_dirs), 1, figsize=(15, 6 * len(model_dirs)), sharex=False) +if len(model_dirs) == 1: + axes = [axes] + +for i, model in enumerate(model_dirs): + json_path = os.path.join(output_dir, model, 'compare.json') + with open(json_path, 'r', encoding='utf-8') as f: + data = json.load(f) + df = pd.DataFrame(data.get('details', [])) + + # 에러 절댓값 계산 및 내림차순 정렬 + df['abs_error'] = df['error'].abs() + df = df.sort_values('abs_error', ascending=False).reset_index(drop=True) + + ax = axes[i] + # y축에 abs_error를 사용하여 양수 영역만 표시 + sns.scatterplot(data=df, x=df.index, y='abs_error', ax=ax, alpha=0.6, s=20, color='darkorange') + + ax.set_title(f'Model: {model} (Sorted by Absolute Error)', fontsize=15, fontweight='bold') + ax.set_ylabel('Absolute Error (|Actual - Predicted|)', fontsize=12) + ax.set_xlabel(f'Songs (Ordered by Error Magnitude)', fontsize=12) + + # 가이드 라인 (오차 0.2, 0.5, 1.0 단위) + ax.axhline(0.2, color='green', linestyle='--', linewidth=0.8, alpha=0.5, label='Target (0.2)') + ax.axhline(0.5, color='blue', linestyle='--', linewidth=0.8, alpha=0.5) + ax.axhline(1.0, color='red', linestyle='--', linewidth=0.8, alpha=0.5) + + # y축을 0부터 시작하도록 설정 + ax.set_ylim(0, 3.5) + ax.set_xticks([]) # x축 라벨 제거 + ax.grid(True, axis='y', alpha=0.3) + +plt.tight_layout() +output_image = 'abs_error_analysis.png' +plt.savefig(output_image) +print(f"절댓값 에러 정렬 그래프가 {output_image}에 저장되었습니다.") diff --git a/train/train_lightgbm.py b/train/train_lightgbm.py index c96675b..f708da9 100644 --- a/train/train_lightgbm.py +++ b/train/train_lightgbm.py @@ -7,6 +7,9 @@ import random import joblib import numpy as np import lightgbm as lgb +import pandas as pd +import matplotlib.pyplot as plt +import seaborn as sns from sklearn.preprocessing import StandardScaler from sklearn.metrics import mean_absolute_error @@ -82,7 +85,7 @@ def train_model(working_dir: str, data_dir: str): key = (songno, diff) if key in feature_map: features = [safe_float(feature_map[key].get(k, 0)) for k in feature_names] - dataset.append((features, measure)) + dataset.append((features, measure, songno, diff)) random.shuffle(dataset) if len(dataset) < (TRAIN_SIZE + VALID_SIZE): @@ -91,10 +94,11 @@ def train_model(working_dir: str, data_dir: str): train_dataset = dataset[:TRAIN_SIZE] valid_dataset = dataset[TRAIN_SIZE:TRAIN_SIZE + VALID_SIZE] - X_train = np.array([x for x, _ in train_dataset], dtype=np.float32) - y_train = np.array([y for _, y in train_dataset], dtype=np.float32) - X_valid = np.array([x for x, _ in valid_dataset], dtype=np.float32) - y_valid = np.array([y for _, y in valid_dataset], dtype=np.float32) + X_train = np.array([x for x, _, _, _ in train_dataset], dtype=np.float32) + y_train = np.array([y for _, y, _, _ in train_dataset], dtype=np.float32) + X_valid = np.array([x for x, _, _, _ in valid_dataset], dtype=np.float32) + y_valid = np.array([y for _, y, _, _ in valid_dataset], dtype=np.float32) + valid_info = [(s, d) for _, _, s, d in valid_dataset] print(f"Train Size: {len(X_train)} | Valid Size: {len(X_valid)} | Features: {len(feature_names)}") @@ -133,6 +137,66 @@ def train_model(working_dir: str, data_dir: str): print(f"\nMAE: {mae:.4f} | Accuracy (±{ERROR_TOLERANCE}): {accuracy:.4f}") + # ===================================================== + # save validate.json + # ===================================================== + validate_details = [] + for i in range(len(y_valid)): + actual = float(y_valid[i]) + predicted = float(pred[i]) + songno, diff = valid_info[i] + validate_details.append({ + "songno": songno, + "diff": diff, + "actual": actual, + "predicted": predicted, + "error": actual - predicted + }) + + validate_details.sort(key=lambda x: abs(x["error"]), reverse=True) + validate_result = { + "summary": { + "total_compared": len(y_valid), + "average_absolute_error": float(mae), + "accuracy": float(accuracy), + "timestamp": "now", + "script_used": "train/train_lightgbm.py" + }, + "details": validate_details + } + + validate_path = os.path.join(working_dir, "validate.json") + with open(validate_path, "w", encoding="utf-8") as f: + json.dump(validate_result, f, indent=2, ensure_ascii=False) + print(f"Validation result saved: {validate_path}") + + # ===================================================== + # save validate.png + # ===================================================== + try: + plt.switch_backend('Agg') + df_plot = pd.DataFrame(validate_details) + df_plot['abs_error'] = df_plot['error'].abs() + df_plot = df_plot.sort_values('abs_error', ascending=False).reset_index(drop=True) + + plt.figure(figsize=(12, 6)) + sns.scatterplot(data=df_plot, x=df_plot.index, y='abs_error', alpha=0.6, s=20, color='darkorange') + plt.axhline(0.2, color='green', linestyle='--', linewidth=0.8, alpha=0.5, label='Target (0.2)') + plt.axhline(0.5, color='blue', linestyle='--', linewidth=0.8, alpha=0.5) + plt.axhline(1.0, color='red', linestyle='--', linewidth=0.8, alpha=0.5) + plt.ylim(0, max(3.5, df_plot['abs_error'].max() + 0.5)) + plt.title(f'Validation Absolute Error - {os.path.basename(working_dir)}', fontsize=14) + plt.xlabel('Samples (Sorted by Error Magnitude)', fontsize=12) + plt.ylabel('Absolute Error', fontsize=12) + plt.grid(True, axis='y', alpha=0.3) + + plot_path = os.path.join(working_dir, "validate.png") + plt.savefig(plot_path) + plt.close() + print(f"Validation plot saved: {plot_path}") + except Exception as e: + print(f"[WARN] Failed to create validation plot: {e}") + joblib.dump(model, model_path) joblib.dump(scaler, scaler_path) with open(feature_names_path, "w", encoding="utf-8") as f: diff --git a/train/train_xgboost.py b/train/train_xgboost.py index 66d0e8f..66af746 100644 --- a/train/train_xgboost.py +++ b/train/train_xgboost.py @@ -6,6 +6,9 @@ import os import random import joblib import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +import seaborn as sns from xgboost import XGBRegressor from sklearn.preprocessing import StandardScaler @@ -177,7 +180,9 @@ def train_model( dataset.append(( features, - measure + measure, + songno, + diff )) # ===================================================== @@ -205,25 +210,29 @@ def train_model( ] X_train = np.array( - [x for x, _ in train_dataset], + [x for x, _, _, _ in train_dataset], dtype=np.float32 ) y_train = np.array( - [y for _, y in train_dataset], + [y for _, y, _, _ in train_dataset], dtype=np.float32 ) X_valid = np.array( - [x for x, _ in valid_dataset], + [x for x, _, _, _ in valid_dataset], dtype=np.float32 ) y_valid = np.array( - [y for _, y in valid_dataset], + [y for _, y, _, _ in valid_dataset], dtype=np.float32 ) + valid_info = [ + (s, d) for _, _, s, d in valid_dataset + ] + print(f"Train Size: {len(X_train)}") print(f"Valid Size: {len(X_valid)}") print(f"Feature Count: {len(feature_names)}") @@ -314,6 +323,73 @@ def train_model( for name, score in pairs: print(f"{name:25} {score:.6f}") + # ===================================================== + # save validate.json + # ===================================================== + + validate_details = [] + for i in range(len(y_valid)): + actual = float(y_valid[i]) + predicted = float(pred[i]) + songno, diff = valid_info[i] + + validate_details.append({ + "songno": songno, + "diff": diff, + "actual": actual, + "predicted": predicted, + "error": actual - predicted + }) + + # 에러 절댓값 기준 정렬 + validate_details.sort(key=lambda x: abs(x["error"]), reverse=True) + + validate_result = { + "summary": { + "total_compared": len(y_valid), + "average_absolute_error": float(mae), + "accuracy": float(accuracy), + "timestamp": "now", + "script_used": "train/train_xgboost.py" + }, + "details": validate_details + } + + validate_path = os.path.join(working_dir, "validate.json") + with open(validate_path, "w", encoding="utf-8") as f: + json.dump(validate_result, f, indent=2, ensure_ascii=False) + + print(f"Validation result saved: {validate_path}") + + # ===================================================== + # save validate.png + # ===================================================== + try: + plt.switch_backend('Agg') # GUI 없는 환경 대응 + df_plot = pd.DataFrame(validate_details) + df_plot['abs_error'] = df_plot['error'].abs() + df_plot = df_plot.sort_values('abs_error', ascending=False).reset_index(drop=True) + + plt.figure(figsize=(12, 6)) + sns.scatterplot(data=df_plot, x=df_plot.index, y='abs_error', alpha=0.6, s=20, color='darkorange') + + plt.axhline(0.2, color='green', linestyle='--', linewidth=0.8, alpha=0.5, label='Target (0.2)') + plt.axhline(0.5, color='blue', linestyle='--', linewidth=0.8, alpha=0.5) + plt.axhline(1.0, color='red', linestyle='--', linewidth=0.8, alpha=0.5) + + plt.ylim(0, max(3.5, df_plot['abs_error'].max() + 0.5)) + plt.title(f'Validation Absolute Error - {os.path.basename(working_dir)}', fontsize=14) + plt.xlabel('Samples (Sorted by Error Magnitude)', fontsize=12) + plt.ylabel('Absolute Error', fontsize=12) + plt.grid(True, axis='y', alpha=0.3) + + plot_path = os.path.join(working_dir, "validate.png") + plt.savefig(plot_path) + plt.close() + print(f"Validation plot saved: {plot_path}") + except Exception as e: + print(f"[WARN] Failed to create validation plot: {e}") + # ===================================================== # save # ===================================================== @@ -366,4 +442,4 @@ if __name__ == "__main__": train_model( args.workingDir, args.dataDir - ) \ No newline at end of file + )