EncodingSimpleCase
constructor(mapOfStringToInt: Map<String, Int> = mapOf("one" to 1, "two" to 2, "three" to 3), arrayOfInt: ArrayList<Int> = arrayListOf(1, 2, 3, 4, 5), mutableMapOfStringToList: MutableMap<String, List<Double>> = mutableMapOf(
"key1" to listOf(1.0, 2.0),
"key2" to listOf(3.0, 4.0),
"key3" to listOf(5.0, 6.0),
"key4" to listOf(7.0, 8.0),
))